/**
 * House of Dhrti — Brand palette
 * Earthy brown · Energetic orange · Sindoor red
 */
:root {
  /* Brand — Earthy brown #8C4B3C */
  --dhrti-primary: #8C4B3C;
  --dhrti-primary-dark: #734030;
  /* Accent — Energetic orange #FF9900 */
  --dhrti-accent: #FF9900;
  --dhrti-accent-hover: #E68A00;
  /* Emphasis — Sindoor red #E13C00 (sparingly) */
  --dhrti-emphasis: #E13C00;
  --dhrti-emphasis-hover: #c23500;
  /* Neutrals — warm tint for cohesion */
  --dhrti-text: #2c2522;
  --dhrti-text-muted: #6b5d58;
  --dhrti-bg: #ffffff;
  --dhrti-bg-soft: #faf8f6;
  --dhrti-border: #e8e0db;
  /* Footer — earthy brown base, warm light text */
  --dhrti-footer: #6b3a2f;
  --dhrti-footer-text: #e0d4cf;
  --dhrti-footer-bar: #4a2820;
}

/* Preloader — brand palette (earthy brown, orange, sindoor) */
#preloader {
  background-color: var(--dhrti-bg-soft);
}
.sk-folding-cube .sk-cube1:before { background-color: var(--dhrti-primary) !important; }
.sk-folding-cube .sk-cube2:before { background-color: var(--dhrti-accent) !important; }
.sk-folding-cube .sk-cube3:before { background-color: var(--dhrti-emphasis) !important; }
.sk-folding-cube .sk-cube4:before { background-color: var(--dhrti-primary) !important; }

/* Typography — modern fonts */
body {
  background-color: var(--dhrti-bg);
  color: var(--dhrti-text);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--dhrti-text);
  line-height: 1.3;
}
.ws-about-content p, .ws-footer-about p { font-family: 'Plus Jakarta Sans', sans-serif; }
.ws-navbar .navbar-nav li a, .dropdown-menu li a, .ws-footer li, .ws-footer-bar p,
.ws-item-category { font-family: 'Plus Jakarta Sans', sans-serif; }

