/* ============================================
   LiquaDry — Premium Artisan Botanical Powders
   High-quality, craft aesthetic with Utah heritage
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px; /* 36px language bar + 80px nav */
}

body {
  font-family: "Georgia", "Times New Roman", "Palatino Linotype", serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a2e23;
  background-color: #fafaf7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* --- Typography Helpers --- */
h1, h2, h3, h4, h5, h6 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #1a3c2a;
  color: #ffffff;
  border-color: #1a3c2a;
}

.btn-primary:hover {
  background-color: #0f2519;
  border-color: #0f2519;
}

.btn-outline {
  background-color: transparent;
  color: #1a3c2a;
  border-color: #1a3c2a;
}

.btn-outline:hover {
  background-color: #1a3c2a;
  color: #ffffff;
}

.btn-white {
  background-color: #ffffff;
  color: #1a3c2a;
  border-color: #ffffff;
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: #1a3c2a;
  border-color: #ffffff;
}

/* --- Section Tag --- */
.section-tag {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2d6a4f;
  margin-bottom: 16px;
}

/* --- Language Bar --- */
.language-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background-color: #1a3c2a;
  height: 36px;
}

.language-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.language-selector {
  position: relative;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.language-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.language-btn svg {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}

.language-btn .arrow {
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease;
}

.language-selector.open .language-btn .arrow {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}

.language-selector.open .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  color: #1a2e23;
  transition: background 0.2s ease;
}

.language-option:first-child {
  border-radius: 4px 4px 0 0;
}

.language-option:last-child {
  border-radius: 0 0 4px 4px;
}

.language-option:hover {
  background: #f5f5f0;
}

.language-option.active {
  background: #f0f7f4;
  color: #1a3c2a;
  font-weight: 600;
}

