:root {
  --ws-color-bg: #f7f2e9;
  --ws-color-surface: #fffdfa;
  --ws-color-surface-strong: #f1e5d2;
  --ws-color-text: #20252d;
  --ws-color-text-soft: #58606b;
  --ws-color-primary: #ad7c2f;
  --ws-color-primary-dark: #845d21;
  --ws-color-deep-ink: #14201c;
  --ws-color-palm-green: #2c594d;
  --ws-color-date-brown: #925637;
  --ws-color-muted-gold: #d2a854;
  --ws-color-border: rgba(32, 37, 45, 0.08);
  --ws-color-shadow: rgba(32, 37, 45, 0.08);
  --ws-gradient-hero: linear-gradient(135deg, #fffdfa 0%, #f3e4ce 48%, #ead2ab 100%);
  --ws-radius-card: 20px;
  --ws-radius-pill: 999px;
  --ws-max-width: 1140px;
  --ws-header-top-offset: 0px;
  --ws-header-height: 84px;
}

body.admin-bar {
  --ws-header-top-offset: 32px;
}

body.ws-has-scroll-header {
  padding-top: var(--ws-header-height);
}

.ws-html-section {
  position: relative;
  padding: 72px 0;
}

.ws-html-inner {
  max-width: var(--ws-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.ws-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ws-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ws-reveal-delay-1 {
  transition-delay: 0.08s;
}

.ws-reveal-delay-2 {
  transition-delay: 0.16s;
}

.ws-reveal-delay-3 {
  transition-delay: 0.24s;
}

.ws-html-section h1,
.ws-html-section h2,
.ws-html-section h3 {
  margin: 0 0 18px;
  color: var(--ws-color-primary);
  line-height: 0.96;
}

.ws-html-section h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
}

.ws-html-section h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.ws-html-section h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.ws-html-section p,
.ws-html-section li {
  color: var(--ws-color-text);
  font-size: 1.05rem;
  line-height: 1.65;
}

.ws-html-section p {
  margin: 0 0 18px;
}

.ws-html-section ul {
  margin: 0;
  padding-left: 1.2em;
}

.ws-html-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ws-html-checklist li {
  position: relative;
  margin: 0;
  padding: 0 0 0 52px;
  min-height: 36px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.ws-html-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 2px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(173, 124, 47, 0.14);
  color: var(--ws-color-primary-dark);
  font-size: 16px;
  font-weight: 800;
}

.ws-html-section li + li {
  margin-top: 10px;
}

.ws-html-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--ws-color-primary-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ws-html-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: var(--ws-radius-pill);
  background: rgba(173, 124, 47, 0.12);
  color: var(--ws-color-primary-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ws-html-hero {
  overflow: hidden;
  background: var(--ws-gradient-hero);
}

.ws-html-hero::before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(173, 124, 47, 0.18) 0%, rgba(173, 124, 47, 0) 72%);
  pointer-events: none;
}

.ws-html-grid-2 {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
}

.ws-html-grid-3 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ws-html-grid-2x2 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ws-html-stack {
  display: grid;
  gap: 16px;
}

.ws-html-media-stack {
  display: grid;
  gap: 18px;
}

.ws-html-card,
.ws-html-surface,
.ws-html-note,
.ws-html-cta {
  background: var(--ws-color-surface);
  border: 1px solid var(--ws-color-border);
  border-radius: var(--ws-radius-card);
  box-shadow: 0 20px 50px var(--ws-color-shadow);
  padding: 28px;
}

.ws-html-card,
.ws-html-surface,
.ws-html-note {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ws-html-card:hover,
.ws-html-surface:hover,
.ws-html-note:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(32, 37, 45, 0.12);
}

.ws-html-surface {
  background: var(--ws-color-surface-strong);
}

.ws-html-note {
  background: linear-gradient(135deg, rgba(173, 124, 47, 0.1) 0%, rgba(216, 195, 163, 0.24) 100%);
}

.ws-html-cta {
  background: linear-gradient(135deg, var(--ws-color-deep-ink) 0%, #20342d 100%);
  padding: 44px;
}

.ws-html-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(173, 124, 47, 0.14);
  color: var(--ws-color-primary-dark);
  font-size: 18px;
  font-weight: 800;
}

.ws-html-stat-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.ws-html-stat {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(32, 37, 45, 0.06);
}

.ws-html-stat strong,
.ws-html-stat span {
  display: block;
}

.ws-html-stat strong {
  color: var(--ws-color-primary-dark);
  font-size: 1rem;
  font-weight: 800;
}

.ws-html-stat span {
  color: var(--ws-color-text-soft);
  font-size: 0.9rem;
  margin-top: 4px;
}

.ws-html-roadmap {
  display: grid;
  gap: 14px;
}

.ws-html-roadmap-step {
  padding: 18px 18px 18px 20px;
  border-radius: 18px;
  background: var(--ws-color-surface);
  border: 1px solid var(--ws-color-border);
  box-shadow: 0 12px 28px rgba(32, 37, 45, 0.08);
}

.ws-html-roadmap-step strong,
.ws-html-roadmap-step span {
  display: block;
}

.ws-html-roadmap-step strong {
  color: var(--ws-color-primary-dark);
  font-size: 1rem;
  font-weight: 800;
}

.ws-html-roadmap-step span {
  color: var(--ws-color-text-soft);
  margin-top: 6px;
  font-size: 0.96rem;
}

.ws-html-media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--ws-color-border);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 20px 50px rgba(32, 37, 45, 0.1);
}

.ws-html-media-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.ws-html-image-cover img {
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  object-position: center top;
}

.ws-html-wide-shot img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ws-html-portrait-shot img {
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  object-position: center top;
}

.ws-html-hero-photo {
  background: transparent;
}

.ws-html-hero-photo::before {
  display: none;
}

.ws-html-hero-photo-frame {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  box-shadow: 0 28px 64px rgba(20, 22, 28, 0.18);
}

.ws-html-hero-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center center;
}

.ws-html-hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 15, 10, 0.82) 0%, rgba(19, 15, 10, 0.68) 34%, rgba(19, 15, 10, 0.24) 64%, rgba(19, 15, 10, 0.06) 100%),
    linear-gradient(180deg, rgba(12, 12, 14, 0.1) 0%, rgba(12, 12, 14, 0.34) 100%);
}

