/** Shopify CDN: Minification failed

Line 360:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:circular-collections (INDEX:8) */
.circular-collections__heading {
    text-align: center;
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0 0 28px;
    color: rgb(var(--color-foreground));
  }

  /* Full-width mode: pad heading so it doesn't bleed to screen edges */
  .circular-collections--full-width .circular-collections__heading {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* ── Track ── */
  .circular-collections__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px; /* breathing room below label text */
  }

  .circular-collections__track::-webkit-scrollbar {
    display: none;
  }

  /* Full-width track: align with page margins on mobile, scroll to screen edges */
  .circular-collections--full-width .circular-collections__track {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* Desktop grid: let items wrap instead of scrolling */
  @media screen and (min-width: 750px) {
    .circular-collections__track--grid {
      flex-wrap: wrap;
      overflow-x: visible;
      justify-content: center;
    }

    /* Full-width heading uses wider page margins on desktop */
    .circular-collections--full-width .circular-collections__heading {
      padding-left: 5rem;
      padding-right: 5rem;
    }

    /* Full-width track: wider margins on desktop */
    .circular-collections--full-width .circular-collections__track {
      padding-left: 5rem;
      padding-right: 5rem;
    }

    /*
      Center items when they fit within the viewport on desktop.
      justify-content: center is safe here because in full-width scroll mode
      the typical circle count fits without triggering horizontal overflow.
    */
    .circular-collections--full-width .circular-collections__track--scroll {
      justify-content: center;
    }
  }

  /* ── Individual item ── */
  .circular-collections__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex: 0 0 auto;
    scroll-snap-align: start;
    cursor: pointer;
  }

  /* ── Circle ── */
  .circular-collections__circle {
    border-radius: 50%;
    width: var(--circle-size);
    height: var(--circle-size);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(var(--color-foreground), 0.15);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    flex-shrink: 0;
  }

  .circular-collections__item:hover .circular-collections__circle,
  .circular-collections__item:focus-visible .circular-collections__circle,
  .circular-collections__item:active .circular-collections__circle {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.13);
    border-color: rgba(var(--color-foreground), 0.45);
  }

  /* ── Image ── */
  .circular-collections__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
  }

  .circular-collections__item:hover .circular-collections__img,
  .circular-collections__item:focus-visible .circular-collections__img,
  .circular-collections__item:active .circular-collections__img {
    transform: scale(1.06);
  }

  /* ── Placeholder SVG ── */
  .circular-collections__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(var(--color-foreground), 0.04);
  }

  /* ── Label ── */
  .circular-collections__label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.6875rem;     /* 11px */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-align: center;
    color: rgb(var(--color-foreground));
    max-width: calc(var(--circle-size) + 24px);
    word-break: break-word;
  }

  /* ── Focus ring (accessibility) ── */
  .circular-collections__item:focus-visible {
    outline: 2px solid rgb(var(--color-foreground));
    outline-offset: 4px;
    border-radius: 4px;
  }
/* END_SECTION:circular-collections */

