/* CSS Variables based on DESIGN.md */
:root {
  --surface: #F1F5F9; /* Increased contrast (Slate 100) */
  --surface-container-low: #E2E8F0; /* Slate 200 */
  --surface-container: #CBD5E1; /* Slate 300 */
  --canvas-white: #FFFFFF;
  --pure-white: #FFFFFF;
  
  --deep-teal: #0F172A; /* Midnight Slate */
  --heritage-gold: #C4A484; /* Taupe Gold */
  --charcoal-textile: #475569;
  --on-surface: #1E293B;
  --outline-light: rgba(15, 23, 42, 0.1);
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --font-label: 'Outfit', sans-serif;

  --container-max: 1280px;
  --margin-desktop: 64px;
}

/* Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  position: relative;
}

body {
  font-family: var(--font-sans);
  background-color: var(--canvas-white);
  color: var(--on-surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, opacity 0.3s ease;
}

/* Utility Classes */
.surface-bg { background-color: var(--surface); }
.canvas-bg { background-color: var(--canvas-white); }
.text-deep-teal { color: var(--deep-teal); }
.text-charcoal { color: var(--charcoal-textile); }
.text-heritage-gold { color: var(--heritage-gold); }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-64 { margin-top: 64px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-64 { margin-bottom: 64px; }

.w-full { width: 100%; }
.block { display: block; }
.text-center { text-align: center; }

.section-padding {
  padding-top: 64px;
  padding-bottom: 64px;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Typography */
.display-lg {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 500; /* refined weight for luxury */
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--deep-teal);
}

.headline-lg {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--deep-teal);
}

.headline-md {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--deep-teal);
}

.headline-sm {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--deep-teal);
}

.body-lg {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.body-md {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.body-sm {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.label-lg {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.label-md {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.highlight { color: #8A6538; /* Darker gold for accessibility contrast */ }

/* Layout Utilities */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--margin-desktop);
  padding-right: var(--margin-desktop);
}

/* Navbar - Glassmorphism applied */
.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.home-navbar {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  position: fixed;
  width: 100%;
}

.home-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: none;
  box-shadow: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--deep-teal);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--deep-teal);
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle svg {
  width: 28px;
  height: 28px;
}

.nav-links a {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal-textile);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--deep-teal);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--heritage-gold);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 8px; /* Softer radius */
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--deep-teal);
  color: var(--pure-white);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.btn-primary:hover {
  background-color: var(--heritage-gold);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--deep-teal);
  border: 1px solid var(--outline-light);
}

.btn-secondary:hover {
  background-color: var(--surface);
  border-color: var(--heritage-gold);
  color: var(--heritage-gold);
}