.ws-html-hero-photo-copy {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(46%, 560px);
  padding: 56px;
  color: #fff;
}

.ws-html-hero-photo-copy h1,
.ws-html-hero-photo-copy p,
.ws-html-hero-photo-copy .ws-html-proof-chip {
  color: #fff;
}

.ws-html-hero-photo-copy .ws-html-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.ws-html-hero-photo-copy .ws-html-button-secondary {
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff !important;
}

.ws-html-hero-photo-copy .ws-html-button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
}

.ws-html-hero-photo-copy .ws-html-proof-chip-row {
  gap: 10px;
}

.ws-html-hero-photo-copy .ws-html-proof-chip {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.ws-html-media-caption {
  padding: 14px 18px 18px;
  background: rgba(255, 253, 250, 0.92);
}

.ws-html-media-caption strong,
.ws-html-media-caption span {
  display: block;
}

.ws-html-media-caption strong {
  color: var(--ws-color-primary-dark);
  font-size: 0.95rem;
  font-weight: 800;
}

.ws-html-media-caption span {
  color: var(--ws-color-text-soft);
  font-size: 0.88rem;
  margin-top: 4px;
}

.ws-html-media-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(20, 32, 28, 0.82);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ws-html-media-badge.is-bottom-left {
  top: auto;
  bottom: 16px;
  left: 16px;
}

.ws-html-wide-shot .ws-html-media-badge.is-bottom-left {
  bottom: 92px;
}

.ws-html-evidence-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
}

.ws-html-evidence-card {
  overflow: hidden;
  border-radius: 22px;
  background: var(--ws-color-surface);
  border: 1px solid var(--ws-color-border);
  box-shadow: 0 18px 42px rgba(32, 37, 45, 0.1);
}

.ws-html-evidence-card.is-large {
  grid-row: span 2;
}

.ws-html-evidence-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ws-html-evidence-card:not(.is-large) img {
  aspect-ratio: 16 / 12;
}

.ws-html-evidence-caption {
  padding: 14px 16px 16px;
  background: rgba(255, 253, 250, 0.94);
}

.ws-html-evidence-caption strong,
.ws-html-evidence-caption span {
  display: block;
}

.ws-html-evidence-caption strong {
  color: var(--ws-color-primary-dark);
  font-size: 0.95rem;
  font-weight: 800;
}

.ws-html-evidence-caption span {
  color: var(--ws-color-text-soft);
  font-size: 0.88rem;
  line-height: 1.45;
  margin-top: 4px;
}

.ws-html-proof-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.ws-html-proof-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(173, 124, 47, 0.1);
  color: var(--ws-color-primary-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.ws-html-system-tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.ws-html-system-tab {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(173, 124, 47, 0.16);
  border-radius: 999px;
  background: rgba(173, 124, 47, 0.1);
  color: var(--ws-color-primary-dark);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.ws-html-system-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(173, 124, 47, 0.28);
  background: rgba(173, 124, 47, 0.16);
  color: var(--ws-color-primary-dark);
}

.ws-html-system-tab:active {
  background: rgba(173, 124, 47, 0.16);
  border-color: rgba(173, 124, 47, 0.28);
  color: var(--ws-color-primary-dark);
  transform: translateY(0);
}

.ws-html-system-tab:focus,
.ws-html-system-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(173, 124, 47, 0.18);
}

.ws-html-system-tab.is-active {
  background: var(--ws-color-primary);
  border-color: var(--ws-color-primary);
  color: #fff;
  box-shadow: none;
}

.ws-html-system-switcher {
  display: grid;
  gap: 18px;
}

.ws-html-system-panel-stack {
  position: relative;
}

.ws-html-system-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(28px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.34s ease;
}

.ws-html-system-panel.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.ws-html-system-visual {
  background: rgba(255, 255, 255, 0.7);
}

.ws-html-system-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #fffdfa;
}