/* ========== MODERN WHITE HEADER ========== */
.dhrti-header-modern {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.dhrti-header-modern .ws-header-dhrti {
  position: relative;
  left: auto;
  right: auto;
  padding: 0;
}
.dhrti-header-modern .ws-header .ws-navbar {
  margin: 0;
  min-height: 72px;
  border: none;
  background: transparent;
}
.dhrti-header-modern .ws-header .ws-navbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
/* Logo centered in header, nav fixed at right */
.dhrti-header-modern .navbar-header.dhrti-header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  position: relative;
  min-height: 72px;
}
.dhrti-header-modern .navbar-brand.dhrti-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 0;
  margin: 0;
  height: auto;
  line-height: 0;
  float: none;
}
.dhrti-header-modern .navbar-collapse {
  flex: 0 0 auto;
}
.dhrti-header-modern .dhrti-logo-img {
  display: block;
  max-height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.dhrti-header-modern .navbar-collapse {
  text-align: right;
  justify-content: flex-end;
  box-shadow: none;
  border: none;
}
.dhrti-header-modern .ws-navbar .navbar-nav {
  display: inline-flex;
  float: none;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2px;
}
.dhrti-header-modern .ws-navbar .navbar-nav li {
  padding: 0 2px;
}
.dhrti-header-modern .ws-navbar .navbar-nav li a {
  color: var(--dhrti-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 24px 14px;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.dhrti-header-modern .ws-navbar .navbar-nav li a:hover,
.dhrti-header-modern .ws-navbar .navbar-nav li a:focus {
  color: var(--dhrti-primary);
  border-bottom-color: var(--dhrti-primary);
  background-color: transparent;
}
.dhrti-header-modern .ws-navbar .navbar-nav li.active > a,
.dhrti-header-modern .ws-navbar .navbar-nav .dropdown.open > a {
  color: var(--dhrti-primary);
  font-weight: 600;
  border-bottom-color: var(--dhrti-primary);
  background-color: transparent;
}
.dhrti-header-modern .ws-navbar .navbar-nav .dropdown-menu {
  background: #fff;
  border: 1px solid var(--dhrti-border);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,.1);
  padding: 8px 0;
  margin-top: 4px;
  min-width: 220px;
}
.dhrti-header-modern .ws-navbar .navbar-nav .dropdown-menu li a {
  padding: 10px 20px;
  font-size: 14px;
  color: var(--dhrti-text);
}
.dhrti-header-modern .ws-navbar .navbar-nav .dropdown-menu li a:hover {
  background-color: rgba(140, 75, 60, .08);
  color: var(--dhrti-primary);
}
/* Toggle hidden on desktop (nav visible); positioned right on mobile */
.dhrti-header-modern .navbar-toggle.dhrti-nav-toggle {
  border: 1px solid var(--dhrti-border);
  border-radius: 8px;
  padding: 10px 12px;
  margin: 16px 0;
}
.dhrti-header-modern .navbar-toggle .icon-bar {
  background-color: var(--dhrti-text) !important;
}

/* Mobile header — logo center, toggle fixed right; open menu below without shifting header */
@media (max-width: 991px) {
  .dhrti-header-modern .ws-header .ws-navbar .container {
    justify-content: space-between;
  }
  .dhrti-header-modern .navbar-header.dhrti-header-row {
    flex: 1 1 100%;
    justify-content: center;
    position: relative;
    min-height: 72px;
  }
  .dhrti-header-modern .navbar-toggle.dhrti-nav-toggle {
    position: absolute !important;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 !important;
  }
  .dhrti-header-modern .navbar-collapse.collapse {
    display: none;
    height: 0;
    overflow: hidden;
  }
  .dhrti-header-modern .navbar-collapse.collapse.in {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
  }
  .dhrti-header-modern .navbar-collapse {
    width: 100%;
    flex: 1 1 100%;
    max-height: none;
    text-align: left;
    background: var(--dhrti-bg-soft);
    margin-top: 0;
    padding: 12px 0 20px;
    border-top: 1px solid var(--dhrti-border);
    clear: both;
  }
  .dhrti-header-modern .ws-navbar .navbar-nav {
    display: block;
    margin: 0;
  }
  .dhrti-header-modern .ws-navbar .navbar-nav li {
    padding: 0;
    border-bottom: 1px solid var(--dhrti-border);
  }
  .dhrti-header-modern .ws-navbar .navbar-nav li:last-child { border-bottom: none; }
  .dhrti-header-modern .ws-navbar .navbar-nav li a {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    min-height: 48px;
    line-height: 20px;
    border-bottom: none;
  }
  .dhrti-header-modern .ws-navbar .navbar-nav .dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(0,0,0,.03);
    margin: 0 0 0 20px;
    padding: 0 0 8px;
  }
  .dhrti-header-modern .ws-navbar .navbar-nav .dropdown-menu li a {
    padding: 10px 20px;
    font-size: 14px;
  }
  .dhrti-header-modern .navbar-toggle.dhrti-nav-toggle {
    display: block !important;
    z-index: 12;
  }
  .dhrti-header-modern .navbar-header.dhrti-header-row {
    z-index: 11;
  }
  /* Override main.css so toggle stays fixed at right */
  .dhrti-header-modern .ws-header-static .navbar-toggle.dhrti-nav-toggle,
  .dhrti-header-modern .ws-header-transparent .navbar-toggle.dhrti-nav-toggle {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%);
  }
  /* Open menu below header; header bar does not move */
  .dhrti-header-modern .navbar-collapse.collapse.in {
    z-index: 10;
    position: relative;
  }
}

/* Buttons */
.ws-big-btn, .btn.ws-big-btn {
  background-color: var(--dhrti-primary);
  border-color: var(--dhrti-primary);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  transition: background-color .2s, border-color .2s, transform .15s;
}
.ws-big-btn:hover, .btn.ws-big-btn:hover {
  background-color: var(--dhrti-primary-dark);
  border-color: var(--dhrti-primary-dark);
  color: #fff;
}
.ws-small-btn {
  border: 2px solid var(--dhrti-accent);
  color: var(--dhrti-accent);
  background: transparent;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  transition: all .2s;
}
.ws-small-btn:hover {
  background-color: var(--dhrti-accent);
  color: #fff;
  border-color: var(--dhrti-accent);
}
.ws-btn-subscribe {
  background-color: var(--dhrti-accent) !important;
  border-color: var(--dhrti-accent) !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 8px;
}
.ws-btn-subscribe:hover {
  background-color: var(--dhrti-accent-hover) !important;
  border-color: var(--dhrti-accent-hover) !important;
  color: #fff !important;
}
.ws-call-btn a {
  color: var(--dhrti-accent);
  border-color: var(--dhrti-accent);
  border-radius: 8px;
}
.ws-call-btn a:hover {
  background-color: var(--dhrti-accent);
  color: #fff;
}

/* Separators */
.ws-separator, .ws-footer-separator, .ws-item-separator {
  background-color: var(--dhrti-primary);
  height: 3px;
  width: 48px;
  border-radius: 2px;
}
.ws-product-title-separator { background-color: var(--dhrti-primary); }

