/**
 * =============================================================================
 * NEXUS LIVING HUB — 2BHK SERVICE PAGE STYLES
 * services/2bhk-interior-design-bangalore/assets/css/2bhk.css
 *
 * Page accent: var(--color-terracotta) — warm, compact-home energy
 * Hero: full-width gradient overlay (distinct from services landing split)
 * Sections: room-by-room cards, tier cards, material cards, FAQ, terracotta CTA
 *
 * Imports: ../../style-tokens.css (via HTML link order)
 * Shared: ../../global.css
 * =============================================================================
 */

/* =============================================================================
   00. NAV — Force Solid (light page background)
   Ensures nav text is dark/readable from load on this cream-bg page.
   ============================================================================= */

.nav--force-solid {
  background-color: var(--color-bg-primary) !important;
  box-shadow: var(--shadow-nav) !important;
}

.nav--force-solid .site-nav__logo-text,
.nav--force-solid .site-nav__link {
  color: var(--color-accent-dark) !important;
}

.nav--force-solid .site-nav__hamburger span {
  background-color: var(--color-accent-dark) !important;
}

.nav--force-solid .site-nav__logo-mark {
  color: var(--color-accent-dark);
}


/* =============================================================================
   01. HERO — Full-width gradient overlay (50vh, distinct from split treatment)
   Gradient flows from left (dark espresso) to right (transparent on cream).
   Content is centre-right aligned with breadcrumb above H1.
   ============================================================================= */

.bhk2-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-2xl);
  overflow: hidden;
  background-color: var(--color-accent-dark);
}

/* Warm grain texture overlay */
.bhk2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23g)' opacity='0.045'/%3E%3C/svg%3E");
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
}

/* Gradient overlay — dark left, fades to warm right edge */
.bhk2-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(28, 28, 28, 0.82) 0%,
    rgba(74, 55, 40, 0.60) 50%,
    rgba(200, 121, 65, 0.18) 100%
  );
  z-index: 2;
}

.bhk2-hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(72px + var(--space-2xl)) var(--space-sm) var(--space-md);
}

@media (min-width: 768px) {
  .bhk2-hero__container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
}

@media (min-width: 1280px) {
  .bhk2-hero__container {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Breadcrumb — white on dark */
.bhk2-hero .breadcrumb {
  margin-bottom: var(--space-sm);
}

.bhk2-hero .breadcrumb a,
.bhk2-hero .breadcrumb__separator,
.bhk2-hero .breadcrumb__current {
  color: rgba(245, 240, 232, 0.65);
}

.bhk2-hero .breadcrumb a:hover {
  color: var(--color-accent-gold);
}

/* H1 */
.bhk2-hero__title {
  font-family: var(--font-display);
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-inverse);
  margin: 0 0 var(--space-md);
  max-width: 640px;
}

.bhk2-hero__title em {
  font-style: italic;
  color: var(--color-terracotta);
}

/* Sub-text */
.bhk2-hero__sub {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.85);
  max-width: 540px;
  margin: 0 0 var(--space-lg);
}

/* CTA + trust micro-badges */
.bhk2-hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-start;
}

@media (min-width: 480px) {
  .bhk2-hero__cta-group {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
  }
}

.bhk2-hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  margin-top: var(--space-sm);
}

.bhk2-hero__trust-badge {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: var(--tracking-small);
  color: rgba(245, 240, 232, 0.6);
  display: flex;
  align-items: center;
  gap: 5px;
}

.bhk2-hero__trust-badge::before {
  content: '✦';
  color: var(--color-terracotta);
  font-size: 0.625rem;
}


/* =============================================================================
   02. WHAT'S INCLUDED — Room-by-room card grid
   Terracotta left-border accent on each card (distinct from homepage icon grid
   and services landing horizontal strips)
   ============================================================================= */

.room-grid-section {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-card);
}

.room-grid-section .section-header {
  margin-bottom: var(--space-xl);
}

.room-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .room-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .room-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.room-card {
  background: var(--color-bg-primary);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-terracotta);
  box-shadow: var(--shadow-card);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.room-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(200, 121, 65, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xs);
  flex-shrink: 0;
}

.room-card__icon-wrap i {
  font-size: 1.25rem;
  color: var(--color-terracotta);
}

.room-card__room {
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  color: var(--color-terracotta);
}

.room-card__title {
  font-family: var(--font-heading);
  font-size: var(--h4-size);
  font-weight: 600;
  color: var(--color-accent-dark);
  margin: 0;
  line-height: 1.25;
}

.room-card__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

/* Utility card spans full width on desktop (last item in a 3-col grid) */
@media (min-width: 1024px) {
  .room-card--utility {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 48px auto 1fr;
    gap: var(--space-md);
    align-items: start;
  }

  .room-card--utility .room-card__icon-wrap {
    margin-bottom: 0;
    grid-row: span 3;
  }

  .room-card--utility .room-card__desc {
    grid-column: 2 / 4;
  }
}


