/* =============================================================================
   Playwood — public site design system (modern wood / industrial premium)
   ============================================================================= */

:root {
  --pw-primary: #a87445;
  --pw-primary-dark: #8a5f36;
  --pw-primary-soft: rgba(168, 116, 69, 0.14);
  --pw-dark: #1e1e1e;
  --pw-dark-elevated: #2a2a2a;
  --pw-cream: #f8f3ed;
  --pw-cream-deep: #ebe4d9;
  --pw-beige: #f3d3a2;
  --pw-white: #ffffff;
  --pw-muted: #5c534c;
  --pw-line: rgba(30, 30, 30, 0.1);
  --pw-shadow: 0 4px 24px rgba(30, 30, 30, 0.06);
  --pw-shadow-lg: 0 20px 50px rgba(30, 30, 30, 0.1);
  --pw-radius: 1rem;
  --pw-radius-sm: 0.65rem;
  --pw-radius-lg: 1.35rem;
  --pw-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --pw-display: "Fraunces", Georgia, "Times New Roman", serif;
  --bs-primary: #a87445;
  --bs-primary-rgb: 168, 116, 69;
  --bs-link-color: #8a5f36;
  --bs-link-hover-color: #6d4829;
  --pw-focus: rgba(168, 116, 69, 0.55);
  --pw-focus-ring: 0 0 0 3px var(--pw-focus);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-body,
body.bg-cream {
  font-family: var(--pw-font);
  background-color: var(--pw-cream);
  background-image: none;
  color: var(--pw-dark);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

.font-display {
  font-family: var(--pw-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.text-gold {
  color: var(--pw-primary) !important;
}

/* ----- Buttons ----- */
.btn-gold {
  --bs-btn-bg: var(--pw-primary);
  --bs-btn-border-color: var(--pw-primary);
  --bs-btn-hover-bg: var(--pw-primary-dark);
  --bs-btn-hover-border-color: var(--pw-primary-dark);
  --bs-btn-active-bg: var(--pw-primary-dark);
  --bs-btn-active-border-color: var(--pw-primary-dark);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.5rem 1.35rem;
  box-shadow: 0 1px 2px rgba(22, 19, 16, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s;
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(157, 107, 63, 0.35);
  filter: brightness(1.03);
}
.btn-gold.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
}
.btn-gold.btn-lg {
  padding: 0.65rem 1.75rem;
  font-size: 1rem;
}

.btn-outline-dark {
  border-radius: var(--pw-radius-sm);
  font-weight: 600;
  border-width: 1.5px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-outline-dark:hover {
  background: var(--pw-dark);
  border-color: var(--pw-dark);
  transform: translateY(-1px);
}

/* ----- Navbar (light, clean) ----- */
.navbar-playwood {
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}
.navbar-playwood.navbar-playwood--scrolled {
  box-shadow: 0 4px 20px rgba(22, 19, 16, 0.08) !important;
}
.navbar-playwood .navbar-brand-text {
  font-family: var(--pw-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: #1a1918;
}
.navbar-playwood .nav-link {
  font-weight: 500;
  font-size: 0.9375rem;
  color: #4a4540 !important;
  border-radius: 0.5rem;
  transition: color 0.15s, background 0.15s;
}
.navbar-playwood .nav-link:hover,
.navbar-playwood .nav-link:focus {
  color: #1a1918 !important;
  background: rgba(0, 0, 0, 0.04);
}
.navbar-playwood .nav-link:focus:not(:focus-visible) {
  background: transparent;
}
.navbar-playwood .nav-link:focus-visible {
  color: #1a1918 !important;
  background: rgba(168, 116, 69, 0.1);
  outline: 2px solid var(--pw-primary);
  outline-offset: 2px;
}
.navbar-playwood .nav-phone {
  color: var(--pw-primary) !important;
  font-weight: 600;
}
.navbar-playwood .nav-phone:hover {
  color: var(--pw-primary-dark) !important;
  background: var(--pw-primary-soft);
}

@media (max-width: 991.98px) {
  .navbar-playwood .navbar-collapse {
    background: #fff;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e8e4df;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
}

.navbar-playwood .navbar-brand {
  line-height: 1;
}
.navbar-playwood .brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 70px;
  
  object-fit: contain;
}

/* Legacy — admin or old blocks */
.bg-dark-wood {
  background: linear-gradient(135deg, #1a1512 0%, #2d241d 45%, #1e1814 100%) !important;
  position: relative;
}
.bg-dark-wood::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 3px,
    rgba(255, 255, 255, 0.015) 3px,
    rgba(255, 255, 255, 0.015) 6px
  );
  pointer-events: none;
}

/* ----- Page hero (inner pages — light band) ----- */
.page-hero,
.page-hero--light {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 52%, #f6f2ec 100%);
  border-bottom: 1px solid rgba(30, 30, 30, 0.08);
  color: #1f1d1b;
  box-shadow: 0 12px 40px rgba(30, 30, 30, 0.04);
}
.page-hero::before,
.page-hero--light::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 75% 70% at 100% 0%, rgba(168, 116, 69, 0.07), transparent 52%),
    radial-gradient(ellipse 55% 55% at 0% 100%, rgba(243, 211, 162, 0.12), transparent 48%);
}
.page-hero::after,
.page-hero--light::after {
  display: none;
}
.page-hero .container,
.page-hero--light .container {
  position: relative;
  z-index: 1;
}
.page-hero__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--pw-primary);
  margin-bottom: 0.5rem;
}
.page-hero__title {
  font-family: var(--pw-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
  color: #141210;
}
.page-hero .page-hero__title::after,
.page-hero--light .page-hero__title::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--pw-primary), rgba(168, 116, 69, 0.35));
}
.page-hero__lead {
  color: #5c5650;
  max-width: 34rem;
  margin-bottom: 0;
  font-size: 1.0625rem;
  line-height: 1.55;
}