/* Hero banner (static — no slider) */
.ws-hero-banner {
  position: relative;
  width: 100%;
  min-height: 420px;
  height: 55vw;
  max-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ws-hero-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ws-hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
}
.ws-hero-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3rem 1rem;
}
.ws-hero-banner-title {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin: 0 0 1rem;
  line-height: 1.25;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.ws-hero-banner-desc {
  color: rgba(255,255,255,.92);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  margin: 0 0 1.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.ws-hero-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.ws-hero-banner-btns .ws-small-btn {
  border-color: rgba(255,255,255,.9);
  color: #fff;
}
.ws-hero-banner-btns .ws-small-btn:hover {
  background-color: #fff;
  color: var(--dhrti-primary);
  border-color: #fff;
}
@media (max-width: 767px) {
  .ws-hero-banner {
    min-height: 360px;
    height: 70vw;
    max-height: 480px;
  }
  .ws-hero-banner-btns {
    flex-direction: column;
  }
  .ws-hero-banner-btns .btn { width: 100%; max-width: 280px; }
}

/* Slider below header — full width, proper aspect (kept for any page that uses it) */
.ws-below-header-slider-wrap {
  margin: 0;
  overflow: hidden;
  width: 100%;
  position: relative;
}
#ws-below-header-slider {
  width: 100%;
  margin: 0;
}
#ws-below-header-slider .item {
  margin: 0;
  width: 100%;
}
#ws-below-header-slider .owl-wrapper-outer,
#ws-below-header-slider .owl-wrapper,
#ws-below-header-slider .owl-item {
  width: 100% !important;
}
#ws-below-header-slider .ws-slide-inner {
  width: 100%;
  min-height: 380px;
  height: 42vw;
  max-height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#ws-below-header-slider .ws-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}
#ws-below-header-slider .ws-slide-caption {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 1.5rem;
  max-width: 100%;
}
#ws-below-header-slider .ws-slide-caption h2 {
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin: 0 0 0.5rem;
}
#ws-below-header-slider .ws-slide-caption p {
  color: rgba(255,255,255,.92);
  margin: 0 0 1rem;
  font-size: 1rem;
}
#ws-below-header-slider .ws-slide-caption .ws-small-btn {
  border-color: #fff;
  color: #fff;
}
#ws-below-header-slider .ws-slide-caption .ws-small-btn:hover {
  background-color: #fff;
  color: var(--dhrti-primary);
}
#ws-below-header-slider.owl-theme .owl-controls { margin-top: 0; }
#ws-below-header-slider.owl-theme .owl-controls .owl-nav div {
  background: rgba(255,255,255,.9);
  color: var(--dhrti-text);
}
#ws-below-header-slider.owl-theme .owl-controls .owl-nav div:hover { background: #fff; }
#ws-below-header-slider.owl-theme .owl-dots .owl-dot span { background: rgba(255,255,255,.5); }
#ws-below-header-slider.owl-theme .owl-dots .owl-dot.active span { background: var(--dhrti-primary); }

/* Hero overlay */
#ws-hero-fullscreen .tp-caption[style*="background-color"] { background-color: rgba(15, 23, 42, 0.45) !important; }
.ws-hero-title h1, .ws-hero-description h4 { text-shadow: 0 2px 20px rgba(0,0,0,.25); }

/* Parallax headers — image with text overlay (img element, not background) */
.ws-parallax-header {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}
.ws-parallax-header .ws-parallax-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}
.ws-parallax-header .ws-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(15, 23, 42, 0.55);
}
.ws-parallax-header .ws-parallax-caption {
  position: relative;
  z-index: 2;
}
.ws-parallax-caption h1 { color: #fff; }

/* Section title — used on home and consistent with site */
.ws-section-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 0.75rem;
  text-align: center;
  color: var(--dhrti-text);
}
.ws-section-title + .ws-separator { margin: 0 auto 1.25rem; }