/* START_SECTION:editorial-grid (INDEX:14) */
.editorial-grid {
    width: 100%;
  }

  .editorial-grid__inner {
    max-width: var(--page-width, 1200px);
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* ── Header ── */
  .editorial-grid__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2.4rem;
    gap: 1rem;
  }

  .editorial-grid__heading {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0;
  }

  .editorial-grid__view-all {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    white-space: nowrap;
  }

  .editorial-grid__view-all:hover {
    opacity: 1;
  }

  /* ── Grid track ── */
  .editorial-grid__track {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    align-items: flex-start;
  }

  /* ── Cards: width variants ── */
  .editorial-grid__card {
    flex: 0 0 auto;
    min-width: 0;
  }

  .editorial-grid__card--one-third {
    width: calc(33.333% - 1.1rem);
  }

  .editorial-grid__card--half {
    width: calc(50% - 0.8rem);
  }

  .editorial-grid__card--two-thirds {
    width: calc(66.666% - 0.533rem);
  }

  .editorial-grid__card--full {
    width: 100%;
  }

  /* ── Cards: aspect ratio variants ── */
  .editorial-grid__media {
    position: relative;
    overflow: hidden;
    background: #f0ece6;
    width: 100%;
  }

  .editorial-grid__card--ratio-square .editorial-grid__media {
    aspect-ratio: 1 / 1;
  }

  .editorial-grid__card--ratio-portrait .editorial-grid__media {
    aspect-ratio: 3 / 4;
  }

  .editorial-grid__card--ratio-landscape .editorial-grid__media {
    aspect-ratio: 4 / 3;
  }

  .editorial-grid__card--ratio-auto .editorial-grid__media {
    aspect-ratio: auto;
  }

  .editorial-grid__media-link {
    display: block;
    width: 100%;
    height: 100%;
  }

  .editorial-grid__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .editorial-grid__card:hover .editorial-grid__img {
    transform: scale(1.03);
  }

  .editorial-grid__placeholder-svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ── Metadata ── */
  .editorial-grid__meta {
    padding: 1rem 0 0.4rem;
  }

  .editorial-grid__meta-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 0.3rem;
  }

  .editorial-grid__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: inherit;
    text-decoration: none;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .editorial-grid__title:hover {
    text-decoration: underline;
  }

  .editorial-grid__price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .editorial-grid__price--compare {
    opacity: 0.45;
    margin-right: 0.4rem;
    font-weight: 300;
  }

  .editorial-grid__vendor {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(var(--color-foreground), 0.55);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* ── Mobile: single column ── */
  @media screen and (max-width: 749px) {
    .editorial-grid__card--one-third,
    .editorial-grid__card--half,
    .editorial-grid__card--two-thirds,
    .editorial-grid__card--full {
      width: 100%;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 989px) {
    .editorial-grid__card--one-third {
      width: calc(50% - 0.8rem);
    }
    .editorial-grid__card--two-thirds {
      width: calc(50% - 0.8rem);
    }
  }
/* END_SECTION:editorial-grid */

/* START_SECTION:motion-grid-gallery (INDEX:43) */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

  /* ─── Section shell ─── */
  .mgg-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 80px 20px 100px;
    background-color: var(--mgg-bg, #FCF8F5);
    font-family: 'Outfit', sans-serif;
    perspective: 1200px;
  }

  /* ─── SVG waves ─── */
  .mgg-svg-bg {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
  }

  .mgg-svg-bg--top  { top: 0;    height: 350px; }
  .mgg-svg-bg--bottom { bottom: 0; height: 350px; transform: scaleY(-1); }

  .mgg-wave {
    fill: none;
    stroke: var(--mgg-wave, #F5C2C9);
    stroke-width: 2;
    opacity: 0.55;
    animation: mgg-wave-morph 9s ease-in-out infinite alternate;
    transform-origin: 50% 50%;
  }

  .mgg-wave:nth-child(2) { animation-delay: -3s;   animation-duration: 12s; opacity: 0.35; }
  .mgg-wave:nth-child(3) { animation-delay: -6s;   animation-duration: 15s; opacity: 0.25; stroke-width: 1.5; }
  .mgg-wave:nth-child(4) { animation-delay: -1.5s; animation-duration: 18s; opacity: 0.2;  stroke-width: 1; }

  @keyframes mgg-wave-morph {
    0%   { d: path("M-50,300 C100,180 300,420 500,280 C700,140 900,380 1150,260 C1300,180 1450,320 1550,240"); opacity: 0.55; transform: translateY(0px); }
    33%  { d: path("M-50,340 C120,200 280,460 520,300 C720,160 880,400 1100,300 C1280,220 1480,340 1550,280"); opacity: 0.45; transform: translateY(-18px); }
    66%  { d: path("M-50,260 C80,160 320,380 480,260 C680,120 920,360 1120,220 C1320,140 1460,300 1550,200"); opacity: 0.60; transform: translateY(12px); }
    100% { d: path("M-50,310 C140,190 260,440 540,290 C740,150 860,410 1080,270 C1300,160 1470,330 1550,250"); opacity: 0.50; transform: translateY(-8px); }
  }

  @supports not (d: path("M0,0")) { .mgg-wave { display: none; } }

  /* ─── Backdrop blobs ─── */
  .mgg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
  }

  .mgg-blob--1 {
    width: min(520px, 58vw);
    height: min(520px, 58vw);
    background: radial-gradient(circle, rgba(245,194,201,0.55) 0%, rgba(255,220,210,0.28) 60%, transparent 100%);
    top: -6%;
    left: -10%;
    animation: mgg-blob-drift-1 26s ease-in-out infinite alternate;
  }

  .mgg-blob--2 {
    width: min(440px, 50vw);
    height: min(440px, 50vw);
    background: radial-gradient(circle, rgba(255,195,165,0.42) 0%, rgba(245,194,201,0.22) 60%, transparent 100%);
    bottom: 4%;
    right: -7%;
    animation: mgg-blob-drift-2 33s ease-in-out infinite alternate;
  }

  @keyframes mgg-blob-drift-1 {
    0%   { transform: translate(0, 0) scale(1); }
    35%  { transform: translate(52px, -38px) scale(1.1); }
    70%  { transform: translate(-24px, 62px) scale(0.92); }
    100% { transform: translate(72px, 26px) scale(1.06); }
  }

  @keyframes mgg-blob-drift-2 {
    0%   { transform: translate(0, 0) scale(1); }
    40%  { transform: translate(-42px, 32px) scale(1.08); }
    75%  { transform: translate(30px, -52px) scale(0.94); }
    100% { transform: translate(-62px, -18px) scale(1.05); }
  }

  /* ─── Marquee ─── */
  .mgg-marquee {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    opacity: 0.06;
  }

  .mgg-marquee-track {
    display: flex;
    white-space: nowrap;
    animation: mgg-marquee-scroll 30s linear infinite;
    will-change: transform;
  }

  .mgg-marquee-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 7vw, 6rem);
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #2C1810;
    flex-shrink: 0;
    padding-right: 2.5rem;
  }

  @keyframes mgg-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ─── Header ─── */
  .mgg-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
  }

  .mgg-header h2 {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #2C1810;
    margin: 0 0 16px;
    line-height: 1.15;
  }

  .mgg-header .mgg-desc {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: #5a3e35;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .mgg-header .mgg-desc p { margin: 0; }

  /* ─── Grid — asymmetric editorial ─── */
  .mgg-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 16px;
    justify-content: center;
    align-items: flex-start;
    padding: 24px 10px 72px;
  }

  /* ─── Card base ─── */
  .mgg-card {
    --parallax-offset: 0px;
    --initial-rot: 0deg;
    --mouse-x: 50%;
    --mouse-y: 50%;
    flex: 0 1 var(--mgg-card-width, 280px);
    min-width: 220px;
    max-width: var(--mgg-card-width, 280px);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(44, 24, 16, 0.12);
    border-radius: 20px;
    box-shadow:
      0 8px 32px rgba(44, 24, 16, 0.08),
      0 2px 8px rgba(245, 194, 201, 0.18);
    overflow: hidden;
    cursor: pointer;
    will-change: transform;
    transform: translateY(var(--parallax-offset)) rotate(var(--initial-rot));
    transition: box-shadow 0.3s ease;
    position: relative;
  }

  /* Asymmetric vertical stagger — editorial rhythm */
  .mgg-card:nth-child(4n+1) { z-index: 4; }
  .mgg-card:nth-child(4n+2) { margin-top: 64px;  margin-left: -8px;  z-index: 3; }
  .mgg-card:nth-child(4n+3) { margin-top: 28px;  margin-left: -6px;  z-index: 5; }
  .mgg-card:nth-child(4n+4) { margin-top: 88px;  margin-left: -10px; z-index: 2; }

  /* Raise hovered card above its siblings */
  .mgg-grid .mgg-card:hover,
  .mgg-grid .mgg-card:focus-within { z-index: 10; }

  .mgg-card:hover {
    box-shadow:
      0 24px 64px rgba(44, 24, 16, 0.15),
      0 4px 16px rgba(245, 194, 201, 0.35);
  }

  /* Static glass shimmer layer */
  .mgg-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.38) 0%, transparent 58%);
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mgg-card:hover::before { opacity: 1; }

  /* ─── Cursor-following glass flare ─── */
  .mgg-card-shine {
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at var(--mouse-x) var(--mouse-y),
      rgba(255, 255, 255, 0.34) 0%,
      rgba(255, 255, 255, 0.09) 38%,
      transparent 64%
    );
    border-radius: inherit;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.22s ease;
    mix-blend-mode: screen;
  }

  .mgg-card:hover .mgg-card-shine { opacity: 1; }

  .mgg-card-inner { position: relative; z-index: 2; }

  /* ─── Scroll-driven parallax (native CSS) ─── */
  @supports (animation-timeline: scroll()) {
    .mgg-section { view-timeline: --mgg-section block; }

    .mgg-card {
      animation: mgg-parallax-card linear both;
      animation-timeline: --mgg-section;
      animation-range: entry 0% exit 100%;
    }

    .mgg-wave:nth-child(1) {
      animation: mgg-wave-morph 9s ease-in-out infinite alternate, mgg-wave-scroll linear both;
      animation-timeline: auto, --mgg-section;
      animation-range: auto, entry 0% exit 100%;
    }
    .mgg-wave:nth-child(2) {
      animation: mgg-wave-morph 12s ease-in-out -3s infinite alternate, mgg-wave-scroll-2 linear both;
      animation-timeline: auto, --mgg-section;
      animation-range: auto, entry 0% exit 100%;
    }
    .mgg-wave:nth-child(3) {
      animation: mgg-wave-morph 15s ease-in-out -6s infinite alternate, mgg-wave-scroll-3 linear both;
      animation-timeline: auto, --mgg-section;
      animation-range: auto, entry 0% exit 100%;
    }
    .mgg-wave:nth-child(4) {
      animation: mgg-wave-morph 18s ease-in-out -1.5s infinite alternate, mgg-wave-scroll-2 linear both;
      animation-timeline: auto, --mgg-section;
      animation-range: auto, entry 0% exit 100%;
    }

    @keyframes mgg-parallax-card {
      from { transform: translateY(calc(var(--parallax-offset) * 1)) rotate(var(--initial-rot)); }
      to   { transform: translateY(calc(var(--parallax-offset) * -1)) rotate(var(--initial-rot)); }
    }

    @keyframes mgg-wave-scroll   { from { transform: translateY(-40px); } to { transform: translateY(40px); } }
    @keyframes mgg-wave-scroll-2 { from { transform: translateY(-25px); } to { transform: translateY(55px); } }
    @keyframes mgg-wave-scroll-3 { from { transform: translateY(-60px); } to { transform: translateY(20px); } }
  }

  /* ─── Reduced motion ─── */
  @media (prefers-reduced-motion: reduce) {
    .mgg-card,
    .mgg-wave,
    .mgg-blob,
    .mgg-marquee-track {
      animation: none !important;
      transition: none !important;
    }
    .mgg-card { transform: none !important; }
  }

  /* ─── Product card ─── */
  .mgg-product-img {
    width: 100%;
    aspect-ratio: var(--mgg-aspect-ratio, 1 / 1);
    object-fit: cover;
    display: block;
  }

  .mgg-product-body { padding: 16px; }

  .mgg-product-title {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #2C1810;
    margin: 0 0 6px;
  }

  .mgg-product-price {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #5a3e35;
    margin: 0 0 12px;
  }

  .mgg-btn {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2C1810;
    background: rgba(245, 194, 201, 0.5);
    border: 1px solid rgba(245, 194, 201, 0.8);
    border-radius: 50px;
    padding: 7px 18px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .mgg-btn:hover {
    background: rgba(245, 194, 201, 0.85);
    transform: translateY(-1px);
  }

  /* ─── Image card ─── */
  .mgg-image-img {
    width: 100%;
    aspect-ratio: var(--mgg-aspect-ratio, 1 / 1);
    object-fit: cover;
    display: block;
  }

  .mgg-image-caption {
    padding: 12px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: #5a3e35;
    text-align: center;
  }

  /* ─── Testimonial card — premium editorial ─── */
  .mgg-testimonial-body {
    padding: 28px 24px 24px;
    background: linear-gradient(145deg, rgba(255,255,255,0.92) 0%, rgba(252,248,245,0.88) 100%);
  }

  .mgg-quote {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 1.28rem;
    line-height: 1.74;
    color: #2C1810;
    margin: 0 0 20px;
    position: relative;
  }

  .mgg-quote::before {
    content: '\201C';
    display: block;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 5.5rem;
    line-height: 0.6;
    color: rgba(245, 194, 201, 0.9);
    margin-bottom: 12px;
  }

  .mgg-quote::after {
    content: '\201D';
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 4rem;
    line-height: 0;
    vertical-align: -0.5em;
    color: rgba(245, 194, 201, 0.6);
    margin-left: 3px;
  }

  .mgg-customer-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #5a3e35;
    margin: 0 0 10px;
    letter-spacing: 0.04em;
  }

  .mgg-stars { display: flex; gap: 2px; }
  .mgg-star { color: #F5C2C9; font-size: 1rem; }
  .mgg-star.empty { color: rgba(44,24,16,0.2); }

  /* ─── Tablet ─── */
  @media (max-width: 900px) {
    .mgg-card {
      flex: 0 1 calc(50% - 12px);
      max-width: calc(50% - 12px);
    }
    .mgg-card:nth-child(4n+2),
    .mgg-card:nth-child(4n+3),
    .mgg-card:nth-child(4n+4) { margin-left: 0; }
    .mgg-card:nth-child(4n+2) { margin-top: 40px; }
    .mgg-card:nth-child(4n+3) { margin-top: 16px; }
    .mgg-card:nth-child(4n+4) { margin-top: 56px; }
  }

  /* ─── Mobile horizontal swipe carousel ─── */
  @media (max-width: 560px) {
    .mgg-section { padding: 60px 0 80px; }

    .mgg-svg-bg--top,
    .mgg-svg-bg--bottom { height: 200px; opacity: 0.7; }

    .mgg-header { padding: 0 20px; }

    .mgg-grid {
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      gap: 14px;
      padding: 30px 20px 44px;
      justify-content: flex-start;
      align-items: flex-start;
    }

    .mgg-grid::-webkit-scrollbar { display: none; }

    .mgg-card {
      flex: 0 0 min(72vw, 260px);
      min-width: 0;
      max-width: none;
      scroll-snap-align: start;
    }

    .mgg-card:nth-child(4n+1) { margin-top: 0;   margin-left: 0; }
    .mgg-card:nth-child(4n+2) { margin-top: 28px; margin-left: 0; }
    .mgg-card:nth-child(4n+3) { margin-top: 10px; margin-left: 0; }
    .mgg-card:nth-child(4n+4) { margin-top: 40px; margin-left: 0; }
  }
/* END_SECTION:motion-grid-gallery */

/* START_SECTION:scrolling-ticker (INDEX:53) */
.ticker-section {
    width: 100%;
    margin-top: var(--ticker-mt, 12px);
    margin-bottom: var(--ticker-mb, 12px);
    background-color: var(--ticker-bg);
    color: var(--ticker-color);
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
  }

  .ticker__wrapper {
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
  }

  .ticker__track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-family: var(--ticker-font, 'Outfit', sans-serif);
    font-size: var(--ticker-font-size, 16px);
    will-change: transform;
    animation: ticker-left var(--ticker-duration, 20s) linear infinite;
  }

  .ticker--reverse .ticker__track {
    animation-name: ticker-right;
  }

  .ticker__item {
    display: inline-block;
    padding: 0 0.75em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    flex-shrink: 0;
  }

  .ticker__sep {
    display: inline-block;
    padding: 0 0.1em;
    flex-shrink: 0;
    user-select: none;
  }

  @media (prefers-reduced-motion: reduce) {
    .ticker__track {
      animation: none;
    }
  }

  @keyframes ticker-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  @keyframes ticker-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
  }