/* Breadcrumb on light hero */
.breadcrumb-subtle {
  --bs-breadcrumb-divider-color: #c4bdb4;
  margin-bottom: 0;
}
.breadcrumb-subtle .breadcrumb-item a {
  color: #6b6560;
  text-decoration: none;
}
.breadcrumb-subtle .breadcrumb-item a:hover {
  color: var(--pw-primary);
}
.breadcrumb-subtle .breadcrumb-item.active {
  color: #3a3632;
}

/* Category banner (stays cinematic) */
.cat-banner {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--pw-line);
}
.cat-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 20% 20%, rgba(176, 122, 74, 0.2), transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.cat-banner .container {
  position: relative;
  z-index: 2;
}
.cat-banner .page-hero__eyebrow {
  color: rgba(255, 255, 255, 0.78) !important;
}
.cat-banner h1 {
  font-family: var(--pw-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
.cat-banner .text-white-50 {
  color: rgba(255, 255, 255, 0.78) !important;
}

/* Main content — always readable (never inherit hero white) */
.site-main {
  color: #252322;
}
.site-main h1,
.site-main h2,
.site-main h3,
.site-main h4,
.site-main h5,
.site-main .section-title {
  color: #1a1816;
}

/* Dark hero on home: undo main heading colours inside .ff-hero */
.site-main .ff-hero h1,
.site-main .ff-hero .ff-hero__title {
  color: #fff !important;
}
.site-main .ff-hero .ff-hero__lead {
  color: rgba(255, 255, 255, 0.86) !important;
}
.site-main .ff-hero .ff-hero__tag {
  color: var(--pw-beige) !important;
}
.site-main .ff-hero .ff-hero__phone,
.site-main .ff-hero .ff-hero__phone a {
  color: rgba(255, 255, 255, 0.92) !important;
}
.site-main .text-secondary,
.site-main .text-muted {
  color: #5a544d !important;
}

/* ----- Home hero (modern swiper) ----- */
.home-hero {
  position: relative;
  background: #100e0c;
}
body.pw-home .site-main > .home-hero:first-of-type {
  margin-top: 0;
}

.hero-swiper {
  --swiper-navigation-color: #fff;
  width: 100%;
  overflow: hidden;
}
.hero-swiper .swiper-slide,
.hero-slide {
  min-height: clamp(520px, 88vh, 780px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #141210;
}

.hero-slide__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
  will-change: transform;
}
.swiper-slide-active .hero-slide__bg {
  animation: heroKenBurns 8s ease-out forwards;
}
@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}

.hero-slide__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(10, 8, 7, 0.9) 0%, rgba(10, 8, 7, 0.62) 38%, rgba(10, 8, 7, 0.2) 62%, rgba(10, 8, 7, 0.45) 100%),
    linear-gradient(180deg, rgba(10, 8, 7, 0.25) 0%, transparent 40%, rgba(10, 8, 7, 0.65) 100%);
}
.hero-slide--noimg .hero-slide__scrim {
  background: linear-gradient(100deg, rgba(10, 8, 7, 0.75) 0%, rgba(10, 8, 7, 0.35) 55%, transparent 100%);
}
.hero-slide--noimg.hero-slide--tone-1 {
  background-image: linear-gradient(145deg, #2a1f18 0%, #5c3d28 40%, #1e1814 100%);
}
.hero-slide--noimg.hero-slide--tone-2 {
  background-image: linear-gradient(145deg, #1a2428 0%, #3d5a4a 42%, #161c1e 100%);
}
.hero-slide--noimg.hero-slide--tone-3 {
  background-image: linear-gradient(145deg, #221a12 0%, #6b4423 38%, #14100d 100%);
}

.hero-slide__container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: clamp(520px, 88vh, 780px);
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: clamp(6.5rem, 11vw, 8.5rem);
}

.hero-slide__copy {
  max-width: 40rem;
  animation: heroCopyIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.swiper-slide:not(.swiper-slide-active) .hero-slide__copy {
  animation: none;
  opacity: 0;
}
@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slide__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.15rem;
  padding: 0.45rem 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}
.hero-slide__title {
  font-family: var(--pw-display);
  font-weight: 600;
  font-size: clamp(2rem, 5.2vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #fff !important;
  margin: 0 0 1rem;
  text-wrap: balance;
}
.hero-slide__lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88) !important;
  margin: 0;
  max-width: 34rem;
}
.hero-slide__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.hero-slide__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-slide__phone:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff !important;
}