/* Home — Who we are */
.ws-home-intro {
  padding: 4rem 0;
  background: var(--dhrti-bg);
}
.ws-intro-lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dhrti-text);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.ws-intro-text {
  font-size: 1.05rem;
  color: var(--dhrti-text-muted);
  line-height: 1.7;
  margin: 0 0 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Home — Our Collections */
.ws-home-collections {
  padding: 4rem 0;
  background: var(--dhrti-bg-soft);
}
.ws-collections-lead {
  font-size: 1.05rem;
  color: var(--dhrti-text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.ws-home-collections .ws-featured-collections { margin-top: 0; }
.ws-section-cta { margin-top: 2rem; }

/* About & Story prose — aligned readable content */
.ws-about-page .ws-prose .lead,
.ws-story-prose .lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}
.ws-prose p,
.ws-story-prose p {
  color: var(--dhrti-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.ws-prose h3,
.ws-story-prose h2,
.ws-story-prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--dhrti-text);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* About page — full-width layout, big readable type */
.ws-about-page .ws-about-prose {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.ws-about-page .ws-about-prose .lead {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 100%;
}
.ws-about-tagline {
  font-family: 'Playfair Display', Georgia, serif !important;
  color: var(--dhrti-primary) !important;
  font-weight: 600;
}
.ws-about-page .ws-about-prose p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--dhrti-text-muted);
}
.ws-about-page .ws-about-prose h3 {
  font-size: 1.5rem;
  margin-top: 2.25rem;
  margin-bottom: 0.875rem;
  color: var(--dhrti-text);
}
.ws-about-page .ws-about-prose .ws-founder-inline-content p {
  font-size: 1.125rem;
  line-height: 1.8;
}
.ws-about-page .ws-about-prose .ws-founder-inline-name {
  font-size: 1.25rem;
}
.ws-about-page .ws-about-prose .ws-founder-inline-role {
  font-size: 1rem;
}
.ws-prose .ws-footer-separator { margin-bottom: 1rem; }
.ws-prose-divider {
  border: 0;
  border-top: 1px solid var(--dhrti-border);
  margin: 2.5rem 0;
}
.ws-prose-cta { margin-top: 2.5rem; margin-bottom: 0; }
.ws-prose-cta .btn { margin: 0 0.25rem; }

/* Dual CTA buttons — Explore Collections / Read Their Stories (artisans, about, impact, stories) */
.ws-cta-btns-wrap { margin-bottom: 0; }
.ws-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .ws-cta-btns {
    flex-direction: column;
  }
  .ws-cta-btns .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
.ws-story-prose .padding-top-x70 { padding-top: 2rem; }
.ws-story-prose .lead + h2,
.ws-story-prose .lead + .lead + h2 { margin-top: 1.25rem; }

/* Stories listing page */
.ws-stories-page .ws-stories-intro .lead {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: var(--dhrti-text-muted);
}
.ws-stories-page .ws-journal-page {
  margin-top: 0;
  margin-bottom: 1rem;
}
.ws-stories-page .ws-journal-item {
  margin-bottom: 2.5rem;
}

/* Sections — text containment and readability */
.ws-about-section { background: var(--dhrti-bg); }
.ws-about-content p {
  color: var(--dhrti-text-muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.ws-about-content h3 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 0 0.5rem;
}
/* Featured collections — square boxes with contained text */
.ws-featured-collections .featured-collections-item {
  margin-bottom: 2rem;
}
.ws-featured-collections .thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background: var(--dhrti-border);
}
.ws-featured-collections .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ws-featured-collections .ws-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(15, 23, 42, 0.6);
  transition: background-color .25s;
}
.ws-featured-collections .ws-overlay:hover { background-color: rgba(15, 23, 42, 0.75); }
.ws-featured-collections .caption {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  transform: none;
  text-align: center;
}
.ws-featured-collections .caption h3 {
  color: #fff;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.ws-collection-cta {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* Collections index page — intro text contained */
.ws-collections-page { padding: 2rem 0 3rem; }
.ws-collections-intro.lead {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 2rem;
  color: var(--dhrti-text-muted);
}
.ws-featured-collections-grid { margin-top: 1rem; }

/* Collection pages — extra space between sections */
/* Collection single pages — clear section spacing and identification */
.ws-page-container .ws-collection-section {
  margin-top: 0;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--dhrti-border);
}
.ws-page-container .ws-collection-section:first-of-type {
  padding-top: 2rem;
  border-top: none;
}
.ws-page-container .lead {
  margin-bottom: 2rem;
  padding-bottom: 0;
}

/* Artisans page — Bengal & Dokra images sized to match content */
.ws-page-container .ws-artisan-figure {
  margin-bottom: 0;
}
.ws-page-container .ws-artisan-img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Products block (title + items) as one section */
.ws-collection-products-block {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--dhrti-border);
}
.ws-collection-products-block .ws-works-title {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.ws-collection-products-block .ws-works-item {
  padding-top: 0;
}

.ws-collections-page .ws-collections-intro {
  margin-bottom: 2.5rem;
}
.ws-collections-page .ws-featured-collections-grid {
  margin-top: 1.5rem;
}

.ws-featured-collections .ws-overlay { background-color: rgba(15, 23, 42, 0.7); }
.ws-featured-collections .caption h3 { color: #fff; }
/* Call to Action — proper section with contained text */
.ws-call-section {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}
.ws-call-section-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/call-section/call-section-home-bg.jpg") center/cover no-repeat;
}
.ws-call-section .ws-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.65);
}
.ws-call-section .container {
  position: relative;
  z-index: 2;
}
.ws-call-content { padding: 0 1rem; }
.ws-call-title {
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.ws-call-text {
  color: rgba(255,255,255,.92);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 540px;
  margin: 0 auto 1.5rem;
}
.ws-call-btn { padding-top: 1rem; }
.ws-call-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff !important;
  background-color: var(--dhrti-accent);
  border: 2px solid var(--dhrti-accent);
  border-radius: 8px;
  text-decoration: none !important;
  transition: background-color .2s, border-color .2s, transform .15s;
}
.ws-call-cta-btn:hover {
  background-color: var(--dhrti-accent-hover);
  border-color: var(--dhrti-accent-hover);
  color: #fff !important;
  transform: translateY(-1px);
}
.ws-call-btn a.ws-call-cta-btn { border-bottom: none; padding-bottom: 14px; }

