/** Shopify CDN: Minification failed

Line 479:20 Unexpected "/"

**/
/* =============================================================
   FOUR Blog — four-blog.css
   Luxury editorial. Black background. KMR Waldenburg Bold.
   ============================================================= */

/* =============================================================
   Base
   ============================================================= */

.fb-wrap {
  background: #000;
  color: #fff;
  font-family: 'KMRWaldenburg-Bold', 'KMR Waldenburg', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

.fb-wrap *,
.fb-wrap *::before,
.fb-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-weight: 700;
}

.fb-wrap a {
  color: inherit;
  text-decoration: none;
}

/* =============================================================
   ARTICLE — Top bar
   ============================================================= */

.fb-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fb-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.fb-back:hover { color: #fff; }

.fb-topbar-date {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* =============================================================
   ARTICLE — Hero image
   ============================================================= */

.fb-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.fb-hero-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  max-width: 100% !important;
}

/* =============================================================
   ARTICLE — Title + Intro
   ============================================================= */

.fb-intro-block {
  padding: 48px 32px 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 960px;
}

.fb-article-title {
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.fb-article-intro {
  font-size: clamp(15px, 1.8vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.01em;
  max-width: 640px;
}

/* =============================================================
   ARTICLE — Body (RTE content from Shopify editor)

   IMPORTANT: We use !important on image rules because Shopify
   themes often apply global img styles that override ours.
   ============================================================= */

.fb-body {
  padding: 0 0 80px;
  text-indent: 50px;
}

/* Text column — readable width with padding */
.fb-body p,
.fb-body h2,
.fb-body h3,
.fb-body h4,
.fb-body ul,
.fb-body ol,
.fb-body blockquote {
  padding-left: 32px;
  padding-right: 32px;
  max-width: 760px;
}

.fb-body p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.fb-body > p:first-of-type {
  font-size: clamp(17px, 1.8vw, 22px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.fb-body h2 {
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 64px;
  margin-bottom: 20px;
  max-width: 760px;
}

.fb-body h3 {
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  margin-top: 48px;
  margin-bottom: 14px;
  max-width: 760px;
}

.fb-body ul,
.fb-body ol {
  list-style: none;
  margin-bottom: 28px;
}

.fb-body li {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.fb-body li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.25);
}

/* Blockquote — FOUR Warm Red accent */
.fb-body blockquote {
  border-left: 2px solid #900404;
  padding-left: 28px;
  margin: 56px 32px;
  max-width: 640px;
}

.fb-body blockquote p {
  font-size: clamp(20px, 2.8vw, 36px);
  line-height: 1.25;
  color: #fff;
  padding: 0;
  margin: 0;
  max-width: none;
}

/* ── Images — override theme styles with !important ── */

/* All images in body: full width, no height constraint */
.fb-body img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  margin: 56px 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Remove padding from <p> tags that only contain an image */
.fb-body p:has(> img:only-child) {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

.fb-body p:has(> img:only-child) img {
  margin: 56px 0 !important;
}

/* Two images side by side */
.fb-body p:has(> img + img) {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 2px !important;
  padding: 0 !important;
  margin: 56px 0 !important;
  max-width: 100% !important;
}

.fb-body p:has(> img + img) img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 3 / 4 !important;
  object-fit: cover !important;
  margin: 0 !important;
}

/* Also handle Shopify's figure/figcaption structure */
.fb-body figure {
  margin: 56px 0;
  padding: 0;
  max-width: 100%;
}

.fb-body figure img {
  margin: 0 !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

.fb-body figcaption {
  padding: 12px 32px 0;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  max-width: none;
}

/* ── Video / iframe ── */

.fb-body iframe,
.fb-body video {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  border: none !important;
  background: #0d0d0d;
  margin: 56px 0 !important;
}

.fb-body p:has(> iframe:only-child) {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

/* =============================================================
   ARTICLE — Metafield gallery
   Rendered below the body content.
   Alternates between full-width single images and side-by-side pairs.
   ============================================================= */

.fb-metafield-gallery {
  padding-bottom: 80px;
}

.fb-gallery-image {
  width: 100%;
  overflow: hidden;
}

.fb-gallery-image--full {
  aspect-ratio: 16 / 9;
  margin-bottom: 2px;
}

.fb-gallery-image--full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fb-gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}

.fb-gallery-pair .fb-gallery-image {
  aspect-ratio: 3 / 4;
}

.fb-gallery-pair .fb-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =============================================================

/* =============================================================
   ARTICLE — Intro block extras
   ============================================================= */

.fb-pre-header {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
}

.fb-sub-header {
  font-size: clamp(15px, 1.8vw, 20px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.01em;
  margin-top: 16px;
  max-width: 640px;
}

/* =============================================================
   ARTICLE — Video block
   ============================================================= */

.fb-video-block {
  width: 100%;
  margin: 0 0 2px;
}

.fb-video-block iframe,
.fb-video-block video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  background: #0d0d0d;
}

/* =============================================================
   ARTICLE — Small header (above image sections)
   ============================================================= */

.fb-small-header-block {
  padding: 56px 32px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fb-small-header {
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
}

/* =============================================================
   ARTICLE — Description sections (image + text pairs)
   Odd: split layout — image left, text right
   Even: full width image, text below
   ============================================================= */

.fb-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fb-section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.fb-section--split .fb-section-image {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  width: 100%;
}

.fb-section--split .fb-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fb-section--split .fb-section-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 40px;
  background: #000;
}

.fb-section--full .fb-section-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.fb-section--full .fb-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fb-section-text--below {
  padding: 28px 32px 48px;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 32px;
}

.fb-section-num {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.fb-section-desc {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.01em;
  max-width: 640px;
}

   ARTICLE — Prev / Next nav
   ============================================================= */

.fb-footnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fb-footnav-link {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.15);
  transition: color 0.2s, text-decoration-color 0.2s;
}

.fb-footnav-link:hover {
  color: #fff;
  text-decoration-color: #fff;
}

/* =============================================================
   OVERVIEW — Header
   ============================================================= */

.fb-overview-header {
  padding: 56px 32px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fb-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
}

.fb-overview-title {
  font-size: clamp(48px, 9vw, 128px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

/* =============================================================
   OVERVIEW — Article list
   ============================================================= */

.fb-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.fb-list-item--hero {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.fb-list-item--hero .fb-list-image {
  aspect-ratio: unset;
  min-height: 560px;
}

.fb-list-item--hero .fb-list-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 40px;
  background: #000;
}

.fb-list-item--hero .fb-list-title {
  font-size: clamp(28px, 3.5vw, 52px);
}

.fb-list-item {
  background: #000;
  display: block;
  overflow: hidden;
  transition: opacity 0.2s;
}

.fb-list-item:hover { opacity: 0.85; }

.fb-list-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.fb-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.fb-list-item:hover .fb-list-image img {
  transform: scale(1.03);
}

.fb-list-placeholder {
  width: 100%;
  height: 100%;
  background: #111;
}

.fb-list-info {
  padding: 20px 24px 28px;
}

.fb-list-date {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
}

.fb-list-title {
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.fb-list-excerpt {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.fb-list-cta {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.12);
}

.fb-empty {
  grid-column: 1 / 3;
  padding: 80px 32px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

/* =============================================================
   OVERVIEW — Pagination
   ============================================================= */

.fb-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fb-page-btn {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.15);
  transition: color 0.2s, text-decoration-color 0.2s;
}

.fb-page-btn:hover {
  color: #fff;
  text-decoration-color: #fff;
}

.fb-page-count {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

/* =============================================================
   Responsive — Mobile (≤768px)
   ============================================================= */

@media (max-width: 768px) {
  .fb-topbar { padding: 16px 20px; }

  .fb-hero-image { aspect-ratio: 3 / 4; }

  .fb-intro-block { padding: 32px 20px 40px; }

  .fb-body p,
  .fb-body h2,
  .fb-body h3,
  .fb-body h4,
  .fb-body ul,
  .fb-body ol,
  .fb-body blockquote {
    padding-left: 20px;
    padding-right: 20px;
  }

  .fb-body blockquote { margin: 40px 20px; }
  .fb-body figcaption { padding: 12px 20px 0; }

  .fb-body p:has(> img + img) {
    grid-template-columns: 1fr !important;
  }

  .fb-body p:has(> img + img) img {
    aspect-ratio: 16 / 9 !important;
  }

  .fb-gallery-pair {
    grid-template-columns: 1fr;
  }

  .fb-gallery-pair .fb-gallery-image {
    aspect-ratio: 16 / 9;
  }

  .fb-footnav { padding: 24px 20px; }

  .fb-video-block iframe,
  .fb-video-block video { aspect-ratio: 16 / 9; }

  .fb-small-header-block { padding: 40px 20px 24px; }

  .fb-section--split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .fb-section--split .fb-section-image { aspect-ratio: 3 / 4; }

  .fb-section--split .fb-section-text { padding: 24px 20px 32px; }

  .fb-section--full .fb-section-image { aspect-ratio: 3 / 4; }

  .fb-section-text--below {
    flex-direction: column;
    gap: 12px;
    padding: 20px 20px 36px;
  }

  .fb-overview-header { padding: 40px 20px 36px; }

  .fb-list { grid-template-columns: 1fr; }

  .fb-list-item--hero {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .fb-list-item--hero .fb-list-image {
    min-height: 320px;
    aspect-ratio: 3 / 4;
  }

  .fb-list-item--hero .fb-list-info { padding: 24px 20px 28px; }
  .fb-list-info { padding: 16px 20px 24px; }
  .fb-empty { grid-column: 1; padding: 60px 20px; }
  .fb-pagination { padding: 24px 20px; }
}

/* =============================================================
   STRONG OVERRIDES — fight theme global styles
   These ensure our font, size and padding always win
   ============================================================= */

.fb-wrap .fb-body p,
.fb-wrap .fb-body h2,
.fb-wrap .fb-body h3,
.fb-wrap .fb-body h4,
.fb-wrap .fb-body li {
  font-family: 'KMRWaldenburg-Bold', 'KMR Waldenburg', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
}

.fb-wrap .fb-body p {
  font-size: clamp(15px, 1.5vw, 18px) !important;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 28px !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
  max-width: 760px !important;
}

.fb-wrap .fb-body > p:first-of-type {
  font-size: clamp(17px, 1.8vw, 22px) !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

.fb-wrap .fb-section-desc {
  font-family: 'KMRWaldenburg-Bold', 'KMR Waldenburg', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(14px, 1.4vw, 17px) !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.65) !important;
  letter-spacing: 0.01em !important;
}

.fb-wrap .fb-section-num {
  font-family: 'KMRWaldenburg-Bold', 'KMR Waldenburg', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 10px !important;
  letter-spacing: 0.2em !important;
  color: rgba(255, 255, 255, 0.25) !important;
}

/* Section text padding */
.fb-wrap .fb-section--split .fb-section-text {
  padding: 48px 40px !important;
}

.fb-wrap .fb-section-text--below {
  padding: 24px 32px 48px !important;
}

@media (max-width: 768px) {
  .fb-wrap .fb-body p {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .fb-wrap .fb-section--split .fb-section-text {
    padding: 24px 20px 32px !important;
  }
  .fb-wrap .fb-section-text--below {
    padding: 20px 20px 36px !important;
  }
}

/* Force section images to always render */
.fb-wrap .fb-section-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.fb-wrap .fb-section--split .fb-section-image {
  aspect-ratio: 3 / 4 !important;
  width: 100% !important;
  overflow: hidden !important;
  display: block !important;
}

.fb-wrap .fb-section--full .fb-section-image {
  aspect-ratio: 16 / 9 !important;
  width: 100% !important;
  overflow: hidden !important;
  display: block !important;
}

/* First line indent on section descriptions */
.fb-wrap .fb-section-desc {
  text-indent: 50px !important;
}