/* Grid Background */
.grid-background {
  background-color: var(--surface);
  background-image: 
    linear-gradient(to right, rgba(15, 23, 42, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  border-bottom: 1px solid var(--outline-light);
  padding-bottom: 120px;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  margin-top: 64px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--surface-container-low);
  color: var(--charcoal-textile);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid var(--outline-light);
}

.hero-text {
  color: var(--charcoal-textile);
  margin-top: 24px;
  margin-bottom: 48px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
}

.hero-image-offset {
  position: absolute;
  top: 24px;
  right: -24px;
  bottom: -24px;
  left: 24px;
  background-color: var(--surface-container);
  border-radius: 16px;
  z-index: 0;
}

.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

/* Cards & Grids */
.card {
  background: linear-gradient(145deg, #ffffff, #fafafa);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.02);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.features-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-img-wrapper {
  overflow: hidden;
}

.product-img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  height: auto;
  object-fit: cover;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-actions {
  margin-top: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group:last-of-type {
  margin-bottom: 24px;
}

.form-control {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 16px;
  border: 1px solid var(--outline-light);
  border-radius: 8px;
  background-color: var(--canvas-white);
  color: var(--on-surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--heritage-gold);
  box-shadow: 0 0 0 3px rgba(196, 164, 132, 0.15);
}

/* Footer */
.site-footer {
  background-color: #1E293B; /* One shade lighter than deep-teal */
  color: var(--pure-white);
  padding-top: 80px;
  padding-bottom: 24px;
}

.site-footer .text-charcoal {
  color: #94A3B8; /* Light slate for dark bg */
}

.site-footer .logo-text, .site-footer .label-lg {
  color: var(--heritage-gold);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand {
  max-width: 320px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.link-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-column a {
  color: #E2E8F0;
}

.link-column a:hover {
  color: var(--heritage-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--outline-light);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 32px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question:hover .headline-sm {
  color: var(--heritage-gold);
}

.faq-icon {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 300;
  color: var(--deep-teal);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--heritage-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 32px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero, .about-container, .contact-container {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  
  .features-grid-3, .product-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    flex-direction: column;
  }

  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
    position: relative;
    z-index: 1001;
  }
  
  .navbar {
    position: relative;
    flex-wrap: nowrap;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 80vw;
    height: 100vh;
    background-color: var(--pure-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
    display: flex;
  }

  .nav-links.active {
    transform: translateX(0);
    visibility: visible;
  }
}

@media (max-width: 768px) {
  :root {
    --margin-desktop: 24px;
  }
  
  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .display-lg {
    font-size: 40px;
    line-height: 1.2;
  }
  
  .hero-image-offset {
    top: 12px;
    right: 0;
    bottom: -12px;
    left: 12px;
  }
  
  .features-grid-3, .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .hero-actions {
    flex-direction: column;
  }

  .footer-container {
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }
}

/* Page Hero Components */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  text-align: center;
  margin-bottom: 64px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.75); /* Dark teal overlay */
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.text-pure-white {
  color: var(--pure-white) !important;
}

.opacity-80 {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 80px 0;
    margin-bottom: 32px;
  }
}

/* Background image hero keeping grid-background dimensions */
.hero-image-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.hero-image-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.7);
  z-index: 1;
}

.hero-image-bg > * {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-image-bg .label-md,
.hero-image-bg .label-lg,
.hero-image-bg .story-tag {
  font-family: var(--font-label);
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  color: var(--heritage-gold);
}

/* Inner Page Uniform Hero */
.inner-hero {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0 !important;
}


/* Our Teams Styles */
.team-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background-color: var(--surface-container);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-serif);
      font-size: 24px;
      font-weight: 600;
      color: var(--deep-teal);
      margin-bottom: 16px;
    }
    .leadership-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }
    .leader-card {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    @media (max-width: 1024px) {
      .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      .leadership-grid {
        grid-template-columns: 1fr;
      }
    }

/* Hide scrollbar completely to remove sidescroller */
body::-webkit-scrollbar {
  display: none;
}
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Aggressively Hide scrollbars across the entire site */
html::-webkit-scrollbar, body::-webkit-scrollbar, *::-webkit-scrollbar {
  display: none !important;
}
html, body, * {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

/* Icon Card Styles */
.icon-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.icon-card {
  width: 100%;
  max-width: 340px;
  background: linear-gradient(145deg, #ffffff, #fafafa);
  border-top: 4px solid var(--heritage-gold);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}
.icon-card .icon-wrapper {
  margin-bottom: 20px;
  color: #728271; /* Subtle sage green to match reference image */
}
.icon-card svg {
  width: 56px;
  height: 56px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Timeline Styles */
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding: 40px 0; }
.timeline::after { content: ''; position: absolute; width: 2px; background-color: #cbd5e1; top: 60px; bottom: 60px; left: 50%; margin-left: -1px; }
.timeline-item { padding: 20px 40px; position: relative; width: 50%; box-sizing: border-box; }
.timeline-item.right { left: 50%; }
.timeline-item.left { left: 0; }
.timeline-center { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background-color: #647466; border-radius: 50%; color: #fff; display: flex; justify-content: center; align-items: center; font-weight: 600; font-family: var(--font-label); z-index: 2; font-size: 16px; border: 4px solid #F1F5F9; }
.timeline-item.right .timeline-center { left: -24px; }
.timeline-item.left .timeline-center { right: -24px; }
.timeline-content { display: flex; align-items: center; gap: 16px; position: relative; }
.timeline-item.left .timeline-content { flex-direction: row-reverse; text-align: right; }
.timeline-content::before { content: ''; position: absolute; top: 50%; width: 40px; height: 2px; background-color: #cbd5e1; z-index: 0; }
.timeline-item.right .timeline-content::before { left: -40px; }
.timeline-item.left .timeline-content::before { right: -40px; }
.timeline-icon { width: 56px; height: 56px; background-color: #e2e8e4; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: #647466; flex-shrink: 0; z-index: 1; }
.timeline-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.timeline-text { flex: 1; }
.timeline-text .headline-sm { font-size: 20px; }
@media (max-width: 768px) { .timeline::after { left: 24px; } .timeline-item { width: 100%; padding-left: 70px; padding-right: 20px; } .timeline-item.right, .timeline-item.left { left: 0; } .timeline-item.left .timeline-center, .timeline-item.right .timeline-center { left: 0; right: auto; } .timeline-item.left .timeline-content { flex-direction: row; text-align: left; } .timeline-item.left .timeline-content::before { left: -40px; right: auto; } }

/* Color Feature Cards */
.color-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .color-cards-grid { grid-template-columns: 1fr; gap: 16px; } }
.color-card { border-radius: 12px; padding: 40px 32px; color: #fff; display: flex; flex-direction: column; gap: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.color-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1); }
.color-card.bg-dark-olive { background-color: #5b7159; }
.color-card.bg-brown { background-color: #986a4e; }
.color-card.bg-light-olive { background-color: #7d9162; }
.color-card-header { display: flex; align-items: center; gap: 12px; font-family: var(--font-headline); font-size: 20px; font-weight: 600; }
.color-card-header svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.color-card-text { font-family: var(--font-body); font-size: 24px; line-height: 1.4; font-weight: 600; letter-spacing: -0.02em; }

/* Category Header (Products Page) */
.category-header {
  padding: 16px 0 32px 0;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--outline-light);
  position: relative;
}
.category-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--heritage-gold);
}

/* Product Masonry */
.product-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; height: 500px; }
.masonry-col { display: flex; flex-direction: column; gap: 24px; height: 100%; }
.masonry-item { position: relative; border-radius: 12px; overflow: hidden; flex: 1; }
.masonry-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 24px 24px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: #fff; font-family: var(--font-headline); font-size: 24px; font-weight: 500; pointer-events: none; }
@media (max-width: 900px) { .product-masonry { grid-template-columns: 1fr; height: auto; } .masonry-col { height: 400px; } }

/* Product Collage Grid */
.product-collage-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 220px); gap: 16px; max-width: 1000px; margin: 64px auto 0; }
.collage-item { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08); }
.collage-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.collage-item:hover img { transform: scale(1.05); }
.collage-item-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 24px 24px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: white; font-family: var(--font-headline); font-size: 22px; font-weight: 500; }
.collage-tall { grid-row: span 2; }
@media (max-width: 900px) { .product-collage-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; } .collage-tall { grid-row: auto; height: 260px; } .collage-item:not(.collage-tall) { height: 200px; } }
@media (max-width: 600px) { .product-collage-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } .collage-tall { height: 200px; } .collage-item:not(.collage-tall) { height: 160px; } }