/* END_SECTION:scrolling-ticker */

/* START_SECTION:slideshow-hero (INDEX:54) */
.slideshow-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: var(--mobile-height, 500px);
    touch-action: pan-y;
  }

  @media screen and (min-width: 750px) {
    .slideshow-hero {
      height: var(--desktop-height, 75vh);
    }
  }

  /* ── Track & Slides ──────────────────────────────────────── */
  .slideshow-hero__track {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .slideshow-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
    pointer-events: none;
  }

  .slideshow-hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }

  /* ── Images ──────────────────────────────────────────────── */
  .slideshow-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slideshow-hero__image--desktop {
    display: none;
  }

  .slideshow-hero__image--mobile {
    display: block;
  }

  @media screen and (min-width: 750px) {
    .slideshow-hero__image--desktop {
      display: block;
    }

    .slideshow-hero__image--mobile {
      display: none;
    }
  }

  .slideshow-hero__placeholder {
    background-color: #e8e4e0;
  }

  .slideshow-hero__placeholder .placeholder-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
  }

  /* ── Overlay ─────────────────────────────────────────────── */
  .slideshow-hero__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
  }

  /* ── Text Wrapper (flexbox alignment) ────────────────────── */
  .slideshow-hero__text-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: var(--align-items, center);
    justify-content: var(--justify-content, center);
    padding: clamp(1.5rem, 5vw, 4rem);
    color: var(--text-color, #ffffff);
    text-align: var(--text-align, center);
    z-index: 3;
  }

  .slideshow-hero__text-block {
    max-width: 720px;
  }

  /* ── Typography ──────────────────────────────────────────── */
  .slideshow-hero__heading {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1.0;
    letter-spacing: -0.01em;
    margin: 0 0 0.3em;
    color: inherit;
  }

  .slideshow-hero__subheading {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: clamp(0.8rem, 1.6vw, 1.1rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 0 2em;
    color: inherit;
    opacity: 0.88;
  }

  /* ── Button ──────────────────────────────────────────────── */
  .slideshow-hero__button {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9em 2.4em;
    border: 1.5px solid var(--text-color, #ffffff);
    color: var(--text-color, #ffffff);
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
  }

  .slideshow-hero__button:hover,
  .slideshow-hero__button:focus-visible {
    background-color: var(--text-color, #ffffff);
    color: #111111;
    outline: none;
  }

  /* ── Dot Navigation ──────────────────────────────────────── */
  .slideshow-hero__dots {
    position: absolute;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.55rem;
    z-index: 10;
  }

  .slideshow-hero__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .slideshow-hero__dot.is-active {
    background-color: #ffffff;
    transform: scale(1.5);
  }

  .slideshow-hero__dot:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
  }
/* END_SECTION:slideshow-hero */

/* START_SECTION:split-editorial-banner (INDEX:56) */
.seb {
    width: 100%;
  }

  /* ── 50/50 grid ── */
  .seb__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: var(--seb-height, 650px);
  }

  /* ── Each half ── */
  .seb__half {
    position: relative;
    overflow: hidden;
  }

  /* ── Media fills the half ── */
  .seb__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .seb__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .seb__half:hover .seb__img {
    transform: scale(1.03);
  }

  .seb__placeholder-svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ── Subtle dim overlay on each half ── */
  .seb__half::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.0) 55%);
    pointer-events: none;
    z-index: 1;
  }

  /* ── Text overlay pinned to the bottom ── */
  .seb__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.4rem 2.8rem;
    z-index: 2;
    pointer-events: none;
  }

  .seb__heading {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2rem, 3.2vw, 4rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 0.5rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  }

  .seb__subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.7rem, 1.1vw, 0.9rem);
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.4rem;
  }

  .seb__btn {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.75);
    padding: 0.75rem 1.6rem;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    pointer-events: auto;
  }

  .seb__btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #fff;
  }

  /* ── Divider between halves ── */
  .seb__half--left {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  /* ── Mobile: stack vertically ── */
  @media screen and (max-width: 749px) {
    .seb__grid {
      grid-template-columns: 1fr;
      height: auto;
    }

    .seb__half {
      height: calc(var(--seb-height, 650px) * 0.6);
    }

    .seb__half--left {
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .seb__heading {
      font-size: clamp(1.8rem, 7vw, 3rem);
    }

    .seb__overlay {
      padding: 1.8rem 2rem;
    }
  }
/* END_SECTION:split-editorial-banner */

/* START_SECTION:split-hero (INDEX:57) */
.split-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  /* ── Grid ── */
  .split-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: var(--hero-height, 100vh);
    width: 100%;
  }

  /* ── Panels ── */
  .split-hero__panel {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    height: 100%;
  }

  .split-hero__panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
    transition: background 0.35s ease;
    pointer-events: none;
  }

  .split-hero__panel:hover::after {
    background: rgba(0, 0, 0, 0.18);
  }

  /* ── Images ── */
  .split-hero__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .split-hero__panel:hover .split-hero__img {
    transform: scale(1.03);
  }

  /* ── Placeholder fallback ── */
  .split-hero__placeholder {
    width: 100%;
    height: 100%;
    background: #e8e2da;
  }

  .split-hero__placeholder-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ── Text overlay ── */
  .split-hero__overlay {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 0 2rem;
    pointer-events: none;
  }

  .split-hero__heading {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(3.5rem, 8vw, 9rem);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.01em;
    margin: 0 0 0.4rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
    color: inherit;
  }

  .split-hero__subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.75rem, 1.4vw, 1rem);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    color: inherit;
  }

  /* ── Mobile: horizontal swipe track ── */
  @media screen and (max-width: 749px) {
    .split-hero__grid {
      display: flex;
      flex-direction: row;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      width: 100%;
      height: var(--mobile-height, 500px);
    }

    .split-hero__grid::-webkit-scrollbar {
      display: none;
    }

    .split-hero__panel {
      flex: 0 0 100%;
      width: 100%;
      height: 100%;
      scroll-snap-align: start;
    }

    .split-hero__overlay {
      bottom: 10%;
    }

    .split-hero__heading {
      font-size: clamp(2.8rem, 12vw, 5rem);
    }
  }
/* END_SECTION:split-hero */