.hero-swiper__ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  padding-bottom: 1.35rem;
  pointer-events: none;
}
.hero-swiper__meta {
  pointer-events: auto;
  flex: 1;
  min-width: 0;
  max-width: 16rem;
}
.hero-swiper__fraction {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.6rem;
}
.hero-swiper__fraction .hero-swiper__cur {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-swiper__fraction .hero-swiper__sep {
  margin: 0 0.2rem;
  opacity: 0.45;
}
.hero-swiper__progress {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}
.hero-swiper__bar {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pw-primary), var(--pw-beige));
  transform: scaleX(var(--hero-progress, 0));
  transform-origin: left center;
}
.hero-swiper__nav {
  display: flex;
  gap: 0.5rem;
  pointer-events: auto;
}
.hero-swiper__arrow {
  position: relative !important;
  inset: auto !important;
  margin: 0 !important;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-swiper__arrow::after {
  font-size: 0.8rem;
  font-weight: 700;
}
.hero-swiper__arrow:hover {
  background: rgba(255, 255, 255, 0.24) !important;
  transform: translateY(-1px);
}

.hero-features {
  position: relative;
  z-index: 2;
  background: #fff;
  border-bottom: 1px solid var(--pw-line);
}
.hero-features__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-features__list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pw-muted);
  border-bottom: 1px solid var(--pw-line);
}
.hero-features__list li:nth-child(odd) {
  border-right: 1px solid var(--pw-line);
}
.hero-features__list i {
  flex-shrink: 0;
  font-size: 1.05rem;
  color: var(--pw-primary);
}

.btn-ff-outline-dark {
  background: transparent !important;
  color: var(--pw-dark) !important;
  border: 2px solid rgba(30, 30, 30, 0.2) !important;
  font-weight: 600;
}
.btn-ff-outline-dark:hover {
  background: var(--pw-cream) !important;
  border-color: var(--pw-primary) !important;
  color: var(--pw-dark) !important;
}

@media (min-width: 768px) {
  .hero-features__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .hero-features__list li {
    border-bottom: none;
    border-right: 1px solid var(--pw-line);
  }
  .hero-features__list li:nth-child(odd) {
    border-right: 1px solid var(--pw-line);
  }
  .hero-features__list li:last-child {
    border-right: none;
  }
}

@media (max-width: 991.98px) {
  .hero-slide__scrim {
    background: linear-gradient(
      180deg,
      rgba(10, 8, 7, 0.35) 0%,
      rgba(10, 8, 7, 0.72) 50%,
      rgba(10, 8, 7, 0.92) 100%
    );
  }
  .hero-slide__container {
    align-items: flex-end;
    min-height: clamp(540px, 90vh, 800px);
    padding-bottom: 7.5rem;
  }
  .hero-slide__title {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }
  .hero-swiper__ui {
    padding-bottom: 1rem;
  }
}
/* ----- Section chrome ----- */
.section-head {
  margin-bottom: 2rem;
}
.section-head__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pw-primary);
  margin-bottom: 0.35rem;
}
.section-title {
  font-family: var(--pw-display);
  font-weight: 600;
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
  letter-spacing: -0.02em;
  color: var(--pw-dark);
  margin-bottom: 0;
}
.section-head .link-all {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pw-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease, color 0.2s;
}
.section-head .link-all::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.2s;
}
.section-head .link-all:hover {
  color: var(--pw-primary-dark);
  gap: 0.5rem;
}
.section-head .link-all:hover::after {
  transform: translateX(3px);
}

.section-surface {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--pw-radius-lg);
  box-shadow: var(--pw-shadow);
}
.section-tint {
  background: #faf9f7;
  border-top: 1px solid #ebe6e0;
  border-bottom: 1px solid #ebe6e0;
}

/* ----- Cards ----- */
.card-wood {
  border: 1px solid rgba(30, 30, 30, 0.08);
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30, 30, 30, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
  background: #fff;
  color: #252322;
}
.card-wood .card-text,
.card-wood .text-secondary {
  color: #5a544d !important;
}
.card-wood:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(30, 30, 30, 0.09);
  border-color: rgba(176, 122, 74, 0.22);
}
.card-wood .card-img-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--pw-cream-deep), #e0d8cf);
}
.card-wood .card-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(22, 19, 17, 0.06) 100%);
  pointer-events: none;
}
.card-wood img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.card-wood:hover img {
  transform: scale(1.05);
}
.card-wood .card-body {
  padding: 1.35rem 1.4rem 1.5rem;
}
.card-wood .card-title {
  font-family: var(--pw-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: #1a1816;
}
.card-wood .card-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pw-primary);
  margin-bottom: 0.35rem;
}

.card-placeholder {
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #5a544d;
  background: repeating-linear-gradient(
    -8deg,
    transparent,
    transparent 8px,
    rgba(176, 122, 74, 0.04) 8px,
    rgba(176, 122, 74, 0.04) 16px
  );
}
.card-placeholder i {
  opacity: 0.45;
  font-size: 2rem;
}