/* Founder section — small & crisp (legacy) */
.ws-founder-section {
  padding: 3rem 0;
  background: var(--dhrti-bg);
}
.ws-founder-crisp-section { padding: 2.5rem 0; }
.ws-founder-crisp-section .ws-section-title + .ws-separator { margin: 0 auto 1rem; }
.ws-founder-section .ws-section-title + .ws-separator { margin: 0 auto 1.25rem; }
.ws-founder-block { padding: 0 0.5rem; }
.ws-founder-image-wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--dhrti-border);
}
.ws-founder-crisp-section .ws-founder-image-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 0.6rem;
}

/* Home page — founder card (more appealing) */
.ws-founder-home { padding: 3rem 0; }
.ws-founder-card {
  background: var(--dhrti-bg);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(44, 37, 34, 0.08);
  border: 1px solid var(--dhrti-border);
  padding: 2rem;
  text-align: center;
}
.ws-founder-card .ws-section-title { margin-bottom: 0.5rem; }
.ws-founder-card .ws-separator { margin: 0 auto 1.5rem; }
.ws-founder-card-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  text-align: left;
}
.ws-founder-card .ws-founder-image-wrap {
  flex: 0 0 140px;
  width: 140px;
  height: 140px;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  background: var(--dhrti-border);
}
.ws-founder-card-content {
  flex: 1 1 280px;
  min-width: 0;
}
.ws-founder-card .ws-founder-name { margin: 0 0 0.2rem; }
.ws-founder-card .ws-founder-role { margin: 0 0 0.5rem; }
.ws-founder-card .ws-founder-bio { margin: 0 0 1rem; text-align: left; }
@media (max-width: 767px) {
  .ws-founder-card-inner { text-align: center; }
  .ws-founder-card .ws-founder-image-wrap { margin: 0 auto; }
  .ws-founder-card .ws-founder-bio { text-align: center; }
  .ws-founder-card-content { text-align: center; }
}
.ws-founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ws-founder-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dhrti-text);
  margin: 0 0 0.2rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.ws-founder-role {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dhrti-primary);
  margin: 0 0 0.6rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.ws-founder-bio {
  font-size: 1rem;
  color: var(--dhrti-text);
  line-height: 1.65;
  max-width: 420px;
  margin: 0 auto 0.5rem;
}

/* About page — founder block (small, crisp, image + short bio) */
.ws-founder-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: flex-start;
  margin: 1rem 0 1.5rem;
}
.ws-founder-inline-image-wrap {
  flex: 0 0 140px;
  width: 140px;
  height: 140px;
  border-radius: 0;
  overflow: hidden;
  background: var(--dhrti-border);
}
.ws-founder-inline-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ws-founder-inline-content {
  flex: 1 1 280px;
  min-width: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}
.ws-founder-inline-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dhrti-text);
  margin: 0 0 0.25rem;
  line-height: 1.3;
  font-family: 'Playfair Display', Georgia, serif;
}
.ws-founder-inline-role {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dhrti-primary);
  margin: 0 0 1rem;
  line-height: 1.4;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ws-founder-inline-content p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dhrti-text-muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ws-founder-inline-content p:last-of-type { margin-bottom: 0; }
.ws-founder-crisp .ws-founder-inline-content p { margin-bottom: 1rem; }
@media (max-width: 767px) {
  .ws-founder-inline-image-wrap {
    margin: 0 auto;
    flex: 0 0 auto;
  }
}

