/* ================================
   SHOWCASE CATALOG - FABRICATION STYLE
   ================================ */

/* Ensure consistent box model */
.showcase-products *,
.showcase-products *::before,
.showcase-products *::after {
  box-sizing: border-box;
}

/* ========== HEADER SECTION ========== */
.showcase-header {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  z-index: 10;
  padding: var(--spacing-md) 0;
}

.showcase-header__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.showcase-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* ========== HERO CAROUSEL SECTION ========== */
.showcase-hero {
  position: relative;
  height: 90vh;
  min-height: 700px;
  overflow: hidden;
  margin-top: 80px;
}

.showcase-hero__carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.showcase-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.showcase-hero__slide--active {
  opacity: 0.6;
}

/* Light luxury overlay */
.showcase-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 110, 0.15) 0%,
    rgba(212, 175, 55, 0.2) 50%,
    rgba(201, 169, 110, 0.15) 100%
  );
}

/* ========== LOADING STATE ========== */
.showcase-loading {
  text-align: center;
  padding: var(--spacing-xl) 0;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
}

.showcase-loading__spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--color-gray-light);
  border-top-color: var(--color-secondary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: var(--spacing-md);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========== PRODUCTS SECTION ========== */
.showcase-products {
  padding: var(--spacing-md) 0;
  background-color: var(--color-white);
  overflow-x: hidden;
}

.products-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
  width: 100%;
  max-width: 100%;
}

/* ========== PRODUCT CARD ========== */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
  background-color: var(--color-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  max-height: 90vh;
  box-sizing: border-box;
  max-width: 100%;
}

.product-card:hover {
  box-shadow: var(--shadow-xl);
}

/* Alternate layout for odd/even cards */
.product-card:nth-child(even) {
  direction: rtl;
}

.product-card:nth-child(even) .product-card__content {
  direction: ltr;
}

/* ========== IMAGE SECTION WITH ZOOM ========== */
.product-card__image-container {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.product-card__images {
  position: relative;
  height: 100%;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--color-gray-light);
}

.product-card__main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease-out;
  transform-origin: center center;
}

/* Zoomed state */
.product-card__images.zoomed {
  cursor: zoom-out;
  z-index: 100;
}

.product-card__images.zoomed .product-card__main-image {
  transform: scale(2);
}

/* Gradient overlay */
.product-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.0) 0%, rgba(201, 169, 110, 0.0) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Unique overlay colors for each card */
.product-card:nth-child(odd) .product-card__overlay {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.0) 0%, rgba(201, 169, 110, 0.30) 100%);
}

.product-card:nth-child(even) .product-card__overlay {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.0) 0%, rgba(212, 175, 55, 0.30) 100%);
}

/* Zoom indicator icon */
.product-card__zoom-icon {
  position: absolute;
  bottom: var(--spacing-md);
  right: var(--spacing-md);
  width: 50px;
  height: 50px;
  background-color: rgba(201, 169, 110, 0.9);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.product-card__images:hover .product-card__zoom-icon {
  opacity: 1;
}

.product-card__images.zoomed .product-card__zoom-icon i::before {
  content: "\f010"; /* fa-search-minus */
}

/* ========== THUMBNAILS ========== */
.product-card__thumbnails {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  z-index: 10;
  overflow-y: auto;
  justify-content: flex-start;
}

/* Left side thumbnails (for odd cards - image on left) */
.product-card:nth-child(odd) .product-card__thumbnails {
  left: 0;
  border-radius: 0 8px 8px 0;
}

/* Right side thumbnails (for even cards - image on right) */
.product-card:nth-child(even) .product-card__thumbnails {
  right: 0;
  border-radius: 8px 0 0 8px;
}

.product-card__thumbnail {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.6;
  flex-shrink: 0;
}

.product-card__thumbnail:hover {
  opacity: 1;
  transform: scale(1.05);
}

.product-card__thumbnail.active {
  opacity: 1;
  border-color: var(--color-secondary);
}

/* Custom scrollbar for thumbnails */
.product-card__thumbnails::-webkit-scrollbar {
  width: 4px;
  height: 6px;
}

.product-card__thumbnails::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.product-card__thumbnails::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 2px;
}

.product-card__thumbnails::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* ========== CONTENT SECTION ========== */
.product-card__content {
  padding: var(--spacing-md);
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 90vh;
  position: relative;
  box-sizing: border-box;
  max-width: 100%;
}

/* Ensure smooth scrolling */
.product-card__content::-webkit-scrollbar {
  width: 6px;
}

.product-card__content::-webkit-scrollbar-track {
  background: var(--color-gray-light);
}

.product-card__content::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 3px;
}

.product-card__content::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

.product-card__title {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
  transition: var(--transition-base);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  flex-shrink: 0;
}