.language-option .flag {
  font-size: 16px;
  line-height: 1;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(250, 250, 247, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 46, 35, 0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #1a2e23;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #2d6a4f;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background-color: #1a3c2a;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.nav-btn:hover {
  background-color: #0f2519;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1a2e23;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero — Full-Width Cinematic --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(15, 37, 25, 0.55) 0%,
    rgba(15, 37, 25, 0.7) 50%,
    rgba(15, 37, 25, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 120px 5% 80px;
}

.hero-tag {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-heading {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-stat-number {
  font-family: "Georgia", serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.hero-stat-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Trust Bar --- */
.trust-bar {
  background-color: #f5f5f0;
  padding: 32px 5%;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(0, 0, 0, 0.6);
  white-space: nowrap;
}

.trust-item svg {
  opacity: 0.6;
}

.cert-logo {
  height: 60px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}

.cert-logo:hover {
  transform: scale(1.08);
  opacity: 1;
}

/* --- Sections --- */
.section {
  padding: 120px 5%;
}

.section-white {
  background-color: #ffffff;
}

.section-light {
  background-color: #f5f5f0;
}

.section-why {
  background-image: linear-gradient(to bottom, rgba(245, 245, 240, 0.85), rgba(245, 245, 240, 0.85)), url('../images/20210624_195757.jpg');
  background-size: cover;
  background-position: center;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header-left {
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}

.section-header-desc {
  max-width: 400px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(26, 46, 35, 0.55);
  text-align: right;
}

.section-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #1a2e23;
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 560px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(26, 46, 35, 0.55);
}

/* --- Product Filters --- */
.product-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(26, 46, 35, 0.6);
  background-color: transparent;
  border: 1px solid rgba(26, 46, 35, 0.12);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  color: #1a3c2a;
  border-color: rgba(26, 46, 35, 0.3);
}

.filter-btn.active {
  background-color: #1a3c2a;
  color: #ffffff;
  border-color: #1a3c2a;
}

/* --- Products Grid --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  display: block;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(26, 46, 35, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26, 46, 35, 0.12);
}

.product-card.hidden {
  display: none;
}

.product-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: rgba(26, 60, 42, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 2px;
}

.product-info {
  padding: 24px;
}

.product-category {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2d6a4f;
  margin-bottom: 8px;
}

.product-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a2e23;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26, 46, 35, 0.55);
  margin-bottom: 16px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.product-tag {
  padding: 3px 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #2d6a4f;
  background-color: rgba(45, 106, 79, 0.08);
  border-radius: 2px;
}

.product-cta {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #1a3c2a;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.product-cta:hover {
  color: #2d6a4f;
  letter-spacing: 1px;
}

/* --- Video Container --- */
.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 60px auto;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(26, 46, 35, 0.12);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Process Grid --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process-card {
  background-color: #f5f5f0;
  border-radius: 4px;
  padding: 48px 36px;
  border: 1px solid rgba(26, 46, 35, 0.06);
  transition: box-shadow 0.3s ease;
}

.process-card:hover {
  box-shadow: 0 8px 32px rgba(26, 46, 35, 0.06);
}

.process-card-harvest {
  background-image: linear-gradient(to bottom, rgba(245, 245, 240, 0.85), rgba(245, 245, 240, 0.85)), url('../images/20210624_195757.jpg');
  background-size: cover;
  background-position: center;
}

.process-card-drying {
  background-image: linear-gradient(to bottom, rgba(245, 245, 240, 0.85), rgba(245, 245, 240, 0.85)), url('../images/20240214_144213.jpg');
  background-size: cover;
  background-position: center;
}

.process-card-powder {
  background-image: linear-gradient(to bottom, rgba(245, 245, 240, 0.85), rgba(245, 245, 240, 0.85)), url('../images/DSC_0058.JPG');
  background-size: cover;
  background-position: center;
}

.process-number {
  font-family: "Georgia", serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(26, 60, 42, 0.25);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}

.process-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a2e23;
  margin-bottom: 12px;
}

.process-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(26, 46, 35, 0.85);
}

/* --- Why Grid --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background-color: #1a3c2a;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.why-item-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a2e23;
  margin-bottom: 8px;
}

.why-item-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(26, 46, 35, 0.55);
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: 140px 5%;
  background-color: #1a3c2a;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-heading {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* --- Footer --- */
.footer {
  background-color: #0f2519;
  padding: 80px 5% 0;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
  max-width: 300px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.footer-link {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

a.footer-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copyright {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.3px;
}


/* ============================================
   Responsive
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-heading {
    font-size: 44px;
  }

  .hero-stats {
    gap: 32px;
  }

  .hero-stat-number {
    font-size: 26px;
  }

  .section-header-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .section-header-desc {
    text-align: left;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .section-title {
    font-size: 36px;
  }

  .cta-heading {
    font-size: 36px;
  }

  .section {
    padding: 80px 5%;
  }
}


/* Mobile */
@media (max-width: 640px) {
  .language-bar {
    height: 32px;
  }

  .language-btn {
    padding: 4px 10px;
    font-size: 11px;
  }

  .nav {
    top: 32px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #fafaf7;
    flex-direction: column;
    padding: 120px 32px 32px;
    gap: 24px;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-content {
    padding: 120px 5% 60px;
  }

  .hero-heading {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .hero-stat-number {
    font-size: 24px;
  }

  .trust-bar-inner {
    gap: 16px;
  }

  .trust-item {
    font-size: 11px;
  }

  .cert-logo {
    height: 50px;
    max-width: 80px;
  }

  .section {
    padding: 60px 5%;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .product-filters {
    gap: 6px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .video-container {
    margin-bottom: 40px;
  }

  .cta-section {
    padding: 80px 5%;
  }

  .cta-heading {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Mobile - Product Pages */
}
/* --- YouTube Facade --- */
.yt-facade {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #000;
}
.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.2s;
  display: block;
}
.yt-facade:hover img { opacity: 1; }
.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
  transition: transform 0.15s;
}
.yt-facade:hover .yt-play-btn { transform: translate(-50%, -50%) scale(1.1); }
.yt-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