/* ----- About strip (home) ----- */
.about-strip {
  position: relative;
}
.about-strip__visual {
  border-radius: var(--pw-radius-lg);
  overflow: hidden;
  box-shadow: var(--pw-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.about-strip__visual img {
  width: 100%;
  height: auto;
  display: block;
}
.placeholder-panel {
  border-radius: var(--pw-radius-lg);
  border: 2px dashed rgba(176, 122, 74, 0.35);
  background: #faf9f7;
  color: #4a4540;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  font-size: 0.95rem;
}

/* ----- Why choose ----- */
.why-card {
  height: 100%;
  padding: 1.75rem 1.5rem;
  border-radius: var(--pw-radius-lg);
  background: #fff;
  border: 1px solid #e0dbd4;
  box-shadow: 0 2px 12px rgba(22, 19, 16, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
  color: #252322;
}
.why-card .text-secondary,
.why-card p.small {
  color: #5a544d !important;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pw-shadow-lg);
  border-color: rgba(176, 122, 74, 0.18);
}
.why-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pw-primary-soft);
  color: var(--pw-primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.why-card h5 {
  font-family: var(--pw-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1a1816;
}

/* ----- CTA ----- */
.cta-strip {
  position: relative;
  overflow: hidden;
  border-radius: var(--pw-radius-lg);
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
  background: linear-gradient(125deg, var(--pw-primary) 0%, #7a4e30 48%, #4a3224 100%);
  box-shadow: 0 16px 48px rgba(122, 78, 48, 0.35);
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.12), transparent 45%);
  pointer-events: none;
}
.cta-strip .container {
  position: relative;
  z-index: 1;
}
.cta-strip h3 {
  font-family: var(--pw-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.cta-strip .btn-light {
  font-weight: 600;
  border-radius: var(--pw-radius-sm);
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.cta-strip .btn-dark {
  font-weight: 600;
  border-radius: var(--pw-radius-sm);
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.35) !important;
}
.cta-strip .btn-dark:hover {
  background: rgba(0, 0, 0, 0.55);
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.78) !important;
}

/* ----- Footer ----- */
.footer-premium {
  position: relative;
  margin-top: 4rem;
  background: linear-gradient(180deg, #12100e 0%, #0d0b0a 100%);
  border-top: 1px solid rgba(176, 122, 74, 0.2);
}
.footer-premium::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--pw-primary), transparent);
  opacity: 0.6;
}
.footer-premium h6 {
  font-family: var(--pw-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.footer-premium a.link-light {
  transition: color 0.2s, padding-left 0.2s;
}
.footer-premium a.link-light:hover {
  color: var(--pw-beige) !important;
  padding-left: 4px;
}
.footer-premium .social-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--pw-beige);
  transition: background 0.2s, transform 0.2s, color 0.2s;
}
.footer-premium .social-icon:hover {
  background: var(--pw-primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-logo {
  max-height: 140px;
}

/* ----- Forms (contact) ----- */
.form-panel {
  border-radius: var(--pw-radius-lg);
  border: 1px solid #e0dbd4;
  background: #fff;
  box-shadow: 0 4px 20px rgba(22, 19, 16, 0.06);
  color: #252322;
}
.form-panel .form-label {
  color: #3a3632;
  font-weight: 500;
}
.form-panel .form-control,
.form-panel .form-select {
  border-radius: var(--pw-radius-sm);
  border-color: rgba(22, 19, 17, 0.12);
  padding: 0.6rem 0.85rem;
}
.form-panel .form-control:focus {
  border-color: var(--pw-primary);
  box-shadow: 0 0 0 0.2rem var(--pw-primary-soft);
}

.filter-bar {
  background: #faf9f7;
  border-bottom: 1px solid #e0dbd4;
}
.filter-bar .form-label,
.filter-bar .text-secondary {
  color: #4a4540 !important;
}
.filter-bar .form-select,
.filter-bar .btn {
  border-radius: var(--pw-radius-sm);
}
.filter-bar .btn-dark {
  font-weight: 600;
}

/* ----- Pagination ----- */
.pagination .page-link {
  border-radius: var(--pw-radius-sm);
  margin: 0 0.15rem;
  border: 1px solid var(--pw-line);
  color: var(--pw-dark);
  font-weight: 500;
}
.pagination .page-item.active .page-link {
  background: var(--pw-primary);
  border-color: var(--pw-primary);
}

.product-showcase-img {
  border-radius: var(--pw-radius-lg);
  border: 1px solid var(--pw-line);
  box-shadow: var(--pw-shadow-lg);
}

.spec-block {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  white-space: pre-wrap;
}

.spec-block.pw-admin-html {
  white-space: normal;
}

.pw-admin-html > *:last-child {
  margin-bottom: 0;
}
.pw-admin-html table {
  width: 100%;
  margin-bottom: 1rem;
  border-collapse: collapse;
  font-size: 0.9em;
}
.pw-admin-html th,
.pw-admin-html td {
  border: 1px solid var(--pw-line);
  padding: 0.4rem 0.55rem;
  vertical-align: top;
}
.pw-admin-html ul,
.pw-admin-html ol {
  padding-left: 1.25rem;
}
.gallery-thumb {
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 0.2s, outline 0.2s, transform 0.2s;
  border-radius: var(--pw-radius-sm);
}
.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
  outline: 2px solid var(--pw-primary);
  transform: scale(1.02);
}

/* ----- Admin (unchanged structure, slight polish) ----- */
.admin-sidebar {
  min-height: 100vh;
  background: #1e1e1e;
}
.admin-sidebar a {
  color: #f8f3ed;
  text-decoration: none;
  display: block;
  padding: 0.55rem 1rem;
  border-radius: 8px;
}
.admin-sidebar a:hover,
.admin-sidebar a.active {
  background: rgba(168, 116, 69, 0.25);
  color: #f3d3a2;
}

@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}


/* =============================================================================
   FurnishFlow-inspired home layout (Playwood) — pill CTAs, dark hero, splits
   ============================================================================= */

:root {
  --ff-tan-panel: #ebe0d4;
  --ff-cream-panel: #f9f6f2;
  --ff-hero-charcoal: #141414;
}

.btn-ff-pill {
  border-radius: 50px !important;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn-ff-light {
  background: var(--pw-white) !important;
  color: var(--pw-dark) !important;
  border: none !important;
}
.btn-ff-light:hover {
  filter: brightness(0.96);
  color: var(--pw-dark) !important;
}

.btn-ff-outline-light {
  background: transparent !important;
  color: var(--pw-white) !important;
  border: 2px solid rgba(255, 255, 255, 0.85) !important;
}
.btn-ff-outline-light:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: var(--pw-white) !important;
}

.btn-ff-accent {
  background: var(--pw-primary) !important;
  border-color: var(--pw-primary) !important;
  color: var(--pw-white) !important;
}
.btn-ff-accent:hover {
  background: var(--pw-primary-dark) !important;
  border-color: var(--pw-primary-dark) !important;
  color: var(--pw-white) !important;
}

.btn-ff-quote {
  background: var(--pw-primary);
  color: #fff;
  border: none;
  font-weight: 600;
}
.btn-ff-quote:hover {
  background: var(--pw-primary-dark);
  color: #fff;
}

.btn-ff-icon {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pw-line);
  background: var(--pw-white);
  color: var(--pw-dark);
}
.btn-ff-icon--dark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-ff-icon--dark:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-ff-icon-sq {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pw-line);
  background: var(--pw-white);
  color: var(--pw-dark);
  text-decoration: none;
}
.btn-ff-icon-sq:hover {
  background: var(--pw-primary-soft);
  color: var(--pw-primary);
  border-color: rgba(168, 116, 69, 0.35);
}

