.elementor-15245 .elementor-element.elementor-element-7f0196f{--display:flex;--gap:20px 20px;--row-gap:20px;--column-gap:20px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15245 .elementor-element.elementor-element-48b4a73{--display:flex;--gap:20px 20px;--row-gap:20px;--column-gap:20px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15245 .elementor-element.elementor-element-dae7063{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-15245 .elementor-element.elementor-element-9be0870{--display:flex;--padding-top:70px;--padding-bottom:70px;--padding-left:70px;--padding-right:70px;}.elementor-15245 .elementor-element.elementor-element-f1148e2{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 20px) 0px;text-align:center;}.elementor-15245 .elementor-element.elementor-element-f1148e2 .elementor-heading-title{font-family:"DM Sans", serif, sans-serif;font-size:46px;line-height:1.2em;color:var( --e-global-color-primary );}.elementor-15245 .elementor-element.elementor-element-59a8640{--e-image-carousel-slides-to-show:6;}.elementor-15245 .elementor-element.elementor-element-59a8640 .swiper-wrapper{display:flex;align-items:center;}@media(max-width:1024px){.elementor-15245 .elementor-element.elementor-element-59a8640{--e-image-carousel-slides-to-show:4;}}@media(min-width:768px){.elementor-15245 .elementor-element.elementor-element-7f0196f{--width:100%;}.elementor-15245 .elementor-element.elementor-element-48b4a73{--content-width:1320px;}.elementor-15245 .elementor-element.elementor-element-dae7063{--content-width:1320px;}}@media(max-width:767px){.elementor-15245 .elementor-element.elementor-element-9be0870{--padding-top:70px;--padding-bottom:70px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-fee82f6 */@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');



  :root {
    --ink: #1a1714;
    --ink-muted: #6b6560;
    --ink-faint: #b5b0aa;
    --cream: #faf8f5;
    --warm: #f2ede6;
    --gold: #c9a84c;
    --gold-light: #e8d49e;
    --card-bg: #ffffff;
    --radius: 16px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* ── Hero ── */
  .hero {
    text-align: center;
    padding: 80px 24px 64px;
    position: relative;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, #e8d49e33 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
  }
  .hero-label::before, .hero-label::after {
    content: '';
    display: inline-block;
    width: 32px; height: 1px;
    background: var(--gold-light);
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--ink-muted);
    max-width: 440px;
    margin: 0 auto 40px;
    line-height: 1.7;
  }
  .hero-stats {
    display: inline-flex;
    gap: 48px;
    background: var(--card-bg);
    border: 1px solid #e8e2d9;
    border-radius: 100px;
    padding: 16px 40px;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
  }
  .stat-label {
    font-size: 11px;
    color: var(--ink-faint);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* ── Filter bar ── */
  .filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0 24px 48px;
  }
  .filter-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--ink-muted);
    background: var(--card-bg);
    border: 1px solid #e2ddd6;
    border-radius: 100px;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .filter-btn:hover { border-color: var(--gold); color: var(--ink); }
  .filter-btn.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }

  /* ── Carousel track ── */
  .carousel-outer {
    position: relative;
    padding-bottom: 64px;
  }
  .carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 8px 60px 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .carousel-track::-webkit-scrollbar { display: none; }

  /* ── Card ── */
  .card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: var(--card-bg);
    border: 1px solid #ece7df;
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }
  .card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    color: var(--gold-light);
    position: absolute;
    top: -10px; right: 20px;
    line-height: 1;
    opacity: 0.5;
    pointer-events: none;
  }
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  }

  .card-quote {
    font-size: 14.5px;
    line-height: 1.75;
    color: #3d3830;
    font-weight: 300;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .card-quote.expanded {
    -webkit-line-clamp: unset;
  }
  .read-more {
    font-size: 12px;
    color: var(--gold);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0.03em;
    align-self: flex-start;
    margin-top: -12px;
  }
  .read-more:hover { text-decoration: underline; }

  .card-divider {
    height: 1px;
    background: linear-gradient(to right, var(--gold-light), transparent);
  }

  .card-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--warm);
    flex-shrink: 0;
    background: var(--warm);
  }
  .avatar-fallback {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--ink);
    flex-shrink: 0;
    border: 2px solid var(--warm);
  }
  .author-info { min-width: 0; }
  .author-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .author-title {
    font-size: 12px;
    color: var(--ink-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
  }
  .author-company {
    font-size: 11px;
    color: var(--gold);
    font-weight: 500;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* ── Nav arrows ── */
  .carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding-bottom: 0;
  }
  .nav-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid #e2ddd6;
    background: var(--card-bg);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    color: var(--ink-muted);
  }
  .nav-btn:hover { background: var(--ink); color: #fff !important; border-color: var(--ink); }
  .nav-btn svg { width: 18px; height: 18px; }

  .scroll-dots {
    display: flex;
    gap: 6px;
    align-items: center;
  }
  .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--ink-faint);
    transition: all 0.3s;
    cursor: pointer;
  }
  .dot.active { width: 24px; border-radius: 3px; background: var(--gold); }

  /* ── Add new CTA ── */
  .add-section {
    text-align: center;
    padding: 64px 24px 80px;
    background: var(--warm);
    margin-top: 16px;
  }
  .add-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 12px;
  }
  .add-section p {
    font-size: 14px;
    color: var(--ink-muted);
    margin-bottom: 24px;
  }
  .add-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .add-btn:hover { background: #2f2a25; }

  /* ── Hidden cards ── */
  .card.hidden { display: none; }

  @media (max-width: 600px) {
    .card { flex: 0 0 300px; }
    .hero-stats { gap: 24px; padding: 14px 24px; }
    .carousel-track { padding: 8px 24px 24px; }
  }
.elementor-kit-12388 button
 {
    background-color: #ffffff;
    color: #212529;
}/* End custom CSS */
/* Start custom CSS for heading, class: .elementor-element-f1148e2 */h1 h2 h3 
        { font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    }
        h1 em, h2 em, h3 em {
    font-style: italic;
    color: var(--gold);
        font-family: "DM Sans", serif, sans-serif;
  }/* End custom CSS */