/* =========================================================
BODYFIX BLANK LANDING PAGES v1.4.9
Coming Soon and Maintenance utility pages.
No header. No footer.
========================================================= */

/* 01. Blank Template Safety
--------------------------------------------------------- */

.bf-blank-landing-body .site-header,
.bf-blank-landing-body .site-footer,
.bf-blank-landing-body header,
.bf-blank-landing-body footer,
.bf-blank-landing-body .bf-header,
.bf-blank-landing-body .bf-footer {
  display: none !important;
}

.bf-blank-landing-body {
  margin: 0;
  background: #f7f3ec;
}

.bf-template-blank-landing,
.bf-template-blank {
  min-height: 100vh;
}

/* 02. Shared Page Backgrounds
--------------------------------------------------------- */

.bf-coming-soon-page,
.bf-maintenance-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(184, 137, 69, 0.16), transparent 34rem),
    linear-gradient(180deg, #f7f3ec 0%, #eee6da 100%);
  color: #080808;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* 03. Shared Section Layout
--------------------------------------------------------- */

.bf-coming-soon-section,
.bf-maintenance-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  box-sizing: border-box;
}

/* 04. Shared Premium Card
--------------------------------------------------------- */

.bf-coming-soon-card,
.bf-maintenance-card {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 44px 26px;
  text-align: center;
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid rgba(184, 137, 69, 0.28);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(8, 8, 8, 0.16);
  backdrop-filter: blur(18px);
  box-sizing: border-box;
}

/* 05. Eyebrow
--------------------------------------------------------- */

.bf-coming-soon-eyebrow,
.bf-maintenance-eyebrow {
  margin: 0 0 18px;
  color: #b88945;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* 06. Title
--------------------------------------------------------- */

.bf-coming-soon-title,
.bf-maintenance-title {
  margin: 0;
  color: #080808;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.04em;
}

/* 07. Lead Text
--------------------------------------------------------- */

.bf-coming-soon-lead,
.bf-maintenance-lead {
  max-width: 620px;
  margin: 26px auto 0;
  color: #080808;
  font-size: clamp(1.08rem, 2.4vw, 1.35rem);
  line-height: 1.62;
  font-weight: 400;
}

/* 08. Gold Line
--------------------------------------------------------- */

.bf-coming-soon-line,
.bf-maintenance-line {
  width: 54px !important;
  max-width: 54px;
  height: 1px;
  margin: 30px auto;
  border: 0;
  background: #b88945;
  opacity: 1;
}

/* 09. Body Text
--------------------------------------------------------- */

.bf-coming-soon-text,
.bf-maintenance-text {
  max-width: 560px;
  margin: 0 auto 14px;
  color: rgba(8, 8, 8, 0.68);
  font-size: 1rem;
  line-height: 1.72;
}

.bf-coming-soon-muted {
  color: rgba(8, 8, 8, 0.52);
}

/* 10. Button Area
--------------------------------------------------------- */

.bf-coming-soon-actions,
.bf-maintenance-actions {
  margin-top: 24px;
}

.bf-coming-soon-button .wp-block-button__link,
.bf-maintenance-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 8px;
  background: #080808;
  color: #f7f3ec;
  border: 1px solid #080808;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.bf-coming-soon-button .wp-block-button__link:hover,
.bf-coming-soon-button .wp-block-button__link:focus,
.bf-maintenance-button .wp-block-button__link:hover,
.bf-maintenance-button .wp-block-button__link:focus {
  background: #b88945;
  color: #080808;
  border-color: #b88945;
  transform: translateY(-1px);
}

/* 11. Desktop Refinement
--------------------------------------------------------- */

@media (min-width: 768px) {
  .bf-coming-soon-card,
  .bf-maintenance-card {
    padding: 70px 64px;
  }
}


/* =========================================================
BODYFIX COMING SOON COMPACT VIEWPORT OVERRIDES v1.5.0
Mobile-first safety patch for the existing live coming soon page.
========================================================= */
/* =========================================================
   BodyFix Coming Soon Compact Viewport Fix v1
   Master-system location:
   02_WEBSITE_AND_THEME_SYSTEM/assets/css/bodyfix-coming-soon-compact-v1.css
   Purpose:
   - Makes the coming soon homepage fit smaller mobile viewports better.
   - Keeps the premium card design but reduces oversized type and spacing.
   - Safe scope uses bf-coming-soon-* classes only.
   ========================================================= */

.bf-coming-soon-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.4rem, 5svh, 3.4rem) 1rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(184, 137, 69, 0.16), transparent 34rem),
    var(--bf-bg, #f7f3ec);
}