.ws-subscribe-section { background-color: var(--dhrti-bg-soft); }
.ws-subscribe-section h3 { color: var(--dhrti-text); }

/* Home summary — overview of site, no heavy highlight */
/* Home — Artisans, Impact & Stories teasers */
.ws-home-teasers {
  padding: 3.5rem 0;
  background: var(--dhrti-bg);
}
.ws-home-teasers .ws-section-title + .ws-separator { margin: 0 auto 2rem; }
.ws-teasers-row { margin: 0 -0.75rem; }
.ws-teaser-item {
  padding: 1.25rem 1rem;
  text-align: center;
  border-top: 3px solid var(--dhrti-border);
  transition: border-color .2s;
}
.ws-teaser-item:hover { border-top-color: var(--dhrti-primary); }
.ws-teaser-item h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}
.ws-teaser-item h3 a {
  color: var(--dhrti-text);
  text-decoration: none;
  font-weight: 600;
}
.ws-teaser-item h3 a:hover { color: var(--dhrti-primary); }
.ws-teaser-item p {
  font-size: 0.95rem;
  color: var(--dhrti-text-muted);
  margin: 0 0 0.75rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .ws-teaser-item { margin-bottom: 1rem; }
}

.ws-home-summary {
  padding: 4rem 0;
  background: var(--dhrti-bg-soft);
}
.ws-home-summary .ws-section-title { margin-bottom: 0.5rem; }
.ws-summary-sep { margin: 0 auto 1rem; }
.ws-summary-grid { margin: 0 -0.75rem; }
.ws-summary-grid-three .ws-summary-item {
  margin-bottom: 1rem;
}
.ws-summary-intro {
  font-size: 1rem;
  color: var(--dhrti-text-muted);
  line-height: 1.55;
  max-width: 480px;
  margin: 0 auto 2rem;
}
.ws-summary-item {
  padding: 1.5rem 1rem;
  margin-bottom: 0.5rem;
  border-left: 3px solid var(--dhrti-border);
  transition: border-color .2s, color .2s;
}
.ws-summary-item:hover {
  border-left-color: var(--dhrti-primary);
}
.ws-summary-item h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}
.ws-summary-item h3 a {
  color: var(--dhrti-text);
  text-decoration: none;
  font-weight: 600;
}
.ws-summary-item h3 a:hover { color: var(--dhrti-primary); }
.ws-summary-item p {
  font-size: 0.9rem;
  color: var(--dhrti-text-muted);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}
.ws-summary-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dhrti-primary);
  text-decoration: none;
}
.ws-summary-link:hover { color: var(--dhrti-primary-dark); text-decoration: underline; }

/* Footer */
.ws-footer {
  background-color: var(--dhrti-footer);
  color: var(--dhrti-footer-text);
}
.dhrti-footer-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
}
.dhrti-footer-logo {
  display: block;
  height: auto;
  max-height: 90px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}
.ws-footer h3 { color: #fff; }
.ws-footer a, .ws-footer-about p { color: var(--dhrti-footer-text); }
.ws-footer a:hover { color: var(--dhrti-accent); }
.ws-footer-bar {
  background-color: var(--dhrti-footer-bar);
  color: var(--dhrti-footer-text);
}
.ws-footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
}
.ws-footer-bar p { margin: 0; color: var(--dhrti-footer-text); }
.ws-footer-bar-left { flex: 1 1 auto; min-width: 0; }
.ws-footer-bar-right { flex: 0 0 auto; white-space: nowrap; }
.ws-footer-bar a { color: var(--dhrti-footer-text); text-decoration: underline; }
.ws-footer-bar a:hover { color: var(--dhrti-accent); }
.ws-footer-heart { color: #e74c3c; margin: 0 0.1em; }

/* Journal / Stories — professional category labels */
.ws-journal-caption h3 { color: var(--dhrti-text); }
.ws-journal-caption h3:hover { color: var(--dhrti-primary); }
.ws-journal-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dhrti-primary);
  background-color: rgba(140, 75, 60, 0.1);
  border: 1px solid rgba(140, 75, 60, 0.28);
  border-radius: 4px;
  padding: 0.35em 0.65em;
  margin-top: 0.5rem;
  font-style: normal;
}
.ws-journal-category:hover {
  background-color: rgba(140, 75, 60, 0.15);
  border-color: var(--dhrti-primary);
  color: var(--dhrti-primary-dark);
}

