/**
 * Full-width sections — FAQ, CTAs, nav, centered blocks
 */

:root {
  --section-wide: min(1200px, calc(100% - 2 * clamp(1.15rem, 4vw, 2.5rem)));
  --section-inner: min(1100px, calc(100% - 2 * clamp(1.15rem, 4vw, 2.5rem)));
}

.page-home {
  --content-mid: var(--section-inner);
  --content-wide: min(1200px, calc(100% - 2 * clamp(1.15rem, 4vw, 2.5rem)));
  --content-narrow: min(900px, calc(100% - 2 * clamp(1.15rem, 4vw, 2.5rem)));
}

/* Hero — wider copy + full-width CTA bar */
.hero-kinetic__content {
  max-width: min(920px, 100%);
}

.hero-kinetic__actions-row .hero-actions--pair {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(246, 241, 234, 0.35);
}

.hero-kinetic__actions-row .hero-actions--pair .btn--hero-cta {
  flex: 1 1 0;
  min-width: 0;
  min-height: 3.35rem;
  margin: 0 !important;
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  justify-content: center;
  border: none !important;
  border-right: 1px solid rgba(246, 241, 234, 0.25) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: var(--ink, #1a1a1a) !important;
  color: var(--linen, #faf7f2) !important;
}

.hero-kinetic__actions-row .hero-actions--pair .btn--hero-cta:last-child {
  border-right: none !important;
}

@media (hover: hover) {
  .hero-kinetic__actions-row .hero-actions--pair .btn--hero-cta:hover {
    background: #2d2d2d !important;
    color: var(--linen, #faf7f2) !important;
  }
}

@media (max-width: 768px) {
  .hero-kinetic__actions-row .hero-actions--pair {
    flex-wrap: wrap;
  }

  .hero-kinetic__actions-row .hero-actions--pair .btn--hero-cta {
    flex: 1 1 calc(50% - 0px);
    border-bottom: 1px solid rgba(246, 241, 234, 0.2) !important;
  }

  .hero-kinetic__actions-row .hero-actions--pair .btn--hero-cta:nth-child(2n) {
    border-right: none !important;
  }
}

/* FAQ */
.section--faq-new {
  padding-left: clamp(1.15rem, 4vw, 2.5rem) !important;
  padding-right: clamp(1.15rem, 4vw, 2.5rem) !important;
}

.faq-new {
  width: var(--section-wide);
  max-width: 100%;
  margin: 0 auto;
}

.faq-new__item summary {
  padding: 1.25rem 0;
}

.faq-new__a {
  animation: faq-reveal 0.28s ease;
}

@keyframes faq-reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shop + contact CTAs */
.section--shop-preview .shop-home__cta--pair {
  width: 100%;
  max-width: none;
  margin: 2.5rem 0 0;
}

.section--shop-preview .shop-home__cta--pair .btn--cta-pair {
  min-height: 3.4rem;
  padding: 1rem 1.75rem;
  font-size: 0.86rem;
}

@media (min-width: 769px) {
  .section--shop-preview .shop-home__cta--pair .btn--cta-pair {
    min-height: 3.6rem;
    padding: 1.1rem 2.25rem;
    min-width: 14rem;
  }
}

.contact-panel__unified.btn-bar {
  max-width: var(--section-wide);
  width: 100%;
}

.section--contact-rich .section__inner {
  width: var(--section-wide);
  max-width: 100%;
}

/* Product CTA — connected pair (matches shop home) */
.product-page .product-cta--pair {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: var(--section-wide);
  margin: 2rem auto 0;
}

.product-page .product-cta--pair .btn--cta-pair {
  flex: 1 1 0;
  min-width: 0;
  min-height: 3.15rem;
  margin: 0;
  padding: 0.95rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  justify-content: center;
  background: var(--ink, #1a1a1a) !important;
  color: var(--linen, #faf7f2) !important;
  border: 1px solid var(--ink, #1a1a1a) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.product-page .product-cta--pair .btn--cta-pair + .btn--cta-pair {
  margin-top: -1px;
}

@media (min-width: 769px) {
  .product-page .product-cta--pair {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .product-page .product-cta--pair .btn--cta-pair + .btn--cta-pair {
    margin-top: 0;
    margin-left: -1px;
  }
}

@media (hover: hover) {
  .product-page .product-cta--pair .btn--cta-pair:hover,
  .product-page .product-cta--pair .btn--cta-pair:focus-visible {
    background: #2d2d2d !important;
    color: var(--linen, #faf7f2) !important;
    border-color: #2d2d2d !important;
  }
}

/* Desktop nav — width/centering handled in nav-fixes.css v4 */