.product-card:hover .product-card__title {
  color: var(--color-secondary);
}

.product-card__price {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.product-card__description {
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
  flex-shrink: 0;
  overflow: visible;
  white-space: normal;
}

/* Description list style */
.product-card__description ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.product-card__description li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  overflow: visible;
  word-wrap: break-word;
}

.product-card__description li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
}

/* ========== SPECIFICATIONS ========== */
.product-card__specs {
  margin-bottom: var(--spacing-sm);
  border-top: 1px solid var(--color-gray-light);
  padding-top: var(--spacing-xs);
  flex-shrink: 0;
}

.product-card__specs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: var(--spacing-xs) 0;
  user-select: none;
}

.product-card__specs-title {
  font-size: 0.95rem;
  color: var(--color-primary);
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}

.product-card__specs-toggle {
  color: var(--color-secondary);
  font-size: 1.2rem;
  transition: transform var(--transition-base);
}

.product-card__specs.collapsed .product-card__specs-toggle {
  transform: rotate(0deg);
}

.product-card__specs.expanded .product-card__specs-toggle {
  transform: rotate(180deg);
}

.product-card__specs-list {
  display: grid;
  gap: 0.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}

.product-card__specs.expanded .product-card__specs-list {
  max-height: 800px;
  opacity: 1;
  padding-top: var(--spacing-xs);
}

.product-card__spec-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-gray-light);
  font-size: 0.9rem;
  overflow: hidden;
}

.product-card__spec-label {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.product-card__spec-value {
  color: var(--color-gray);
  font-size: 0.9rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========== COLOR OPTIONS ========== */
.product-card__options {
  margin-bottom: var(--spacing-sm);
  flex-shrink: 0;
}

.product-card__options-title {
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.product-card__colors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.showcase-color-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  flex: 0 0 auto;
}

.showcase-color-item:hover {
  background-color: var(--color-gray-light);
}

.showcase-color-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--color-gray-light);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.showcase-color-swatch:hover {
  transform: scale(1.1);
  border-color: var(--color-secondary);
}

.showcase-color-item.active .showcase-color-swatch {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.3);
}

.showcase-color-label {
  font-size: 0.85rem;
  color: var(--color-gray);
  font-weight: 500;
  transition: color 0.3s ease;
}

.showcase-color-item:hover .showcase-color-label,
.showcase-color-item.active .showcase-color-label {
  color: var(--color-primary);
}

/* ========== CALL TO ACTION ========== */
.product-card__cta {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
  margin-top: var(--spacing-xs);
  flex-shrink: 0;
  justify-content: center;
  width: 100%;
}

.product-card__cta-button {
  flex: 1;
  min-width: 160px;
  max-width: 100%;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-sizing: border-box;
}

.product-card__cta-button--primary {
  background: var(--color-secondary);
  color: var(--color-white);
}

.product-card__cta-button--primary:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.product-card__cta-button--secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.product-card__cta-button--secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ========== RESPONSIVE DESIGN ========== */
@media screen and (max-width: 968px) {
  .showcase-header {
    top: 80px;
    padding: var(--spacing-sm) 0;
  }

  .showcase-header__title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    letter-spacing: 2px;
  }

  .showcase-hero {
    height: 60vh;
    min-height: 500px;
  }

  .product-card {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;    /* ADD THIS */
    max-width: 100%;
    overflow: visible;   /* CHANGE from hidden */
  }

  .product-card:nth-child(even) {
    direction: ltr;
  }

  .product-card__image-container {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .product-card__images {
    height: auto;
    min-height: 400px;
    aspect-ratio: 4 / 3;
    position: relative;
  }

  /* Move thumbnails below image on tablet/mobile */
  .product-card__thumbnails {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;
    flex-direction: row;
    max-height: none;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border-radius: 0;
    padding: var(--spacing-sm);
    margin: 0;
    gap: 0.75rem;
  }

  .product-card__thumbnail {
    flex-shrink: 0;
  }

  .product-card:nth-child(odd) .product-card__thumbnails,
  .product-card:nth-child(even) .product-card__thumbnails {
    left: auto;
    right: auto;
    border-radius: 0;
  }

  .product-card__content {
    padding: var(--spacing-md);
    max-height: none;
    min-height: auto;
    overflow: auto;
  }
}