/* Scroll Animations */
.animate-hidden { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform; }
.animate-in { opacity: 1; transform: translateY(0); }

/* Testimonial Cards */
.testimonial-card { display: flex; flex-direction: column; justify-content: space-between; border-top: 4px solid #956B52; box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05); transition: transform 0.3s ease; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08); }
.testimonial-stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; }
.testimonial-quote-icon { font-family: serif; font-size: 48px; color: #cbd5e1; line-height: 1; height: 24px; margin-bottom: 8px; }
.testimonial-author { border-top: 1px solid var(--surface-container); padding-top: 16px; margin-top: auto; }
.author-name { color: var(--deep-teal); font-family: var(--font-headline); font-size: 16px; font-weight: 600; }
.author-role { font-size: 14px; opacity: 0.8; margin-top: 4px; }

/* Highlighted link styling for blog content */
.blog-detail-content a {
  color: #2563eb !important;
  text-decoration: underline !important;
  text-underline-offset: 4px;
  font-weight: 600;
  background-color: rgba(37, 99, 235, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  transition: all 0.2s ease;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.blog-detail-content a:hover {
  color: #1d4ed8 !important;
  background-color: rgba(37, 99, 235, 0.16);
  text-decoration: none !important;
}
.blog-detail-content a:has(img) {
  background-color: transparent !important;
  padding: 0 !important;
  text-decoration: none !important;
}

/* Standardized, fixed-height cover image for Blog Detail Page across all laptop & screen sizes */
.blog-detail-image {
  width: 100%;
  height: 460px !important;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  margin: 0 auto 48px auto;
  display: block;
}

@media (max-width: 992px) {
  .blog-detail-image {
    height: 360px !important;
    border-radius: 20px;
    margin-bottom: 36px;
  }
}

@media (max-width: 600px) {
  .blog-detail-image {
    height: 240px !important;
    border-radius: 16px;
    margin-bottom: 28px;
  }
}