.ff-brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pw-primary);
  display: inline-block;
}

/* ----- Navbar (mockup-style) ----- */
.navbar-playwood--ff {
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.navbar-playwood--ff.navbar-playwood--solid {
  background: #ffffff !important;
  border-bottom: 1px solid var(--pw-line) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(30, 30, 30, 0.06);
}
.navbar-playwood--ff.navbar-playwood--solid .navbar-brand-text {
  color: var(--pw-dark);
}
.navbar-playwood--ff.navbar-playwood--solid .nav-link:not(.dropdown-toggle) {
  color: #4a4540 !important;
}
.navbar-playwood--ff.navbar-playwood--solid .dropdown-toggle {
  color: #4a4540 !important;
}

.navbar-playwood--ff.navbar-playwood--solid .navbar-nav .nav-link.active:not(.dropdown-toggle),
.navbar-playwood--ff.navbar-playwood--solid .navbar-nav .nav-link.dropdown-toggle.active {
  color: var(--pw-dark) !important;
  background: var(--pw-primary-soft);
  font-weight: 600;
}

.navbar-playwood--on-dark .nav-link--on-dark.active,
.navbar-playwood--on-dark .dropdown-toggle.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14) !important;
  font-weight: 600;
}

body.pw-home .navbar-playwood--on-dark.navbar-playwood--scrolled .nav-link--on-dark.active,
body.pw-home .navbar-playwood--on-dark.navbar-playwood--scrolled .dropdown-toggle.active {
  color: var(--pw-dark) !important;
  background: var(--pw-primary-soft) !important;
}

.dropdown-menu-modern {
  min-width: 12.5rem;
  padding: 0.35rem 0.5rem;
  border-radius: 1rem !important;
  border: 1px solid rgba(30, 30, 30, 0.06) !important;
  box-shadow: 0 20px 50px rgba(30, 30, 30, 0.14) !important;
}
.dropdown-menu-modern .dropdown-item {
  border-radius: 0.5rem;
  padding: 0.5rem 0.85rem;
}
.dropdown-menu-modern .dropdown-item.active,
.dropdown-menu-modern .dropdown-item:active {
  background: var(--pw-primary-soft);
  color: var(--pw-dark);
  font-weight: 600;
}
.dropdown-menu-modern .dropdown-item:hover {
  background: rgba(168, 116, 69, 0.1);
}

