/* BVJ MARKETING — style.css (non-critical / below-fold only) */

/* Marquee — first below-fold element */
.marquee {
  background: #0c0c0c;
  overflow: hidden;
  padding: .9rem 0;
  border-top: 1px solid #1e1d1b;
  border-bottom: 1px solid #1e1d1b;
  contain: layout paint
}

.marquee__track {
  display: flex;
  gap: 3rem;
  animation: mq 22s linear infinite;
  white-space: nowrap;
  will-change: transform
}

.marquee__track span {
  font-size: .68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ece8e0;
  flex-shrink: 0
}

.marquee__track em {
  font-style: normal;
  color: #c0392b;
  margin-left: .5rem
}

@keyframes mq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* Sections — content-visibility skips layout/paint until near viewport */
.section {
  padding: clamp(5rem, 10vw, 9rem) 5%;
  max-width: 1200px;
  margin: 0 auto;
  content-visibility: auto;
  contain-intrinsic-size: 0 600px
}

.section__eyebrow {
  font-size: .65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c0392b;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .75rem
}

.section__eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: #c0392b
}

.section__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.5px;
  margin-bottom: .75rem
}

.section__title em {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic
}

.section__sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #8a8780;
  margin-bottom: 4rem;
  max-width: 480px;
  line-height: 1.6
}

/* Problem */
.problem {
  border-top: 1px solid #e8e6e2
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e8e6e2;
  border: 1px solid #e8e6e2
}

.problem__card {
  background: #f8f7f5;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  contain: layout style
}

.problem__card:hover {
  background: #fafaf8
}

.problem__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #c0392b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1)
}

.problem__card:hover::after {
  transform: scaleX(1)
}

.problem__card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: #e8e6e2;
  line-height: 1;
  margin-bottom: .5rem;
  user-select: none
}

.problem__card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: .5px;
  line-height: 1.1;
  margin-bottom: 1.2rem
}

.problem__card-title span {
  color: #c0392b
}

.problem__card-text {
  font-size: .88rem;
  line-height: 1.8;
  color: #8a8780;
  margin-bottom: 1.5rem
}

.problem__card-verdict {
  display: inline-block;
  font-size: .62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8a8780;
  border: 1px solid #d0cec9;
  padding: .3rem .8rem
}

/* Difference */
.difference {
  background: #0c0c0c;
  max-width: 100%;
  padding: clamp(5rem, 10vw, 9rem) 0;
  content-visibility: auto;
  contain-intrinsic-size: 0 700px
}

.difference__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%
}

.difference .section__eyebrow {
  color: #c0392b
}

.difference .section__title {
  color: #f8f7f5
}

.difference__header {
  margin-bottom: 4rem
}

.difference__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #1e1d1b;
  border: 1px solid #1e1d1b
}

.diff-card {
  background: #0c0c0c;
  padding: 3rem 2.5rem;
  transition: background .3s;
  contain: layout style
}

.diff-card:hover {
  background: #1e1d1b
}

.diff-card__icon {
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid #3d3c39;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8f7f5;
  margin-bottom: 1.5rem;
  transition: border-color .3s, color .3s
}

.diff-card:hover .diff-card__icon {
  border-color: #c0392b;
  color: #c0392b
}

.diff-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #f8f7f5;
  margin-bottom: 1rem
}

.diff-card__text {
  font-size: .88rem;
  line-height: 1.8;
  color: #8a8780;
  max-width: 380px;
  margin-bottom: 1.5rem
}

.diff-card__tag {
  display: inline-block;
  font-size: .62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c0392b;
  border: 1px solid #1e1d1b;
  padding: .3rem .8rem
}

/* Contact */
.contact {
  border-top: 1px solid #e8e6e2
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start
}

.contact__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.5px;
  margin-bottom: 1.5rem
}

.contact__title em {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic
}

.contact__body {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #8a8780;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 400px
}

.contact__promises {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 2.5rem
}

.contact__promises li {
  font-size: .85rem;
  color: #3d3c39;
  display: flex;
  align-items: center;
  gap: .7rem
}

.promise-check {
  color: #c0392b;
  font-weight: 600
}

.contact__email {
  font-size: .78rem;
  letter-spacing: 1px;
  color: #8a8780;
  border-bottom: 1px solid #d0cec9;
  padding-bottom: .2rem;
  transition: color .2s, border-color .2s
}

.contact__email:hover {
  color: #c0392b;
  border-color: #c0392b
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: .4rem
}

.form__label {
  font-size: .62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8a8780
}

.form__input {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #d0cec9;
  padding: .75rem 0;
  font-family: 'Barlow', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  color: #0c0c0c;
  outline: none;
  transition: border-color .25s;
  border-radius: 0;
  appearance: none
}

.form__input::placeholder {
  color: #d0cec9
}

.form__input:focus {
  border-color: #0c0c0c
}

.form__input.error {
  border-color: #c0392b
}

.form__textarea {
  resize: vertical;
  min-height: 110px
}

.form__submit {
  align-self: flex-start;
  margin-top: .5rem
}

.form__submit.success {
  background: #2d7a46;
  border-color: #2d7a46
}

.form__note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .78rem;
  color: #8a8780
}

/* Footer */
.footer {
  background: #0c0c0c;
  padding: 3rem 5%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid #1e1d1b;
  content-visibility: auto;
  contain-intrinsic-size: 0 120px
}

.footer__logo-img {
  height: 44px;
  width: auto;
  filter: invert(1);
  object-fit: contain
}

.footer__center {
  text-align: center
}

.footer__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .9rem;
  color: #8a8780;
  margin-bottom: .4rem
}

.footer__email {
  font-size: .72rem;
  letter-spacing: 1.5px;
  color: #8a8780;
  border-bottom: 1px solid #1e1d1b;
  padding-bottom: .15rem;
  transition: color .2s, border-color .2s
}

.footer__email:hover {
  color: #c0392b;
  border-color: #c0392b
}

.footer__copy {
  font-size: .65rem;
  letter-spacing: 1px;
  color: #3d3c39;
  text-align: right
}

/* Responsive */
@media(max-width:768px) {
  .problem__grid {
    grid-template-columns: 1fr;
    background: none;
    gap: 1px
  }

  .difference__grid {
    grid-template-columns: 1fr
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .form__row {
    grid-template-columns: 1fr
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center
  }

  .footer__logo {
    margin: 0 auto
  }

  .footer__copy {
    text-align: center
  }
}