@media screen and (max-width: 576px) {
  .showcase-header {
    top: 60px;
    padding: var(--spacing-sm) 0;
  }

  .showcase-header__title {
    font-size: 1.25rem;
    letter-spacing: 1.5px;
  }

  .showcase-hero {
    min-height: 300px;
  }

  .product-card {
    max-height: none;
    width: 100%;
    overflow: visible;
  }

  .product-card__image-container {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    max-width: 100vw;
  }

  .product-card__images {
    height: 350px;
    min-height: 350px;
    width: 100%;
  }

  .product-card__thumbnails {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.5rem;
    padding: var(--spacing-sm);
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    position: relative !important;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    border-radius: 0 !important;
  }

  .product-card__thumbnail {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    scroll-snap-align: start;
    display: block;
  }

  .product-card__content {
    min-height: auto;
    max-height: none;
    padding: var(--spacing-sm);
    overflow: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
        -webkit-overflow-scrolling: touch;  /* ADD THIS */

  }

  .product-card__title {
    font-size: 1.3rem;
    word-wrap: break-word;
  }

  .product-card__price {
    font-size: 1.1rem;
  }

  .product-card__description {
    font-size: 0.95rem;
    white-space: normal;
    overflow: visible;
    word-wrap: break-word;
    hyphens: auto;
  }

  .product-card__zoom-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    bottom: var(--spacing-sm);
    right: var(--spacing-sm);
  }

  .showcase-color-swatch {
    width: 28px;
    height: 28px;
  }

  .showcase-color-label {
    font-size: 0.8rem;
  }

  .product-card__cta {
    justify-content: center;
    width: 100%;
  }

  .product-card__cta-button {
    min-width: auto;
    width: 90%;
    max-width: 300px;
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
  }

  .product-card__specs {
    display: block;
  }

  .product-card__specs-header {
    display: flex;
    width: 100%;
  }

  .product-card__specs-title,
  .product-card__options-title {
    font-size: 0.85rem;
  }

  .product-card__spec-item,
  .product-card__spec-label,
  .product-card__spec-value {
    font-size: 0.85rem;
  }

  .product-card__spec-item {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0.5rem;
  }

  .product-card__spec-value {
    white-space: normal;
    word-break: break-word;
  }
}

/* ========== ACCESSIBILITY ========== */
.product-card__images:focus {
  outline: 3px solid var(--color-secondary);
  outline-offset: 3px;
}