body.site-body--elevated {
  background-image: linear-gradient(180deg, var(--pw-cream) 0%, #f0e8df 38%, var(--pw-cream) 100%);
}

.navbar-playwood--on-dark {
  background: transparent !important;
  border-bottom: 1px solid transparent !important;
}
.navbar-playwood--on-dark .navbar-brand-text {
  color: #fff;
}
.navbar-playwood--on-dark .nav-link--on-dark {
  color: rgba(255, 255, 255, 0.92) !important;
}
.navbar-playwood--on-dark .nav-link--on-dark:hover,
.navbar-playwood--on-dark .nav-link--on-dark:focus {
  color: #fff !important;
}
.navbar-playwood--on-dark .dropdown-toggle::after {
  border-top-color: rgba(255, 255, 255, 0.75);
}

body.pw-home .navbar-playwood--on-dark.navbar-playwood--scrolled {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(30, 30, 30, 0.1) !important;
  box-shadow: 0 4px 24px rgba(30, 30, 30, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.pw-home .navbar-playwood--on-dark.navbar-playwood--scrolled .navbar-brand-text {
  color: var(--pw-dark);
}
body.pw-home .navbar-playwood--on-dark.navbar-playwood--scrolled .nav-link--on-dark {
  color: #4a4540 !important;
}
body.pw-home .navbar-playwood--on-dark.navbar-playwood--scrolled .nav-link--on-dark.active,
body.pw-home .navbar-playwood--on-dark.navbar-playwood--scrolled .dropdown-toggle.active {
  color: var(--pw-dark) !important;
  background: var(--pw-primary-soft) !important;
}
body.pw-home .navbar-playwood--on-dark.navbar-playwood--scrolled .dropdown-toggle::after {
  border-top-color: #6c757d;
}
body.pw-home .navbar-playwood--on-dark.navbar-playwood--scrolled .ff-nav-phone {
  color: #5c534c !important;
  opacity: 1 !important;
}
body.pw-home .navbar-playwood--on-dark.navbar-playwood--scrolled .ff-nav-toggler .navbar-toggler-icon {
  filter: none;
}
body.pw-home .navbar-playwood--on-dark.navbar-playwood--scrolled .btn-ff-icon--dark {
  background: var(--pw-white);
  border-color: var(--pw-line);
  color: var(--pw-dark);
}
body.pw-home .navbar-playwood--on-dark:not(.navbar-playwood--scrolled) .ff-nav-phone {
  color: rgba(255, 255, 255, 0.88) !important;
}
body.pw-home .navbar-playwood--on-dark:not(.navbar-playwood--scrolled) {
  background: linear-gradient(180deg, rgba(12, 10, 9, 0.55) 0%, rgba(12, 10, 9, 0.15) 70%, transparent 100%) !important;
}

@media (max-width: 991.98px) {
  body.pw-home .navbar-playwood--on-dark .navbar-collapse {
    background: var(--pw-white) !important;
    border: 1px solid var(--pw-line) !important;
    border-radius: 1rem;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  }
  body.pw-home .navbar-playwood--on-dark .nav-link--on-dark {
    color: #4a4540 !important;
  }
  body.pw-home .navbar-playwood--on-dark .dropdown-toggle::after {
    border-top-color: #6c757d;
  }
}

body.pw-home .navbar-playwood--on-dark:not(.navbar-playwood--scrolled) .ff-nav-toggler .navbar-toggler-icon {
  filter: invert(1);
}

.ff-nav-row {
  flex-wrap: wrap;
}

/* ----- Hero ----- */
body.pw-home .site-main > .ff-hero:first-of-type {
  margin-top: -5.25rem;
  padding-top: clamp(6rem, 14vw, 9rem);
  padding-bottom: clamp(4rem, 10vw, 6rem);
}
.ff-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--ff-hero-charcoal) 0%, #1e1e1e 45%, #2a2420 100%);
}
.ff-hero__tag {
  letter-spacing: 0.14em;
  color: var(--pw-beige);
  font-weight: 700;
}
.ff-hero__title {
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.ff-hero__lead {
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
}
.ff-hero__inner {
  position: relative;
  z-index: 2;
}
.ff-hero__float {
  position: absolute;
  z-index: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  opacity: 0.92;
}
.ff-hero__float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ff-hero__float--1 {
  width: min(140px, 22vw);
  height: min(110px, 20vw);
  left: 4%;
  top: 22%;
  transform: rotate(-8deg);
}
.ff-hero__float--2 {
  width: min(160px, 24vw);
  height: min(120px, 22vw);
  right: 6%;
  top: 18%;
  transform: rotate(6deg);
}
.ff-hero__float--3 {
  width: min(130px, 20vw);
  height: min(100px, 18vw);
  left: 8%;
  bottom: 12%;
  transform: rotate(5deg);
}
.ff-hero__float--4 {
  width: min(150px, 22vw);
  height: min(115px, 20vw);
  right: 5%;
  bottom: 10%;
  transform: rotate(-5deg);
}

/* ----- Slider strip (optional CMS headlines) ----- */
.ff-slider-strip .hero-swiper-mini .swiper-pagination-bullet-active {
  background: var(--pw-primary);
}

/* ----- Alternating splits ----- */
.ff-split--tan .ff-split__text {
  background: var(--ff-tan-panel);
}
.ff-split--cream .ff-split__text {
  background: var(--ff-cream-panel);
}
.ff-split__title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--pw-dark);
}
.ff-split__label {
  color: var(--pw-primary);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.ff-split__media {
  min-height: 280px;
}
@media (min-width: 992px) {
  .ff-split__media {
    min-height: 420px;
  }
}
.ff-split__media img {
  min-height: 280px;
}
@media (min-width: 992px) {
  .ff-split__media img {
    min-height: 100%;
  }
}
.ff-split__deco {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 120px;
  height: 72px;
  opacity: 0.12;
  background: repeating-linear-gradient(
    -12deg,
    var(--pw-primary),
    var(--pw-primary) 2px,
    transparent 2px,
    transparent 10px
  );
  border-radius: 0.5rem;
}

/* ----- Services band ----- */
.ff-services {
  background: var(--ff-cream-panel);
  border-top: 1px solid var(--pw-line);
  border-bottom: 1px solid var(--pw-line);
}
.ff-services__head {
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--pw-dark);
}
.ff-service-card {
  background: var(--pw-white);
  border: 1px solid var(--pw-line);
  box-shadow: 0 4px 24px rgba(30, 30, 30, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ff-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30, 30, 30, 0.08);
}
.ff-service-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 2px solid var(--pw-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pw-primary);
  font-size: 1.2rem;
}

/* ----- CTA band ----- */
.ff-cta {
  background: linear-gradient(125deg, var(--pw-primary) 0%, var(--pw-primary-dark) 55%, #5c3d24 100%);
  box-shadow: 0 20px 50px rgba(122, 78, 48, 0.3);
}

/* ----- Cards (home refinement) — base .card-wood now matches; --ff keeps catalogue/home explicit + hover nudge ----- */
.card-wood--ff {
  border-radius: 1.15rem !important;
  border-color: rgba(30, 30, 30, 0.08) !important;
  box-shadow: 0 8px 32px rgba(30, 30, 30, 0.06) !important;
}
.card-wood--ff:hover {
  box-shadow: 0 18px 48px rgba(30, 30, 30, 0.1) !important;
  border-color: rgba(176, 122, 74, 0.28) !important;
}

.why-card--ff {
  border-radius: 1.1rem;
}

/* ----- Rich content blocks (stats, process, FAQ, inner pages) ----- */
.pw-stat__num {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--pw-dark);
  line-height: 1.1;
}
.pw-stat__lbl {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pw-muted);
  margin-top: 0.35rem;
  letter-spacing: 0.02em;
}
.pw-stat--compact .pw-stat__num {
  font-size: 1.35rem;
}
.pw-trust-list li {
  padding: 0.45rem 0;
  font-size: 0.9rem;
  color: var(--pw-dark);
  border-bottom: 1px dashed rgba(30, 30, 30, 0.08);
}
.pw-trust-list li:last-child {
  border-bottom: 0;
}
.pw-trust-list i {
  margin-right: 0.65rem;
}