/* =============================================================================
   03. PACKAGE TIER CARDS
   3-col grid. "Most Chosen" Premium card is elevated with gold border.
   ============================================================================= */

.tier-section {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-primary);
}

.tier-section .section-header {
  margin-bottom: var(--space-xl);
}

.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 768px) {
  .tier-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .tier-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.tier-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Premium card — elevated */
.tier-card--premium {
  border: 2px solid var(--color-accent-gold);
  box-shadow: 0 8px 40px rgba(201, 169, 110, 0.18);
  z-index: 1;
}

@media (min-width: 1024px) {
  .tier-card--premium {
    transform: translateY(-8px);
  }
  .tier-card--premium:hover {
    transform: translateY(-14px);
  }
}

/* Most Chosen ribbon */
.tier-card__ribbon {
  position: absolute;
  top: -1px;
  right: var(--space-lg);
  background: var(--color-accent-gold);
  color: var(--color-bg-primary);
  font-family: var(--font-accent);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* Tier badge pill */
.tier-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  width: fit-content;
}

.tier-badge--essential {
  background: var(--color-accent-green);
  color: var(--color-text-inverse);
}

.tier-badge--premium {
  background: var(--color-accent-gold);
  color: var(--color-text-inverse);
}

.tier-badge--elite {
  background: var(--color-accent-dark);
  color: var(--color-ivory);
}

/* Tier name */
.tier-card__name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  margin: 0;
  line-height: 1.15;
}

/* Tier subtitle */
.tier-card__subtitle {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Description */
.tier-card__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin: 0;
  padding-top: var(--space-xs);
  border-top: 1px solid var(--color-border);
}

/* Feature list */
.tier-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.tier-card__features li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.tier-card__features li::before {
  content: '✓';
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--color-accent-green);
  flex-shrink: 0;
  margin-top: 1px;
}

/* CTA at bottom of tier card */
.tier-card__cta {
  margin-top: auto;
  padding-top: var(--space-sm);
}

.tier-card__cta .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}


/* =============================================================================
   04. MATERIAL FINISHES — Educational cards with texture placeholders
   ============================================================================= */

.materials-section {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-card);
}

.materials-section .section-header {
  margin-bottom: var(--space-xl);
}

.materials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .materials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .materials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.material-card {
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.material-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Visual texture area */
.material-card__visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Laminate — wood-grain CSS */
.material-card__visual--laminate {
  background-color: var(--color-linen);
  background-image:
    repeating-linear-gradient(
      92deg,
      transparent 0,
      transparent 18px,
      rgba(180, 155, 120, 0.15) 18px,
      rgba(180, 155, 120, 0.15) 20px
    ),
    repeating-linear-gradient(
      88deg,
      transparent 0,
      transparent 60px,
      rgba(180, 155, 120, 0.08) 60px,
      rgba(180, 155, 120, 0.08) 62px
    );
}

/* Acrylic — gloss reflection */
.material-card__visual--acrylic {
  background: linear-gradient(
    135deg,
    var(--color-blush) 0%,
    rgba(232, 213, 196, 0.4) 40%,
    rgba(255, 248, 243, 0.9) 55%,
    rgba(232, 213, 196, 0.5) 70%,
    var(--color-blush) 100%
  );
}

/* Veneer/PU — dark rich wood */
.material-card__visual--veneer {
  background-color: var(--color-accent-dark);
  background-image:
    repeating-linear-gradient(
      95deg,
      transparent 0,
      transparent 24px,
      rgba(255, 255, 255, 0.04) 24px,
      rgba(255, 255, 255, 0.04) 26px
    );
}

.material-card__visual-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.material-card__visual-label i {
  font-size: 2rem;
  opacity: 0.35;
}

.material-card--laminate .material-card__visual-label i {
  color: var(--color-accent-dark);
}
.material-card--acrylic .material-card__visual-label i {
  color: var(--color-terracotta);
}
.material-card--veneer .material-card__visual-label i {
  color: var(--color-ivory);
}

/* Card body */
.material-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.material-card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  margin: 0;
}

.material-card__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin: 0;
}

.material-card__tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: var(--tracking-small);
  color: var(--color-terracotta);
  background: rgba(200, 121, 65, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-top: var(--space-xs);
  width: fit-content;
}


/* =============================================================================
   05. FEATURED PROJECTS SECTION
   Standard project card grid — same component, unique section header
   ============================================================================= */

.projects-preview-section {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-primary);
}

.projects-preview-section .section-header {
  margin-bottom: var(--space-xl);
}

.projects-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .projects-preview-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .projects-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-preview-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.project-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.project-preview-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: var(--color-linen);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.project-preview-card__img i {
  font-size: 2.5rem;
  color: var(--color-accent-gold);
  opacity: 0.4;
}

.project-preview-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 31, 20, 0.18) 0%, transparent 50%);
}

.project-preview-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  flex-grow: 1;
}