.ws-html-card-meta {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--ws-color-primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ws-html-card-link {
  color: var(--ws-color-primary-dark);
  text-decoration: none;
  font-weight: 800;
}

.ws-html-card-link:hover {
  text-decoration: underline;
}

.ws-html-article-list {
  display: grid;
  gap: 14px;
}

.ws-html-article-item {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(32, 37, 45, 0.08);
}

.ws-html-article-item strong,
.ws-html-article-item span {
  display: block;
}

.ws-html-article-item strong {
  color: var(--ws-color-primary-dark);
  font-size: 1rem;
  font-weight: 800;
}

.ws-html-article-item span {
  color: var(--ws-color-text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.ws-posts-feed {
  margin-top: 28px;
}

.ws-posts-feed .elementor-posts-container,
.ws-posts-feed .e-loop-items {
  gap: 24px !important;
}

.ws-posts-feed .elementor-post,
.ws-posts-feed .elementor-post__card,
.ws-posts-feed .e-loop-item,
.ws-posts-feed article {
  overflow: hidden;
  border-radius: var(--ws-radius-card);
  background: var(--ws-color-surface);
  border: 1px solid var(--ws-color-border);
  box-shadow: 0 20px 50px var(--ws-color-shadow);
}

.ws-posts-feed .elementor-post__thumbnail,
.ws-posts-feed .elementor-post__thumbnail__link {
  display: block;
}

.ws-posts-feed .elementor-post__thumbnail img,
.ws-posts-feed img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ws-posts-feed .elementor-post__text,
.ws-posts-feed .elementor-post__content,
.ws-posts-feed .elementor-post__card .elementor-post__text,
.ws-posts-feed article .elementor-widget-container,
.ws-posts-feed article > div:last-child {
  padding: 22px;
}

.ws-posts-feed .elementor-post__meta-data,
.ws-posts-feed .elementor-post__excerpt p,
.ws-posts-feed .elementor-post__excerpt,
.ws-posts-feed article p {
  color: var(--ws-color-text-soft);
  line-height: 1.6;
}

.ws-posts-feed .elementor-post__title,
.ws-posts-feed article h3 {
  margin: 0 0 10px;
  color: var(--ws-color-primary-dark);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.12;
}

.ws-posts-feed .elementor-post__title a,
.ws-posts-feed article h3 a {
  color: var(--ws-color-primary-dark);
  text-decoration: none;
}

.ws-posts-feed .elementor-post__title a:hover,
.ws-posts-feed article h3 a:hover {
  text-decoration: underline;
}

.ws-posts-feed .elementor-post__read-more,
.ws-posts-feed .elementor-post__read-more:hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 12px;
  padding: 0 18px;
  border-radius: var(--ws-radius-pill);
  background: rgba(173, 124, 47, 0.1);
  color: var(--ws-color-primary-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.ws-html-post-shell {
  display: grid;
  gap: 28px;
}

.ws-html-post-hero {
  display: grid;
  gap: 18px;
}

.ws-html-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0;
  color: var(--ws-color-text-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.ws-html-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ws-html-post-meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(173, 124, 47, 0.55);
}

.ws-html-post-meta span:first-child::before {
  display: none;
}

.ws-html-post-cover {
  overflow: hidden;
  border-radius: calc(var(--ws-radius-card) + 2px);
  border: 1px solid var(--ws-color-border);
  box-shadow: 0 22px 56px rgba(32, 37, 45, 0.12);
}

.ws-html-post-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ws-html-post-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.52fr);
  align-items: start;
}

.ws-html-post-main {
  min-width: 0;
}

.ws-html-post-aside {
  position: sticky;
  top: 108px;
  min-width: 0;
}

.ws-html-post-sidebar-stack {
  display: grid;
  gap: 18px;
}

.ws-html-prose {
  color: var(--ws-color-text);
  font-size: 1.06rem;
  line-height: 1.82;
}

.ws-html-prose > *:first-child {
  margin-top: 0;
}

.ws-html-prose > * + * {
  margin-top: 18px;
}

.ws-html-prose h2,
.ws-html-prose h3,
.ws-html-prose h4 {
  margin: 34px 0 0;
  color: var(--ws-color-primary-dark);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.ws-html-prose h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.ws-html-prose h3 {
  font-size: clamp(1.18rem, 2.2vw, 1.5rem);
}

.ws-html-prose h4 {
  font-size: 1.06rem;
  letter-spacing: -0.01em;
}

.ws-html-prose p,
.ws-html-prose li,
.ws-html-prose blockquote,
.ws-html-prose figcaption {
  color: var(--ws-color-text);
}

.ws-html-prose strong {
  color: var(--ws-color-primary-dark);
}

.ws-html-prose a {
  color: var(--ws-color-primary-dark);
  font-weight: 700;
  text-decoration-color: rgba(133, 93, 33, 0.28);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.ws-html-prose a:hover {
  text-decoration-color: rgba(133, 93, 33, 0.6);
}

.ws-html-prose ul,
.ws-html-prose ol {
  display: grid;
  gap: 10px;
  padding-left: 1.2em;
}

.ws-html-prose li::marker {
  color: var(--ws-color-primary);
}

.ws-html-prose blockquote {
  margin: 26px 0;
  padding: 18px 22px;
  border-left: 4px solid rgba(173, 124, 47, 0.55);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
}

.ws-html-prose hr {
  margin: 30px 0;
  border: 0;
  border-top: 1px solid rgba(32, 37, 45, 0.08);
}

.ws-html-inline-cta {
  margin-top: 32px;
}

.ws-html-inline-cta .ws-html-surface,
.ws-html-inline-cta .ws-html-note {
  box-shadow: 0 18px 46px rgba(32, 37, 45, 0.08);
}

.ws-html-post-callout {
  display: grid;
  gap: 14px;
}

.ws-html-post-callout h3,
.ws-html-post-callout p {
  margin: 0;
}

.ws-html-post-kicker {
  color: var(--ws-color-primary-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.single-post .ws-reveal,
.single .ws-reveal,
.elementor-location-single .ws-reveal {
  opacity: 1 !important;
  transform: none !important;
}

.home .ws-html-hero .ws-html-image-cover img {
  object-position: center -30px;
}

.single-post .elementor-widget-shortcode .ws-html-section h1,
.single-post .elementor-widget-shortcode .ws-html-section h2,
.single-post .elementor-widget-shortcode .ws-html-section h3,
.single-post .elementor-widget-shortcode .ws-html-section h4,
.elementor-location-single .elementor-widget-shortcode .ws-html-section h1,
.elementor-location-single .elementor-widget-shortcode .ws-html-section h2,
.elementor-location-single .elementor-widget-shortcode .ws-html-section h3,
.elementor-location-single .elementor-widget-shortcode .ws-html-section h4 {
  color: var(--ws-color-primary-dark);
}

.single-post .elementor-widget-shortcode .ws-html-section h1,
.single-post .elementor-widget-shortcode .ws-html-section h2,
.single-post .elementor-widget-shortcode .ws-html-section h3,
.elementor-location-single .elementor-widget-shortcode .ws-html-section h1,
.elementor-location-single .elementor-widget-shortcode .ws-html-section h2,
.elementor-location-single .elementor-widget-shortcode .ws-html-section h3 {
  color: var(--ws-color-primary);
}

.single-post .elementor-widget-shortcode .ws-html-section p,
.single-post .elementor-widget-shortcode .ws-html-section li,
.single-post .elementor-widget-shortcode .ws-html-post-meta,
.elementor-location-single .elementor-widget-shortcode .ws-html-section p,
.elementor-location-single .elementor-widget-shortcode .ws-html-section li,
.elementor-location-single .elementor-widget-shortcode .ws-html-post-meta {
  color: var(--ws-color-text);
}

.single-post .elementor-widget-shortcode .ws-html-post-meta,
.elementor-location-single .elementor-widget-shortcode .ws-html-post-meta {
  color: var(--ws-color-text-soft);
}

.single-post .elementor-widget-shortcode .ws-html-prose h2,
.single-post .elementor-widget-shortcode .ws-html-prose h3,
.single-post .elementor-widget-shortcode .ws-html-prose h4,
.elementor-location-single .elementor-widget-shortcode .ws-html-prose h2,
.elementor-location-single .elementor-widget-shortcode .ws-html-prose h3,
.elementor-location-single .elementor-widget-shortcode .ws-html-prose h4 {
  color: var(--ws-color-primary-dark);
}

.single-post .elementor-widget-shortcode .ws-html-prose p,
.single-post .elementor-widget-shortcode .ws-html-prose ul,
.single-post .elementor-widget-shortcode .ws-html-prose ol,
.single-post .elementor-widget-shortcode .ws-html-prose figure,
.single-post .elementor-widget-shortcode .ws-html-prose blockquote,
.elementor-location-single .elementor-widget-shortcode .ws-html-prose p,
.elementor-location-single .elementor-widget-shortcode .ws-html-prose ul,
.elementor-location-single .elementor-widget-shortcode .ws-html-prose ol,
.elementor-location-single .elementor-widget-shortcode .ws-html-prose figure,
.elementor-location-single .elementor-widget-shortcode .ws-html-prose blockquote {
  margin: 0;
}

.single-post .elementor-widget-shortcode .ws-html-prose img,
.elementor-location-single .elementor-widget-shortcode .ws-html-prose img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.single-post .elementor-widget-shortcode .ws-html-prose figure,
.elementor-location-single .elementor-widget-shortcode .ws-html-prose figure {
  overflow: hidden;
  border-radius: 20px;
}

.ws-html-proof-bar {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ws-html-proof-stat {
  padding: 22px 20px;
  border-radius: 20px;
  background: var(--ws-color-surface);
  border: 1px solid var(--ws-color-border);
  box-shadow: 0 16px 36px rgba(32, 37, 45, 0.08);
}

.ws-html-proof-stat strong,
.ws-html-proof-stat span {
  display: block;
}

.ws-html-proof-stat strong {
  color: var(--ws-color-primary-dark);
  font-size: 1rem;
  font-weight: 800;
}

.ws-html-proof-stat span {
  color: var(--ws-color-text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-top: 6px;
}

.ws-html-quote-card {
  position: relative;
  padding-top: 34px;
}

.ws-html-quote-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 16px;
  background: rgba(173, 124, 47, 0.14);
  color: var(--ws-color-primary-dark);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.ws-html-quote-card strong,
.ws-html-quote-card span {
  display: block;
}

.ws-html-quote-card strong {
  color: var(--ws-color-primary-dark);
  font-size: 0.96rem;
  font-weight: 800;
  margin-top: 18px;
}

.ws-html-quote-card span {
  color: var(--ws-color-text-soft);
  font-size: 0.9rem;
  margin-top: 4px;
}

.ws-html-detail-grid,
.ws-html-form-field-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ws-html-detail-item,
.ws-html-form-field {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(32, 37, 45, 0.08);
}

.ws-html-detail-item strong,
.ws-html-detail-item span {
  display: block;
}

.ws-html-detail-item strong {
  color: var(--ws-color-primary-dark);
  font-size: 0.95rem;
  font-weight: 800;
}

.ws-html-detail-item span,
.ws-html-form-field {
  color: var(--ws-color-text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.ws-html-detail-item span {
  margin-top: 4px;
}

.ws-html-contact-form-grid {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
  align-items: start;
}

.ws-html-contact-form-grid > .ws-html-surface,
.ws-html-contact-form-grid > .ws-html-note {
  width: 100%;
  max-width: 980px;
}

.ws-html-contact-form-grid > .ws-html-note {
  margin-top: -4px;
}

.ws-html-contact-form-grid .ws-html-checklist {
  display: grid;
  gap: 12px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ws-html-contact-form-grid .ws-html-checklist li + li {
  margin-top: 0;
}

.ws-html-contact-methods {
  display: grid;
  gap: 16px;
}

.ws-html-contact-method {
  padding: 20px;
  border-radius: 18px;
  background: var(--ws-color-surface);
  border: 1px solid var(--ws-color-border);
  box-shadow: 0 14px 30px rgba(32, 37, 45, 0.08);
}

.ws-html-contact-method a {
  color: var(--ws-color-primary-dark);
  text-decoration: none;
  font-weight: 700;
}

.ws-html-contact-method a:hover {
  text-decoration: underline;
}

.ws-html-form-shell {
  margin-top: 18px;
  padding: 22px;
  border-radius: 20px;
  border: 1.5px dashed rgba(173, 124, 47, 0.3);
  background: rgba(255, 255, 255, 0.48);
}

.ws-html-form-shell h3 {
  margin-bottom: 10px;
}

.ws-html-form-field.is-full {
  grid-column: 1 / -1;
}

.ws-wpforms-wrap .wpforms-container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.ws-wpforms-wrap {
  margin-top: 18px;
  padding: 24px;
  border-radius: var(--ws-radius-card);
  border: 1px solid var(--ws-color-border);
  background: var(--ws-color-surface);
  box-shadow: 0 20px 50px var(--ws-color-shadow);
}

.ws-wpforms-wrap form,
.ws-wpforms-wrap .wpforms-field-container,
.ws-wpforms-wrap .wpforms-field,
.ws-wpforms-wrap .wpforms-field-row,
.ws-wpforms-wrap .wpforms-field-row-block {
  width: 100% !important;
  max-width: none !important;
}

.ws-wpforms-wrap .wpforms-field {
  padding: 0 0 16px !important;
}

.ws-wpforms-wrap .wpforms-field-label {
  color: var(--ws-color-text);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.ws-wpforms-wrap .wpforms-field-sublabel {
  margin-top: 4px !important;
}

.ws-wpforms-wrap input[type="text"],
.ws-wpforms-wrap input[type="email"],
.ws-wpforms-wrap input[type="tel"],
.ws-wpforms-wrap input[type="url"],
.ws-wpforms-wrap select,
.ws-wpforms-wrap textarea {
  width: 100%;
  max-width: none !important;
  min-height: 52px;
  border-radius: 14px !important;
  border: 1px solid rgba(32, 37, 45, 0.12) !important;
  background: rgba(255, 255, 255, 0.72) !important;
  color: var(--ws-color-text) !important;
  padding: 12px 14px !important;
  box-shadow: none !important;
}

.ws-wpforms-wrap input.wpforms-field-medium,
.ws-wpforms-wrap input.wpforms-field-large,
.ws-wpforms-wrap select.wpforms-field-medium,
.ws-wpforms-wrap select.wpforms-field-large,
.ws-wpforms-wrap textarea.wpforms-field-medium,
.ws-wpforms-wrap textarea.wpforms-field-large {
  width: 100% !important;
  max-width: none !important;
}

.ws-wpforms-wrap .wpforms-field-row {
  display: grid !important;
  gap: 14px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ws-wpforms-wrap .wpforms-field-row-block {
  padding: 0 !important;
}

.ws-wpforms-wrap textarea {
  min-height: 130px;
}

.ws-wpforms-wrap button[type="submit"],
.ws-wpforms-wrap .wpforms-submit {
  min-height: 52px !important;
  padding: 0 24px !important;
  border-radius: var(--ws-radius-pill) !important;
  background: var(--ws-color-primary) !important;
  color: #fff !important;
  border: 1px solid var(--ws-color-primary) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  box-shadow: 0 14px 28px rgba(173, 124, 47, 0.22) !important;
}

.ws-wpforms-wrap button[type="submit"]:hover,
.ws-wpforms-wrap .wpforms-submit:hover {
  background: var(--ws-color-primary-dark) !important;
  border-color: var(--ws-color-primary-dark) !important;
}

.ws-html-cta h2,
.ws-html-cta p {
  color: #fff;
}

.ws-html-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ws-html-card .ws-html-actions {
  margin-top: 20px;
}

.ws-html-button-primary,
.ws-html-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--ws-radius-pill);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: 0.18s ease;
}

.ws-html-button-primary {
  background: var(--ws-color-primary);
  color: #fff !important;
  border: 1px solid var(--ws-color-primary);
  box-shadow: 0 14px 28px rgba(173, 124, 47, 0.22);
}

.ws-html-button-primary:hover {
  background: var(--ws-color-primary-dark);
  border-color: var(--ws-color-primary-dark);
}

.ws-html-button-secondary {
  background: transparent;
  color: var(--ws-color-text) !important;
  border: 1px solid rgba(32, 37, 45, 0.16);
}

.ws-html-button-secondary:hover {
  background: rgba(32, 37, 45, 0.04);
}

.ws-html-cta .ws-html-button-secondary {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35);
}

.ws-html-cta .ws-html-button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ws-html-muted {
  color: var(--ws-color-text-soft) !important;
}

.ws-html-tight > *:last-child,
.ws-html-card > *:last-child,
.ws-html-surface > *:last-child,
.ws-html-note > *:last-child,
.ws-html-cta > *:last-child {
  margin-bottom: 0;
}

.ws-section {
  padding: 72px 0;
}

.ws-section .elementor-container,
.ws-section .e-con-inner {
  max-width: var(--ws-max-width);
}

.ws-hero {
  position: relative;
  overflow: hidden;
  background: var(--ws-gradient-hero);
}

.ws-hero::before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(173, 124, 47, 0.18) 0%, rgba(173, 124, 47, 0) 72%);
  pointer-events: none;
}

.ws-site-header {
  z-index: 1000;
  background: rgba(20, 32, 28, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  overflow: visible !important;
  opacity: 1;
  transition:
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.26s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

@keyframes wsHeaderReveal {
  0% {
    transform: translate3d(0, calc(-100% - 18px), 0);
    opacity: 0.02;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.ws-site-header.is-scroll-header-ready {
  position: fixed !important;
  top: var(--ws-header-top-offset);
  left: 0;
  right: 0;
  width: 100%;
}

.ws-site-header .elementor-container,
.ws-site-header .e-con-inner {
  max-width: var(--ws-max-width);
  min-height: 84px;
  align-items: center;
  overflow: visible !important;
}

.ws-site-header img {
  max-height: 52px;
  width: auto;
}

.ws-site-header.is-sticky-elevated {
  background: rgba(20, 32, 28, 0.97);
  box-shadow: 0 16px 34px rgba(20, 32, 28, 0.22);
  border-bottom-color: rgba(255, 255, 255, 0.09);
}

.ws-site-header.is-sticky-hidden {
  transform: translate3d(0, calc(-100% - 10px), 0);
  opacity: 0.02;
}

.ws-site-header.is-sticky-revealing {
  animation: wsHeaderReveal 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.ws-site-header .elementor-column,
.ws-site-header .elementor-widget-wrap,
.ws-site-header .elementor-widget,
.ws-header-nav,
.ws-header-nav .elementor-widget-container {
  overflow: visible !important;
}

.ws-header-nav .elementor-item,
.ws-header-nav .elementor-nav-menu--main .elementor-item {
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ws-header-nav .elementor-item:hover,
.ws-header-nav .elementor-item:focus,
.ws-header-nav .elementor-item.elementor-item-active {
  color: var(--ws-color-primary) !important;
}

.ws-header-nav .elementor-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0 !important;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff !important;
}

.ws-header-nav .elementor-menu-toggle:hover,
.ws-header-nav .elementor-menu-toggle:focus {
  background: rgba(173, 124, 47, 0.12);
  border-color: rgba(173, 124, 47, 0.45);
  color: var(--ws-color-primary) !important;
}

.ws-header-nav .elementor-nav-menu--dropdown,
.ws-header-nav .elementor-nav-menu--dropdown.elementor-nav-menu__container {
  overflow-x: hidden;
  overflow-y: auto;
  margin-top: 14px;
  padding: 14px;
  max-height: calc(100vh - 110px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(20, 32, 28, 0.98) !important;
  box-shadow: 0 24px 56px rgba(20, 32, 28, 0.32);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.ws-header-nav .elementor-nav-menu--dropdown a.elementor-item,
.ws-header-nav .elementor-nav-menu--dropdown .elementor-item {
  min-height: 48px;
  padding: 12px 14px !important;
  border: 0 !important;
  border-radius: 14px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.ws-header-nav .elementor-nav-menu--dropdown a.elementor-item:hover,
.ws-header-nav .elementor-nav-menu--dropdown a.elementor-item:focus,
.ws-header-nav .elementor-nav-menu--dropdown .elementor-item.elementor-item-active {
  background: rgba(173, 124, 47, 0.12);
  color: var(--ws-color-primary) !important;
}

.ws-header-nav .elementor-nav-menu--dropdown .sub-arrow,
.ws-header-nav .elementor-nav-menu--dropdown .elementor-sub-item .sub-arrow {
  color: rgba(255, 255, 255, 0.72);
}

.ws-header-nav .elementor-nav-menu--dropdown .menu-item-book-audit > a,
.ws-header-nav .elementor-nav-menu--dropdown .book-an-ai-audit > a {
  margin-top: 8px;
  background: var(--ws-color-primary) !important;
  color: #fff !important;
  border-radius: 999px;
  justify-content: center;
  text-align: center;
}

.ws-header-nav .elementor-nav-menu--dropdown .menu-item-book-audit > a:hover,
.ws-header-nav .elementor-nav-menu--dropdown .book-an-ai-audit > a:hover {
  background: var(--ws-color-primary-dark) !important;
}

.ws-header-cta .elementor-button,
a.ws-header-cta,
.ws-header-cta a {
  background: var(--ws-color-primary) !important;
  color: #fff !important;
  border-radius: var(--ws-radius-pill) !important;
  border: 1px solid var(--ws-color-primary) !important;
  padding: 14px 22px !important;
  box-shadow: 0 14px 28px rgba(173, 124, 47, 0.18);
}

.ws-header-cta .elementor-button:hover,
a.ws-header-cta:hover,
.ws-header-cta a:hover {
  background: var(--ws-color-primary-dark) !important;
  border-color: var(--ws-color-primary-dark) !important;
}

.ws-proof-strip {
  background: var(--ws-color-surface);
}

.ws-proof-strip .elementor-widget-container,
.ws-proof-strip .elementor-icon-box-wrapper {
  font-weight: 600;
}

.ws-proof-strip ul,
.ws-proof-strip ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.ws-proof-strip li {
  margin: 0;
  padding-left: 0;
}

.ws-card,
.ws-surface {
  background: var(--ws-color-surface);
  border: 1px solid var(--ws-color-border);
  border-radius: var(--ws-radius-card);
  box-shadow: 0 20px 50px var(--ws-color-shadow);
  padding: 28px;
}

.ws-card h3,
.ws-surface h3 {
  margin-bottom: 12px;
}

.ws-button-primary .elementor-button,
a.ws-button-primary,
.ws-button-primary a {
  background: var(--ws-color-primary) !important;
  color: #fff !important;
  border-radius: var(--ws-radius-pill) !important;
  border: 1px solid var(--ws-color-primary) !important;
  padding: 15px 24px !important;
  box-shadow: 0 14px 28px rgba(173, 124, 47, 0.22);
}

.ws-button-primary .elementor-button:hover,
a.ws-button-primary:hover,
.ws-button-primary a:hover {
  background: var(--ws-color-primary-dark) !important;
  border-color: var(--ws-color-primary-dark) !important;
}

.ws-button-secondary .elementor-button,
a.ws-button-secondary,
.ws-button-secondary a {
  background: transparent !important;
  color: var(--ws-color-text) !important;
  border-radius: var(--ws-radius-pill) !important;
  border: 1px solid rgba(32, 37, 45, 0.16) !important;
  padding: 15px 24px !important;
}

.ws-button-secondary .elementor-button:hover,
a.ws-button-secondary:hover,
.ws-button-secondary a:hover {
  background: rgba(32, 37, 45, 0.04) !important;
}

.ws-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: var(--ws-radius-pill);
  background: rgba(173, 124, 47, 0.12);
  color: var(--ws-color-primary-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ws-muted,
.ws-muted p {
  color: var(--ws-color-text-soft);
}

.ws-grid-3 .elementor-container,
.ws-grid-3 .e-con-inner {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ws-cta-band {
  background: linear-gradient(135deg, var(--ws-color-deep-ink) 0%, #20342d 100%);
  color: #fff;
  border-radius: 24px;
  padding: 40px;
}

.ws-cta-band h2,
.ws-cta-band h3,
.ws-cta-band p,
.ws-cta-band a {
  color: #fff;
}

.ws-cta-band .ws-button-secondary .elementor-button,
.ws-cta-band a.ws-button-secondary,
.ws-cta-band .ws-button-secondary a {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

.ws-cta-band .ws-button-secondary .elementor-button:hover,
.ws-cta-band a.ws-button-secondary:hover,
.ws-cta-band .ws-button-secondary a:hover {
  background: rgba(255, 255, 255, 0.08) !important;
}

.ws-divider {
  height: 1px;
  background: var(--ws-color-border);
  margin: 20px 0 0;
}

.rtl .ws-hero,
.rtl .ws-section {
  direction: rtl;
}

.rtl .ws-button-primary .elementor-button,
.rtl .ws-button-secondary .elementor-button {
  text-align: center;
}

body.ws-lang-ar .ws-header-en,
body.ws-lang-ar .ws-footer-en,
body.rtl .ws-header-en,
body.rtl .ws-footer-en {
  display: none !important;
}

body:not(.ws-lang-ar):not(.rtl) .ws-header-ar,
body:not(.ws-lang-ar):not(.rtl) .ws-footer-ar {
  display: none !important;
}

.ws-html-ar {
  direction: rtl;
  text-align: right;
  font-family: "IBM Plex Sans Arabic", "Tajawal", "Noto Kufi Arabic", Arial, sans-serif;
}

.ws-html-ar .ws-html-section h1,
.ws-html-ar .ws-html-section h2,
.ws-html-ar .ws-html-section h3,
.ws-html-ar .ws-html-prose h2,
.ws-html-ar .ws-html-prose h3,
.ws-html-ar .ws-html-prose h4 {
  letter-spacing: 0;
  line-height: 1.16;
}

.ws-html-ar .ws-html-section h1 {
  font-size: clamp(2.7rem, 4.8vw, 4.45rem);
  line-height: 1.12;
}

.ws-html-ar .ws-html-section h2 {
  font-size: clamp(2rem, 3.35vw, 3.05rem);
  line-height: 1.15;
}

.ws-html-ar .ws-html-section h3 {
  font-size: clamp(1.32rem, 1.9vw, 1.72rem);
  line-height: 1.24;
}

.ws-html-ar .ws-html-section p,
.ws-html-ar .ws-html-section li,
.ws-html-ar .ws-html-prose {
  line-height: 1.9;
}

.ws-html-ar .ws-html-section ul,
.ws-html-ar .ws-html-prose ul,
.ws-html-ar .ws-html-prose ol {
  padding-left: 0;
  padding-right: 1.2em;
}

.ws-html-ar .ws-html-checklist {
  padding-right: 0;
}

.ws-html-ar .ws-html-checklist li {
  padding-left: 0;
  padding-right: 52px;
}

.ws-html-ar .ws-html-checklist li::before {
  left: auto;
  right: 0;
}

.ws-html-ar .ws-html-actions,
.ws-html-ar .ws-html-proof-chip-row,
.ws-html-ar .ws-html-system-tab-row,
.ws-html-ar .ws-html-post-meta,
.ws-html-ar .ws-html-contact-methods {
  justify-content: flex-start;
}

.ws-html-ar .ws-html-prose blockquote {
  border-left: 0;
  border-right: 4px solid rgba(173, 124, 47, 0.55);
}

.ws-html-ar .ws-html-media-badge.is-bottom-left {
  left: auto;
  right: 18px;
}

.ws-html-ar .ws-html-footer-top,
.ws-html-ar .ws-html-footer-meta {
  direction: rtl;
}

.ws-html-ar .ws-html-card,
.ws-html-ar .ws-html-surface,
.ws-html-ar .ws-html-note,
.ws-html-ar .ws-html-cta {
  min-width: 0;
}

.ws-html-ar .ws-html-cta h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.ws-html-ar .ws-html-contact-form-grid {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
  align-items: start;
}

.ws-html-ar .ws-html-contact-form-grid .ws-html-note {
  align-self: start;
}

.ws-html-ar .ws-html-media-frame > img,
.ws-html-ar .ws-html-post-cover > img,
.ws-html-ar .ws-html-evidence-card > img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  object-fit: cover;
}

.ws-html-ar .ws-html-image-cover > img {
  aspect-ratio: 4 / 4.4 !important;
  height: auto !important;
  object-position: center top;
}

.ws-html-ar .ws-html-wide-shot > img {
  aspect-ratio: 16 / 10 !important;
  height: auto !important;
}

.ws-html-ar .ws-html-portrait-shot > img {
  aspect-ratio: 4 / 5.2 !important;
  height: auto !important;
  object-position: center top;
}

.ws-html-ar .ws-html-system-visual > img {
  aspect-ratio: 16 / 10 !important;
  height: auto !important;
  object-fit: contain !important;
  background: #fffdfa;
}

.ws-html-ar .ws-html-evidence-card > img {
  aspect-ratio: 16 / 10 !important;
  height: auto !important;
}

.ws-html-ar .ws-html-evidence-card:not(.is-large) > img {
  aspect-ratio: 16 / 12 !important;
}

.ws-html-ar .ws-html-post-cover > img {
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
}

.ws-html-ar .ws-wpforms-wrap {
  direction: rtl;
  text-align: right;
  width: 100%;
}

.ws-html-ar .ws-wpforms-wrap .wpforms-field-container {
  display: grid !important;
  gap: 0 16px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ws-html-ar .ws-wpforms-wrap .wpforms-field {
  min-width: 0;
}

.ws-html-ar .ws-wpforms-wrap .wpforms-field-textarea,
.ws-html-ar .ws-wpforms-wrap .wpforms-field-html,
.ws-html-ar .ws-wpforms-wrap .wpforms-field-pagebreak {
  grid-column: 1 / -1;
}

.ws-html-ar .ws-wpforms-wrap input,
.ws-html-ar .ws-wpforms-wrap select,
.ws-html-ar .ws-wpforms-wrap textarea {
  width: 100% !important;
  max-width: none !important;
  direction: rtl;
  text-align: right;
}

.ws-html-ar .ws-wpforms-wrap .wpforms-field-label,
.ws-html-ar .ws-wpforms-wrap .wpforms-field-sublabel {
  text-align: right;
}

.ws-html-ar .ws-wpforms-wrap .wpforms-submit-container {
  text-align: right;
}

.ws-html-site-header {
  position: relative;
  z-index: 30;
  background: rgba(20, 32, 28, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.ws-html-header-inner {
  max-width: var(--ws-max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
}

.ws-html-logo,
.ws-html-footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.ws-html-logo img,
.ws-html-footer-logo img {
  display: block;
  width: auto;
}

.ws-html-logo img {
  max-height: 52px;
}

.ws-html-desktop-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.ws-html-desktop-nav a,
.ws-html-mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.18s ease;
}

.ws-html-desktop-nav a:hover,
.ws-html-desktop-nav a:focus,
.ws-html-mobile-nav a:hover,
.ws-html-mobile-nav a:focus,
.ws-html-desktop-nav a.is-active,
.ws-html-mobile-nav a.is-active {
  color: var(--ws-color-primary);
}

.ws-html-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--ws-radius-pill);
  background: var(--ws-color-primary);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--ws-color-primary);
  box-shadow: 0 14px 28px rgba(173, 124, 47, 0.18);
  transition: 0.18s ease;
}

.ws-html-header-cta:hover {
  background: var(--ws-color-primary-dark);
  border-color: var(--ws-color-primary-dark);
}

.ws-html-mobile-menu {
  display: none;
  position: relative;
}

.ws-html-mobile-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--ws-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

.ws-html-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.ws-html-mobile-nav {
  display: grid;
  gap: 12px;
  min-width: 240px;
  margin-top: 12px;
  padding: 18px;
  position: absolute;
  right: 0;
  background: var(--ws-color-deep-ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.ws-html-mobile-nav .ws-html-header-cta {
  width: 100%;
  margin-top: 4px;
}

.ws-html-site-footer {
  background: var(--ws-color-deep-ink);
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ws-html-footer-inner {
  max-width: var(--ws-max-width);
  margin: 0 auto;
  padding: 56px 24px 28px;
}

.ws-html-footer-top {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
}

.ws-html-footer-logo img {
  max-height: 54px;
}

.ws-html-footer-brand p,
.ws-html-footer-meta,
.ws-html-footer-meta a {
  color: rgba(255, 255, 255, 0.76);
}

.ws-html-footer-brand p {
  max-width: 520px;
  margin: 18px 0 0;
  line-height: 1.7;
}

.ws-html-footer-links {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ws-html-footer-col h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.2;
}

.ws-html-footer-col a,
.ws-html-footer-social a,
.ws-html-footer-meta a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.ws-html-footer-col {
  display: grid;
  gap: 10px;
}

.ws-html-footer-col a:hover,
.ws-html-footer-social a:hover,
.ws-html-footer-meta a:hover {
  color: var(--ws-color-primary);
}

.ws-html-footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.ws-html-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: var(--ws-radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 600;
}

.ws-html-footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .ws-html-section {
    padding: 48px 0;
  }

  .ws-html-stat-grid {
    grid-template-columns: 1fr;
  }

  .ws-html-proof-bar {
    grid-template-columns: 1fr;
  }

  .ws-html-detail-grid,
  .ws-html-form-field-grid {
    grid-template-columns: 1fr;
  }

  .ws-html-grid-2,
  .ws-html-grid-3,
  .ws-html-grid-2x2 {
    grid-template-columns: 1fr;
  }

  .ws-html-header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .ws-html-desktop-nav,
  .ws-html-header-inner > .ws-html-header-cta {
    display: none;
  }

  .ws-html-mobile-menu {
    display: block;
  }

  .ws-html-footer-top,
  .ws-html-footer-links {
    grid-template-columns: 1fr;
  }

  .ws-html-evidence-grid {
    grid-template-columns: 1fr;
  }

  .ws-html-post-layout {
    grid-template-columns: 1fr;
  }

  .ws-html-post-aside {
    position: static;
  }

  .ws-html-evidence-card.is-large {
    grid-row: auto;
  }

  .ws-section {
    padding: 48px 0;
  }

  .ws-grid-3 .elementor-container,
  .ws-grid-3 .e-con-inner {
    grid-template-columns: 1fr;
  }

  .ws-header-nav .elementor-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .ws-header-nav .elementor-widget-container {
    display: flex;
    justify-content: flex-end;
  }

  .ws-header-nav .elementor-nav-menu--dropdown,
  .ws-header-nav .elementor-nav-menu--dropdown.elementor-nav-menu__container {
    left: auto !important;
    right: 0 !important;
    width: min(320px, calc(100vw - 32px)) !important;
  }
}

@media (max-width: 767px) {
  :root {
    --ws-header-height: 72px;
  }

  body.admin-bar {
    --ws-header-top-offset: 46px;
  }

  .ws-site-header .elementor-container,
  .ws-site-header .e-con-inner {
    min-height: 72px;
  }

  .ws-site-header img {
    max-height: 44px;
  }

  .ws-site-header .ws-header-cta,
  .ws-site-header .ws-header-cta .elementor-button,
  .ws-site-header a.ws-header-cta {
    display: none !important;
  }

  .home .ws-html-hero {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .home .ws-html-hero .ws-html-grid-2 {
    gap: 20px;
    align-items: start;
  }

  .home .ws-html-hero .ws-html-eyebrow {
    margin-bottom: 12px;
  }

  .home .ws-html-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(2.55rem, 12.4vw, 3.8rem);
    line-height: 0.92;
  }

  .home .ws-html-hero p {
    margin-bottom: 0;
    font-size: 1.04rem;
    line-height: 1.68;
  }

  .home .ws-html-hero .ws-html-actions {
    margin-top: 18px;
    gap: 12px;
  }

  .home .ws-html-hero .ws-html-proof-chip-row {
    margin-top: 16px;
  }

  .home .ws-html-hero .ws-html-media-stack {
    gap: 14px;
  }

  .ws-html-section {
    padding: 32px 0;
  }

  .ws-html-inner {
    padding: 0 18px;
  }

  .ws-html-card,
  .ws-html-surface,
  .ws-html-note,
  .ws-html-cta {
    padding: 22px;
  }

  .ws-html-post-cover img {
    aspect-ratio: 4 / 3;
  }

  .ws-html-post-meta {
    gap: 8px 10px;
    font-size: 0.9rem;
  }

  .ws-html-prose {
    font-size: 1rem;
    line-height: 1.76;
  }

  .ws-html-checklist li {
    padding-left: 46px;
  }

  .ws-html-ar .ws-html-checklist li {
    padding-left: 0;
    padding-right: 46px;
  }

  .home .ws-html-ar .ws-html-hero h1,
  .ws-html-ar .ws-html-section h1 {
    font-size: clamp(2.15rem, 9vw, 3.1rem);
    line-height: 1.14;
  }

  .ws-html-ar .ws-html-section h2,
  .ws-html-ar .ws-html-cta h2 {
    font-size: clamp(1.75rem, 7.2vw, 2.45rem);
    line-height: 1.16;
  }

  .ws-html-ar .ws-html-section h3 {
    font-size: clamp(1.22rem, 5.4vw, 1.55rem);
    line-height: 1.25;
  }

  .ws-html-ar .ws-html-section p,
  .ws-html-ar .ws-html-section li {
    font-size: 1rem;
  }

  .ws-html-contact-form-grid,
  .ws-html-ar .ws-html-contact-form-grid {
    grid-template-columns: 1fr;
  }

  .ws-html-contact-form-grid .ws-html-checklist {
    grid-template-columns: 1fr;
  }

  .ws-wpforms-wrap {
    padding: 20px;
  }

  .ws-wpforms-wrap .wpforms-field-row {
    grid-template-columns: 1fr;
  }

  .ws-html-ar .ws-wpforms-wrap .wpforms-field-container {
    grid-template-columns: 1fr;
  }

  .ws-html-ar .ws-html-wide-shot > img,
  .ws-html-ar .ws-html-post-cover > img {
    aspect-ratio: 4 / 3 !important;
  }

  .ws-html-ar .ws-html-image-cover > img {
    aspect-ratio: 4 / 4.6 !important;
  }

  .ws-html-hero-photo-frame,
  .ws-html-hero-photo-frame img {
    min-height: 520px;
  }

  .ws-html-hero-photo-overlay {
    background:
      linear-gradient(180deg, rgba(19, 15, 10, 0.18) 0%, rgba(19, 15, 10, 0.62) 48%, rgba(19, 15, 10, 0.84) 100%);
  }

  .ws-html-hero-photo-copy {
    inset: auto 0 0 0;
    width: auto;
    padding: 24px 22px 22px;
  }

  .ws-html-header-inner {
    padding: 14px 18px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .ws-html-mobile-nav {
    min-width: min(280px, calc(100vw - 36px));
  }

  .ws-html-footer-inner {
    padding: 40px 18px 24px;
  }

  .ws-section {
    padding: 32px 0;
  }

  .ws-card,
  .ws-surface,
  .ws-cta-band {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ws-reveal,
  .ws-html-card,
  .ws-html-surface,
  .ws-html-note {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