.pw-process__step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.35rem;
}
.pw-process__step:last-child {
  margin-bottom: 0;
}
.pw-process__n {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--pw-primary-soft);
  color: var(--pw-primary);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pw-faq .accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pw-dark);
  box-shadow: none !important;
}
.pw-faq .accordion-button:not(.collapsed) {
  background: var(--pw-white);
  color: var(--pw-primary);
}
.pw-faq .accordion-body {
  background: var(--pw-white);
}

.pw-glance {
  box-shadow: var(--pw-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pw-glance:hover {
  transform: translateY(-2px);
  box-shadow: var(--pw-shadow-lg);
}

.pw-gallery-img {
  transition: transform 0.35s ease;
}
.pw-gallery-img:hover {
  transform: scale(1.02);
}

.pw-contact-card {
  box-shadow: var(--pw-shadow);
}

/* =============================================================================
   Home polish (2026) — hero showcase, stats card, split frames, brand alignment
   ============================================================================= */

.pw-stats-trust {
  background: linear-gradient(180deg, #f3efe8 0%, #faf8f5 45%, #fff 100%);
}
.pw-stats-trust__card {
  background: #fff;
  border: 1px solid rgba(30, 30, 30, 0.06);
  box-shadow: 0 12px 40px rgba(30, 30, 30, 0.06);
}

.ff-hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 85% 15%, rgba(168, 116, 69, 0.28), transparent 58%),
    radial-gradient(ellipse 70% 50% at 5% 90%, rgba(243, 211, 162, 0.12), transparent 52%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(0, 0, 0, 0.35), transparent 65%);
}
.ff-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: repeating-linear-gradient(
    -18deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.06) 2px,
    rgba(255, 255, 255, 0.06) 3px
  );
}
.ff-hero__bg {
  z-index: 0;
}

.ff-hero__showcase {
  position: relative;
  max-width: 540px;
}
.ff-hero__showcase-frame {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  background: linear-gradient(145deg, rgba(40, 34, 30, 0.5), rgba(20, 18, 16, 0.85));
}
.ff-hero__showcase-main {
  width: 100%;
  height: clamp(220px, 42vw, 400px);
  object-fit: cover;
  display: block;
}
.ff-hero__showcase-chip {
  position: absolute;
  right: -0.35rem;
  bottom: -1.1rem;
  width: 44%;
  max-width: 210px;
  border-radius: 1rem;
  overflow: hidden;
  border: 3px solid rgba(20, 20, 20, 0.85);
  background: #1a1816;
}
.ff-hero__showcase-chip img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.ff-hero__badge {
  position: absolute;
  left: 0.75rem;
  top: 1rem;
  z-index: 2;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(12, 10, 9, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
}
.ff-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pw-beige);
  box-shadow: 0 0 0 4px rgba(243, 211, 162, 0.2);
}
.ff-hero__phone a:hover {
  color: #fff !important;
  opacity: 1 !important;
}

.ff-split__media-inner {
  position: relative;
  min-height: 280px;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pw-cream-deep), #d4c8bc);
}
@media (min-width: 992px) {
  .ff-split__media-inner {
    min-height: 100%;
  }
  .ff-split--tan .ff-split__media-inner {
    border-radius: 0 1.35rem 1.35rem 0;
  }
  .ff-split--cream .ff-split__media-inner {
    border-radius: 1.35rem 0 0 1.35rem;
  }
}
@media (max-width: 991.98px) {
  .ff-split__media-inner {
    min-height: 240px;
    border-radius: 0 0 1rem 1rem;
  }
}
.ff-split__media-inner img {
  min-height: 280px;
}
@media (min-width: 992px) {
  .ff-split__media-inner img {
    min-height: 100%;
  }
}

.section-head .section-title {
  position: relative;
  display: inline-block;
}
.section-tint .section-head .section-title::after,
.bg-white .section-head .section-title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--pw-primary), rgba(168, 116, 69, 0.25));
}
.section-head.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.ff-slider-strip {
  box-shadow: inset 0 1px 0 rgba(30, 30, 30, 0.04);
}
.ff-slider-strip .hero-swiper-mini .swiper-slide {
  padding-bottom: 0.25rem;
}

.ff-cta {
  border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 991.98px) {
  body.pw-home .site-main > .home-hero:first-of-type,
  body.pw-home .site-main > .ff-hero:first-of-type {
    margin-top: 0;
  }
  body.pw-home .site-main > .ff-hero:first-of-type {
    padding-top: 5rem;
    padding-bottom: 3.5rem;
  }
  .ff-hero__showcase {
    margin-top: 0.5rem;
  }
  .ff-hero__showcase-chip {
    width: 38%;
    max-width: 160px;
    right: 0.25rem;
    bottom: -0.65rem;
  }
}
@media (max-width: 575.98px) {
  .ff-hero__badge {
    display: none !important;
  }
}