.bf-coming-soon-card {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: clamp(2.1rem, 5.5vw, 4.45rem) clamp(1.15rem, 5vw, 4rem);
  border: 1px solid rgba(184, 137, 69, 0.30);
  border-radius: clamp(28px, 4vw, 44px);
  background: rgba(255, 250, 241, 0.68);
  box-shadow: 0 26px 70px rgba(8, 8, 8, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.74);
  text-align: center;
}

.bf-coming-soon-eyebrow {
  margin: 0 0 clamp(1rem, 2.4vw, 1.45rem);
  color: var(--bf-gold, #b88945);
  font-family: var(--bf-font-body, Inter, Arial, sans-serif);
  font-size: clamp(0.68rem, 2.1vw, 0.82rem);
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: clamp(0.18em, 1vw, 0.32em);
  text-transform: uppercase;
}

.bf-coming-soon-title {
  max-width: 820px;
  margin: 0 auto;
  color: var(--bf-black, #080808);
  font-family: var(--bf-font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(3.25rem, 13vw, 6.2rem);
  line-height: 0.88;
  letter-spacing: -0.064em;
  font-weight: 600;
}

.bf-coming-soon-lead {
  max-width: 690px;
  margin: clamp(1.25rem, 3vw, 1.75rem) auto 0;
  color: var(--bf-black, #080808);
  font-family: var(--bf-font-body, Inter, Arial, sans-serif);
  font-size: clamp(1.05rem, 3.4vw, 1.38rem);
  line-height: 1.48;
  font-weight: 650;
}

.bf-coming-soon-line {
  width: 4rem;
  height: 1px;
  margin: clamp(1.2rem, 3vw, 1.65rem) auto;
  background: var(--bf-gold, #b88945);
  opacity: 0.72;
}

.bf-coming-soon-note {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(8, 8, 8, 0.68);
  font-family: var(--bf-font-body, Inter, Arial, sans-serif);
  font-size: clamp(0.96rem, 2.7vw, 1.12rem);
  line-height: 1.62;
  font-weight: 500;
}

.bf-coming-soon-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1.15rem, 3vw, 1.65rem);
}

.bf-coming-soon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.92rem 1.2rem;
  border: 1px solid var(--bf-gold, #b88945);
  border-radius: 9px;
  background: var(--bf-gold, #b88945);
  color: var(--bf-black, #080808);
  font-family: var(--bf-font-body, Inter, Arial, sans-serif);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 430px) {
  .bf-coming-soon-page {
    align-items: flex-start;
    padding-top: max(1rem, 4svh);
    padding-bottom: max(1rem, 4svh);
  }

  .bf-coming-soon-card {
    padding: 1.75rem 1rem 1.85rem;
    border-radius: 28px;
  }

  .bf-coming-soon-title {
    font-size: clamp(2.95rem, 14vw, 4.15rem);
    line-height: 0.87;
  }

  .bf-coming-soon-lead {
    font-size: 1.02rem;
    line-height: 1.43;
  }

  .bf-coming-soon-note {
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .bf-coming-soon-button {
    width: 100%;
  }
}

@media (max-height: 720px) and (max-width: 767px) {
  .bf-coming-soon-page {
    min-height: auto;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .bf-coming-soon-card {
    padding-top: 1.35rem;
    padding-bottom: 1.45rem;
  }

  .bf-coming-soon-eyebrow {
    margin-bottom: 0.78rem;
    font-size: 0.64rem;
  }

  .bf-coming-soon-title {
    font-size: clamp(2.65rem, 12.8vw, 3.65rem);
  }

  .bf-coming-soon-lead {
    margin-top: 1rem;
    font-size: 0.96rem;
    line-height: 1.38;
  }

  .bf-coming-soon-line {
    margin-top: 0.95rem;
    margin-bottom: 0.95rem;
  }

  .bf-coming-soon-note {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .bf-coming-soon-actions {
    margin-top: 1rem;
  }
}

@media (min-width: 900px) {
  .bf-coming-soon-page {
    padding-top: clamp(2rem, 6svh, 4.2rem);
    padding-bottom: clamp(2rem, 6svh, 4.2rem);
  }

  .bf-coming-soon-card {
    padding-top: clamp(3rem, 5vw, 4.25rem);
    padding-bottom: clamp(3rem, 5vw, 4.25rem);
  }
}

.bf-coming-soon-button-wrap .wp-block-button__link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  padding: 0.92rem 1.2rem !important;
  border: 1px solid var(--bf-gold, #b88945) !important;
  border-radius: 9px !important;
  background: var(--bf-gold, #b88945) !important;
  color: var(--bf-black, #080808) !important;
  font-family: var(--bf-font-body, Inter, Arial, sans-serif) !important;
  font-size: 0.78rem !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  letter-spacing: 0.17em !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}

@media (max-width: 430px) {
  .bf-coming-soon-button-wrap,
  .bf-coming-soon-button-wrap .wp-block-button__link {
    width: 100% !important;
  }
}