.product-card__thumbnail:focus,
.showcase-color-swatch:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.product-card__specs-header:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}



  /* ─────────────────────────────────────────
     TRUST STRIP
  ───────────────────────────────────────── */
  .trust-strip {
    background: #ffffff;
    border-top: 1px solid #e8e4df;
    border-bottom: 1px solid #e8e4df;
    padding: 64px 24px 72px;
  }

  .trust-strip__container {
    max-width: 1160px;
    margin: 0 auto;
  }

  .trust-strip__eyebrow {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #b08d68;
    margin-bottom: 10px;
  }

  .trust-strip__heading {
    text-align: center;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 600;
    color: #1a1a18;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .trust-strip__subheading {
    text-align: center;
    font-size: 1.2rem;
    color: #7a7265;
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto 52px;
    line-height: 1.7;
  }

  /* ── INDUSTRY CARDS ── */
  .trust-strip__industries {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 52px;
  }

  @media (max-width: 920px) {
    .trust-strip__industries { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 560px) {
    .trust-strip__industries { grid-template-columns: repeat(2, 1fr); }
  }

  .industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    padding: 28px 14px 24px;
    border: 1px solid #ece8e2;
    border-radius: 4px;
    background: #faf9f7;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.5s ease forwards;
  }

  .industry-card:nth-child(1) { animation-delay: 0.05s; }
  .industry-card:nth-child(2) { animation-delay: 0.12s; }
  .industry-card:nth-child(3) { animation-delay: 0.19s; }
  .industry-card:nth-child(4) { animation-delay: 0.26s; }
  .industry-card:nth-child(5) { animation-delay: 0.33s; }

  .industry-card:hover {
    border-color: #c8a97e;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    transform: translateY(-3px);
  }

  .industry-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b08d68;
  }

  .industry-card__icon svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .industry-card__label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #3a3530;
    text-align: center;
    line-height: 1.45;
  }

  /* ── DIVIDER ── */
  .trust-strip__divider {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 48px;
  }
  .trust-strip__divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd8d0, transparent);
  }
  .trust-strip__divider-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #c8a97e;
  }

  /* ── FEATURE PILLARS ── */
  .trust-strip__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
  }

  @media (max-width: 720px) {
    .trust-strip__pillars { grid-template-columns: 1fr; }
  }

  .pillar-card {
    padding: 28px 24px;
    border: 1px solid #ece8e2;
    border-radius: 4px;
    background: #faf9f7;
    transition: border-color 0.25s, box-shadow 0.2s;
  }

  .pillar-card:hover {
    border-color: #c8a97e;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  }

  .pillar-card__icon {
    width: 36px;
    height: 36px;
    color: #b08d68;
    margin-bottom: 14px;
  }

  .pillar-card__icon svg {
    width: 100%; height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .pillar-card__title {
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a18;
    margin-bottom: 8px;
  }

  .pillar-card__text {
    font-size: 0.85rem;
    font-weight: 300;
    color: #6b6460;
    line-height: 1.72;
  }

  /* ── FEATURE PILLS ── */
  .trust-strip__pills-label {
    text-align: center;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9a8c7e;
    margin-bottom: 16px;
  }

  .trust-strip__features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border: 1px solid #ddd8d0;
    border-radius: 100px;
    background: #faf9f7;
    font-size: 0.8rem;
    font-weight: 400;
    color: #4a4540;
    letter-spacing: 0.02em;
    transition: border-color 0.2s, background 0.2s;
  }

  .feature-pill:hover {
    border-color: #b08d68;
    background: #fff8f2;
  }

  .feature-pill__dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #c8a97e;
    flex-shrink: 0;
  }

  /* ── BRAND PROMISE BANNER ── */
  .trust-strip__promise {
    margin-top: 52px;
    padding: 36px 40px;
    background: #1a1a18;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }

  @media (max-width: 640px) {
    .trust-strip__promise { padding: 28px 24px; }
  }

  .promise__text { flex: 1; min-width: 240px; }

  .promise__label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c8a97e;
    margin-bottom: 8px;
  }

  .promise__heading {
    font-family: 'Crimson Text', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 600;
    color: #f5f4f1;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .promise__body {
    font-size: 0.85rem;
    font-weight: 300;
    color: #a09890;
    line-height: 1.72;
    max-width: 520px;
  }

  .promise__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: #c8a97e;
    color: #1a1a18;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
  }

  .promise__cta:hover {
    background: #b8996e;
    transform: translateY(-1px);
  }

  .promise__cta svg {
    width: 14px; height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

/* ========== TRUST STRIP SECTION ========== */
.trust-strip {
  background: #ffffff;
  border-top: 1px solid #e8e4df;
  border-bottom: 1px solid #e8e4df;
  padding: 64px 24px 72px;
}

.trust-strip__container {
  max-width: 1160px;
  margin: 0 auto;
}

.trust-strip__eyebrow {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b08d68;
  margin-bottom: 10px;
}

.trust-strip__heading {
  text-align: center;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  color: #1a1a18;
  line-height: 1.2;
  margin-bottom: 8px;
}

.trust-strip__subheading {
  text-align: center;
  font-size: 0.93rem;
  color: #7a7265;
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

/* Industry Cards */
.trust-strip__industries {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 52px;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding: 28px 14px 24px;
  border: 1px solid #ece8e2;
  border-radius: 4px;
  background: #faf9f7;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.5s ease forwards;
}

.industry-card:nth-child(1) { animation-delay: 0.05s; }
.industry-card:nth-child(2) { animation-delay: 0.12s; }
.industry-card:nth-child(3) { animation-delay: 0.19s; }
.industry-card:nth-child(4) { animation-delay: 0.26s; }
.industry-card:nth-child(5) { animation-delay: 0.33s; }

.industry-card:hover {
  border-color: #c8a97e;
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.industry-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b08d68;
}

.industry-card__icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-card__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #3a3530;
  text-align: center;
  line-height: 1.45;
}

/* Divider */
.trust-strip__divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
}

.trust-strip__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #ddd8d0, transparent);
}

.trust-strip__divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8a97e;
}

/* Feature Pillars */
.trust-strip__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.pillar-card {
  padding: 28px 24px;
  border: 1px solid #ece8e2;
  border-radius: 4px;
  background: #faf9f7;
  transition: border-color 0.25s, box-shadow 0.2s;
}

.pillar-card:hover {
  border-color: #c8a97e;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.pillar-card__icon {
  width: 36px;
  height: 36px;
  color: #b08d68;
  margin-bottom: 14px;
}

.pillar-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-card__title {
  font-family: 'Crimson Text', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a18;
  margin-bottom: 8px;
}

.pillar-card__text {
  font-size: 0.85rem;
  font-weight: 300;
  color: #6b6460;
  line-height: 1.72;
}

/* Feature Pills */
.trust-strip__pills-label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a8c7e;
  margin-bottom: 16px;
}

.trust-strip__features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid #ddd8d0;
  border-radius: 100px;
  background: #faf9f7;
  font-size: 0.8rem;
  font-weight: 400;
  color: #4a4540;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, background 0.2s;
}

.feature-pill:hover {
  border-color: #b08d68;
  background: #fff8f2;
}

.feature-pill__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c8a97e;
  flex-shrink: 0;
}

/* Trust Strip Animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust Strip Responsive */
@media screen and (max-width: 920px) {
  .trust-strip__industries {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 720px) {
  .trust-strip__pillars {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 560px) {
  .trust-strip {
    padding: 40px 16px 48px;
  }
  .trust-strip__industries {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-strip__subheading {
    margin-bottom: 32px;
  }
}