/* Contact form */
.ws-contact-form .form-control:focus {
  border-color: var(--dhrti-primary);
  box-shadow: 0 0 0 3px rgba(140, 75, 60, .2);
}
.ws-contact-info a { color: var(--dhrti-primary); }
.ws-contact-info a:hover { color: var(--dhrti-primary-dark); }

/* Enquiry popup modal */
.dhrti-enquiry-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.dhrti-enquiry-overlay.dhrti-enquiry-open {
  opacity: 1;
  visibility: visible;
}
.dhrti-enquiry-modal {
  position: relative;
  background: var(--dhrti-bg);
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 2rem;
}
.dhrti-enquiry-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--dhrti-text-muted);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.dhrti-enquiry-close:hover { color: var(--dhrti-text); }
.dhrti-enquiry-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
  color: var(--dhrti-text);
  padding-right: 2rem;
}
.dhrti-enquiry-intro {
  color: var(--dhrti-text-muted);
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}
.dhrti-enquiry-form .form-group {
  margin-bottom: 1.25rem;
}
.dhrti-enquiry-form label {
  display: block;
  font-weight: 500;
  color: var(--dhrti-text);
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}
.dhrti-enquiry-form .form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--dhrti-border);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dhrti-enquiry-form .form-control:focus {
  border-color: var(--dhrti-primary);
  box-shadow: 0 0 0 3px rgba(140, 75, 60, 0.15);
  outline: none;
}
.dhrti-enquiry-interests {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.dhrti-check-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--dhrti-text-muted);
}
.dhrti-check-label input { margin: 0; }
.dhrti-enquiry-interests.dhrti-error .dhrti-check-label { color: var(--dhrti-emphasis); }
.dhrti-enquiry-actions { margin-top: 1.5rem; margin-bottom: 0; }
.dhrti-enquiry-actions .ws-big-btn { width: 100%; }
@media (max-width: 767px) {
  .dhrti-enquiry-modal { padding: 1.5rem; margin: 0.5rem; }
  .dhrti-enquiry-interests { flex-direction: column; gap: 0.4rem; }
}

/* Contact page — enquiry form section (same form as popup) */
.ws-contact-enquiry-section {
  margin-top: 2rem;
  padding-top: 0.5rem;
}
.ws-contact-enquiry-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: var(--dhrti-text);
}
.dhrti-enquiry-form-inline {
  max-width: 640px;
  margin-top: 1rem;
}
.dhrti-enquiry-form-inline .dhrti-enquiry-actions .ws-big-btn { width: auto; }