.project-preview-card__badge {
  width: fit-content;
}

.project-preview-card__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  margin: 0;
  line-height: 1.35;
}

.project-preview-card__location {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin: 0;
}

.project-preview-card__link {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: var(--tracking-small);
  color: var(--color-terracotta);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: var(--space-xs);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.project-preview-card__link:hover {
  gap: 9px;
  color: var(--color-accent-dark);
}

.projects-preview__cta-row {
  text-align: center;
  margin-top: var(--space-xl);
}


/* =============================================================================
   06. FAQ ACCORDION
   Max-width 800px centered. Terracotta icon accent on open state.
   ============================================================================= */

.faq-section-2bhk {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-card);
}

.faq-section-2bhk .section-header {
  margin-bottom: var(--space-xl);
}

.faq-section-2bhk .faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.faq-section-2bhk .faq-item {
  background: var(--color-bg-primary);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq-section-2bhk .faq-item.open {
  box-shadow: var(--shadow-card);
  border-color: var(--color-terracotta);
}

.faq-section-2bhk .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  text-align: left;
  gap: var(--space-md);
  transition: background var(--transition-fast);
}

.faq-section-2bhk .faq-question:hover {
  background: rgba(200, 121, 65, 0.04);
}

.faq-section-2bhk .faq-question__text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  line-height: 1.4;
}

.faq-section-2bhk .faq-question__icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: rgba(200, 121, 65, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--color-terracotta);
  font-weight: 400;
  line-height: 1;
  transition: transform var(--transition-base), background var(--transition-base);
}

.faq-section-2bhk .faq-item.open .faq-question__icon {
  transform: rotate(45deg);
  background: var(--color-terracotta);
  color: var(--color-text-inverse);
}

.faq-section-2bhk .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-section-2bhk .faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-section-2bhk .faq-answer__inner {
  padding: 0 var(--space-lg) var(--space-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}


/* =============================================================================
   07. CTA SECTION — Terracotta background, white text
   ============================================================================= */

.bhk2-cta-section {
  padding: var(--space-2xl) 0;
  background-color: var(--color-terracotta);
  text-align: center;
}

.bhk2-cta-section__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.bhk2-cta-section__title {
  font-family: var(--font-heading);
  font-size: var(--h2-size);
  font-weight: 700;
  color: var(--color-text-inverse);
  margin: 0;
  line-height: 1.2;
}

.bhk2-cta-section__sub {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: rgba(245, 240, 232, 0.88);
  margin: 0;
  line-height: 1.7;
}

.bhk2-cta-section__btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  align-items: center;
}

/* Primary button on terracotta: use ivory bg with charcoal text for contrast */
.bhk2-cta-section .btn-primary {
  background: var(--color-text-inverse);
  color: var(--color-accent-dark);
  border-color: transparent;
}

.bhk2-cta-section .btn-primary:hover {
  background: var(--color-ivory);
  color: var(--color-walnut);
}

/* Ghost button on terracotta: ivory border */
.bhk2-cta-section .btn-ghost {
  color: var(--color-text-inverse);
  border-color: rgba(245, 240, 232, 0.7);
}

.bhk2-cta-section .btn-ghost:hover {
  background: rgba(245, 240, 232, 0.15);
  border-color: var(--color-text-inverse);
}


/* =============================================================================
   08. SECTION HEADER OVERRIDES — Centred headers throughout page
   ============================================================================= */

.bhk2-page .section-header {
  text-align: center;
}

.bhk2-page .section-header h2 {
  font-family: var(--font-heading);
  font-size: var(--h2-size);
  font-weight: 700;
  color: var(--color-accent-dark);
  margin: var(--space-xs) 0;
}

.bhk2-page .section-header p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

.bhk2-page .section-header .overline {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  color: var(--color-terracotta);
}

.bhk2-page .section-header .heading-accent {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-terracotta);
  margin: var(--space-xs) auto var(--space-sm);
  border-radius: 2px;
}


/* =============================================================================
   09. RESPONSIVE UTILITIES
   ============================================================================= */

@media (min-width: 768px) {
  .room-grid-section,
  .tier-section,
  .materials-section,
  .projects-preview-section,
  .faq-section-2bhk,
  .bhk2-cta-section {
    padding: var(--space-2xl) 0;
  }
}

@media (min-width: 1280px) {
  .room-grid-section,
  .tier-section,
  .materials-section,
  .projects-preview-section,
  .faq-section-2bhk,
  .bhk2-cta-section {
    padding: var(--space-3xl) 0;
  }
}


/* =============================================================================
   10. REDUCED MOTION — global.css handles the kill-switch; this file
   ensures no page-specific transitions break that contract.
   ============================================================================= */

@media (prefers-reduced-motion: reduce) {
  .bhk2-hero::before,
  .bhk2-hero::after {
    animation: none;
  }

  .room-card,
  .tier-card,
  .material-card,
  .project-preview-card {
    transition: none;
  }
}