/* =============================================================================
   Design system pass (CR5) — keyboard focus + inner/solid chrome alignment
   ============================================================================= */

.navbar-playwood .dropdown-menu .dropdown-item:focus-visible {
  background: var(--pw-primary-soft);
  color: var(--pw-dark) !important;
  outline: 2px solid var(--pw-primary);
  outline-offset: -2px;
  border-radius: 0.35rem;
}

.navbar-playwood--on-dark .nav-link--on-dark:focus-visible,
.navbar-playwood--on-dark .dropdown-toggle:focus-visible {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12);
  outline: 2px solid var(--pw-beige);
  outline-offset: 3px;
  border-radius: 0.5rem;
}

body.pw-home .navbar-playwood--on-dark.navbar-playwood--scrolled .nav-link--on-dark:focus-visible,
body.pw-home .navbar-playwood--on-dark.navbar-playwood--scrolled .dropdown-toggle:focus-visible {
  outline-color: var(--pw-primary);
  color: #1a1918 !important;
  background: rgba(168, 116, 69, 0.12);
}

.footer-premium a:focus-visible,
.footer-premium .social-icon:focus-visible {
  outline: 2px solid var(--pw-beige);
  outline-offset: 3px;
  border-radius: 0.25rem;
}

.section-head .link-all:focus-visible {
  outline: 2px solid var(--pw-primary);
  outline-offset: 4px;
  border-radius: 0.25rem;
}

.btn-gold:focus-visible,
.btn-ff-quote:focus-visible,
.btn-ff-accent:focus-visible {
  box-shadow: var(--pw-focus-ring), 0 1px 2px rgba(22, 19, 16, 0.08);
}

.btn-ff-light:focus-visible,
.btn-ff-outline-light:focus-visible,
.btn-ff-outline-dark:focus-visible {
  outline: 2px solid var(--pw-primary);
  outline-offset: 3px;
}

.btn-outline-dark:focus-visible {
  box-shadow: var(--pw-focus-ring);
}

.filter-bar .btn-dark:focus-visible,
.pagination .page-link:focus-visible {
  outline: 2px solid var(--pw-primary);
  outline-offset: 2px;
}

.navbar-toggler:focus-visible {
  outline: 2px solid var(--pw-primary);
  outline-offset: 3px;
}

.gallery-thumb:focus-visible {
  outline: 2px solid var(--pw-primary) !important;
  outline-offset: 3px;
}

.form-panel .form-control:focus-visible,
.form-panel .form-select:focus-visible {
  outline: 2px solid var(--pw-primary);
  outline-offset: 0;
}

.card-wood:focus-within {
  border-color: rgba(176, 122, 74, 0.18);
}

/* =============================================================================
   UI polish — readable hero, imagery fallbacks, denser chrome (2026)
   ============================================================================= */

.site-main {
  overflow-x: clip;
}

.ff-hero .ff-hero__title,
.ff-hero .ff-hero__lead,
.ff-hero .ff-hero__tag {
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.ff-hero__showcase {
  isolation: isolate;
}

.ff-hero__showcase-frame {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: min(56vw, 400px);
  background:
    radial-gradient(ellipse 85% 75% at 50% 35%, rgba(168, 116, 69, 0.35), transparent 62%),
    linear-gradient(155deg, #3d3530 0%, #1c1917 55%, #0f0e0d 100%);
}

.ff-hero__showcase-main {
  min-height: min(56vw, 400px);
  max-height: 520px;
  object-fit: cover;
}

.ff-hero__showcase-main[src$=".svg"],
.ff-hero__showcase-main[src*="/assets/img/demo/"] {
  object-fit: contain !important;
  padding: clamp(0.75rem, 3vw, 1.75rem);
  background: transparent;
}

.ff-hero__showcase-chip img[src$=".svg"],
.ff-hero__showcase-chip img[src*="/assets/img/demo/"] {
  object-fit: contain !important;
  padding: 0.35rem;
}

.ff-split__media-inner img[src*="/assets/img/demo/"],
.ff-split__media-inner img[src$=".svg"] {
  object-fit: contain !important;
  padding: clamp(0.75rem, 2vw, 1.5rem);
}

.card-wood .card-img-wrap img[src*="/assets/img/demo/"],
.card-wood .card-img-wrap img[src$=".svg"] {
  object-fit: contain !important;
  padding: 0.85rem;
  background: linear-gradient(160deg, #ede6df, #d9cfc4);
}

.pw-stats-trust__card {
  border: 1px solid rgba(30, 30, 30, 0.07);
  box-shadow: 0 10px 40px rgba(30, 30, 30, 0.06);
}

.pw-stats-trust .pw-stat__num {
  color: var(--pw-primary);
}

.pw-faq .accordion-button {
  border-radius: 0.65rem !important;
  padding: 0.9rem 1.1rem;
}
.pw-faq .accordion-item {
  border: 1px solid rgba(30, 30, 30, 0.08) !important;
  box-shadow: 0 4px 18px rgba(30, 30, 30, 0.05);
}

.ff-service-card {
  border-radius: 1.15rem !important;
  border-color: rgba(30, 30, 30, 0.07) !important;
}
.ff-service-card__icon {
  width: 3.75rem !important;
  height: 3.75rem !important;
  font-size: 1.45rem !important;
}

.footer-premium {
  margin-top: 0 !important;
  padding-top: 3.25rem !important;
  padding-bottom: 2.5rem !important;
}
.footer-premium .row {
  --bs-gutter-y: 1.75rem;
}