/* Fixed right-corner buttons — scroll to top (above) + WhatsApp */
.dhrti-fixed-btn {
  position: fixed;
  right: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.dhrti-fixed-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.dhrti-scroll-top {
  bottom: 90px;
  background-color: var(--dhrti-primary);
  transition: opacity 0.25s, transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.dhrti-scroll-top:hover { background-color: var(--dhrti-primary-dark); }
.dhrti-scroll-top i { font-size: 1.25rem; }
.dhrti-whatsapp-btn {
  bottom: 24px;
  background-color: #25D366;
}
.dhrti-whatsapp-btn:hover { background-color: #20bd5a; color: #fff; }
.dhrti-whatsapp-btn i { font-size: 1.75rem; }
.dhrti-scroll-top.dhrti-hidden { opacity: 0; pointer-events: none; transform: scale(0.9); }
@media (max-width: 767px) {
  .dhrti-fixed-btn {
    width: 48px;
    height: 48px;
    right: 16px;
  }
  .dhrti-scroll-top { bottom: 88px; }
  .dhrti-whatsapp-btn { bottom: 20px; }
  .dhrti-whatsapp-btn i { font-size: 1.5rem; }
}

/* ========== MOBILE UX — all pages ========== */
img { max-width: 100%; height: auto; }
.container { width: 100%; max-width: 1200px; box-sizing: border-box; }
.row { box-sizing: border-box; }

/* Prevent horizontal scroll and improve touch */
html { overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }

/* Tablet and below */
@media (max-width: 991px) {
  .ws-page-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .ws-collection-section,
  .ws-collection-products-block {
    padding-left: 0;
    padding-right: 0;
  }
  .dhrti-footer-logo {
    max-height: 80px;
    max-width: 250px;
  }
}

@media (max-width: 767px) {
  body { font-size: 15px; }
  .ws-about-content h3,
  .ws-collection-section h3,
  .ws-works-title h3 { font-size: 1.5rem; }
  #ws-below-header-slider .ws-slide-inner {
    min-height: 260px;
    height: 55vw;
    max-height: 320px;
  }
  #ws-below-header-slider .ws-slide-caption { padding: 1rem; }
  #ws-below-header-slider .ws-slide-caption h2 { font-size: 1.25rem; }
  .ws-featured-collections .thumbnail { margin-bottom: 1rem; }
  .ws-navbar .navbar-nav li a { padding: 14px 16px; min-height: 44px; }

  /* Contact — full width form, touch-friendly inputs */
  .ws-contact-page .col-sm-6 { width: 100%; max-width: 100%; }
  .ws-contact-form .form-control {
    min-height: 44px;
    font-size: 16px;
  }
  .ws-contact-form textarea.form-control { min-height: 120px; }
  .ws-contact-form .ws-big-btn { min-height: 48px; width: 100%; }
  .ws-contact-info { padding-bottom: 1.5rem; text-align: center; }
  .ws-contact-info a { display: inline-block; min-height: 44px; line-height: 1.4; padding: 0.5rem 0; }

  /* Footer — logo and columns */
  .ws-footer .container { padding-left: 15px; padding-right: 15px; }
  .ws-footer-col { padding-top: 2rem !important; }
  .dhrti-footer-logo {
    max-height: 125px;
    max-width: 125px;
  }
  .dhrti-footer-logo-link { margin-bottom: 0.75rem; }
  .ws-footer h3 { font-size: 1.1rem; margin-top: 0; }
  .ws-footer ul li { margin-bottom: 0.35rem; }
  .ws-footer a { padding: 0.5rem 0; display: inline-block; min-height: 44px; line-height: 1.4; }

  /* Prose and about */
  .ws-about-page .ws-prose,
  .ws-story-prose { padding-left: 0; padding-right: 0; }
  .ws-prose .lead { font-size: 1.1rem; }
  .ws-prose h3 { font-size: 1.35rem; }
  .ws-about-page .ws-about-prose { padding-left: 15px; padding-right: 15px; }
  .ws-about-page .ws-about-prose .lead { font-size: 1.25rem; }
  .ws-about-page .ws-about-prose p { font-size: 1.0625rem; }
  .ws-about-page .ws-about-prose h3 { font-size: 1.35rem; }

  /* Collection product grid */
  .ws-works-item { margin-bottom: 1.5rem; }
  .ws-works-item figure { margin: 0 0 0.5rem; }
  .ws-works-item .ws-works-caption { padding: 0 0.5rem; }
  .ws-item-title { font-size: 1rem; }

  /* Home sections */
  .ws-home-intro,
  .ws-home-collections,
  .ws-home-teasers,
  .ws-home-summary { padding: 2.5rem 0; }
  .ws-section-title { font-size: 1.4rem; }
  .ws-hero-banner-title { font-size: 1.5rem; line-height: 1.35; }
  .ws-hero-banner-desc { font-size: 0.95rem; }
  .ws-founder-card-inner { padding: 1rem; }
  .ws-teaser-item,
  .ws-summary-item { padding: 1rem 0.75rem; }

  /* Subscribe */
  .ws-subscribe-section { padding: 2.5rem 1rem; }
  .ws-subscribe-content .form-inline .form-control,
  .ws-subscribe-content .ws-btn-subscribe { width: 100%; max-width: 100%; }
  .ws-subscribe-content .form-inline .form-control { margin-bottom: 0.5rem; }

  /* Stories / journal */
  .ws-journal-page .ws-journal-item { margin-bottom: 1.5rem; }
  .ws-journal-caption h3 { font-size: 1rem; }
  .ws-journal-caption p { font-size: 0.9rem; }

  /* Simple page header (if used) */
  .ws-simple-header { padding: 2.5rem 1rem; }
  .ws-simple-header-caption h1 { font-size: 1.5rem; letter-spacing: 0.05em; }
  .ws-simple-header-caption h1:before,
  .ws-simple-header-caption h1:after { display: none; }
}

@media (max-width: 480px) {
  .dhrti-header-modern .dhrti-logo-img { max-height: 44px; }
  .ws-header .ws-navbar .container { padding-left: 15px; padding-right: 15px; }

  .ws-hero-banner-title { font-size: 1.35rem; }
  .ws-section-title { font-size: 1.25rem; }
  .ws-footer-bar .container { padding-left: 15px; padding-right: 15px; }
  .ws-footer-bar p { font-size: 0.9rem; }
  .ws-footer-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 1rem 0;
  }
  .ws-footer-bar-left { text-align: left; }
  .ws-footer-bar-right { text-align: right; white-space: nowrap; }
}

/* Site-wide: prevent text overflow in captions and cards */
.ws-journal-caption h3,
.ws-journal-caption p,
.ws-summary-item p,
.ws-summary-item h3 a {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.ws-summary-item p { max-width: 100%; }
