/* ================================================================
   WEB DESIGN & DEVELOPMENT — ILUVANA HUB
   A studio-style sub-brand within iluvana.com.
   Lives alongside the main Iluvana site, but feels like a
   bespoke design studio. Loaded only on hub pages, gated
   by `body.wdd-page`.

   Editorial serif (Fraunces) + neutral sans (Inter) +
   developer mono (JetBrains Mono).
   ================================================================ */


/* ================================================================
   1. TOKENS
   ================================================================ */
:root {
  /* Palette — deep ink + cool neutral + slate accent */
  --wdd-ink:           #14181F;
  --wdd-ink-soft:      #232831;
  --wdd-ink-line:      #2F3640;
  --wdd-cream:         #F0F2F7;
  --wdd-cream-soft:    #F6F7FB;
  --wdd-paper:         #FFFFFF;
  --wdd-bronze:        #5E79A0;
  --wdd-bronze-deep:   #3F5C82;
  --wdd-bronze-pale:   rgba(94,121,160,0.08);
  --wdd-bronze-line:   rgba(94,121,160,0.30);

  /* Accent (Terracotta) */
  --wdd-accent:        #E05A47;
  --wdd-accent-hover:  #C24534;
  --wdd-accent-text:   #FFFFFF;

  /* Text */
  --wdd-text:          #14181F;
  --wdd-text-soft:     #3B424E;
  --wdd-text-muted:    #6B7280;
  --wdd-text-faint:    #9CA3AF;
  --wdd-text-invert:   #F0F2F7;

  /* Borders */
  --wdd-border:        #DEE2EB;
  --wdd-border-soft:   #E9ECF2;
  --wdd-border-strong: #B5BDCB;
  --wdd-border-ink:    rgba(20,24,31,0.08);

  /* Status */
  --wdd-success:       #4A7C5F;
  --wdd-error:         #B7472A;

  /* Type */
  --wdd-font-display:  'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --wdd-font-body:     'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --wdd-font-mono:     'JetBrains Mono', 'SF Mono', Menlo, Monaco, Consolas, monospace;

  /* Geometry */
  --wdd-radius-sm:     4px;
  --wdd-radius-md:     8px;
  --wdd-radius-lg:     14px;
  --wdd-radius-xl:     22px;

  /* Shadow */
  --wdd-shadow-xs:     0 1px 2px rgba(20,24,31,0.04);
  --wdd-shadow-sm:     0 2px 6px rgba(20,24,31,0.06);
  --wdd-shadow-md:     0 8px 24px rgba(20,24,31,0.08);
  --wdd-shadow-lg:     0 24px 48px -12px rgba(20,24,31,0.18);
  --wdd-shadow-xl:     0 36px 80px -24px rgba(20,24,31,0.28);

  /* Motion */
  --wdd-ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --wdd-ease-soft:     cubic-bezier(0.4, 0, 0.2, 1);
  --wdd-t-fast:        0.18s var(--wdd-ease-soft);
  --wdd-t:             0.3s var(--wdd-ease);
  --wdd-t-slow:        0.55s var(--wdd-ease);

  /* Layout */
  --wdd-content-max:   1240px;
  --wdd-narrow-max:    880px;
  --wdd-prose-max:     680px;
  --wdd-gutter:        clamp(20px, 4vw, 56px);

  /* Sub-nav band */
  --wdd-subnav-h:      62px;
}


/* ================================================================
   2. HOST PAGE NORMALIZATION (only when body.wdd-page is present)
   The Iluvana shared header/footer are kept as-is. We tweak only
   what's needed to soften the "Start Free Trial" so our own CTAs
   read as primary on hub pages.
   ================================================================ */
body.wdd-page {
    margin: 0;
  font-family: var(--wdd-font-body);
  color: var(--wdd-text);
  background: var(--wdd-cream-soft);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Soften the header CTA so our hub CTAs win attention.
   Selectors are intentionally broad — adjust to actual markup
   if Iluvana's header uses a different class. */
body.wdd-page header a[href*="trial"],
body.wdd-page .iluvana_header a[href*="trial"],
body.wdd-page #headerbox a[href*="trial"],
body.wdd-page nav a.start-trial,
body.wdd-page nav a.btn-trial,
body.wdd-page .nav-cta {
  background-color: var(--wdd-ink) !important;
  color: var(--wdd-cream) !important;
  border-color: var(--wdd-ink) !important;
  box-shadow: none !important;
}
body.wdd-page header a[href*="trial"]:hover,
body.wdd-page .iluvana_header a[href*="trial"]:hover,
body.wdd-page #headerbox a[href*="trial"]:hover {
  background-color: var(--wdd-ink-soft) !important;
}


/* ================================================================
   3. RESET (scoped — doesn't fight the host)
   ================================================================ */
.wdd *, .wdd *::before, .wdd *::after { box-sizing: border-box; }
.wdd img, .wdd svg { max-width: 100%; display: block; }
.wdd button { font-family: inherit; cursor: pointer; border: none; background: none; }
.wdd input, .wdd select, .wdd textarea { font-family: inherit; font-size: inherit; }
.wdd ul, .wdd ol { padding: 0; margin: 0; list-style: none; }
.wdd p { margin: 0; }
.wdd a { color: inherit; text-decoration: none; transition: color var(--wdd-t-fast); }
.wdd h1, .wdd h2, .wdd h3, .wdd h4, .wdd h5 { margin: 0; font-weight: 400; line-height: 1.15; }


/* ================================================================
   4. UTILITY — TYPE
   ================================================================ */
.wdd-display    { font-family: var(--wdd-font-display); font-weight: 400; letter-spacing: -0.01em; }
.wdd-body       { font-family: var(--wdd-font-body); }
.wdd-mono       { font-family: var(--wdd-font-mono); }

.wdd-kicker {
  font-family: var(--wdd-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wdd-bronze-deep);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wdd-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--wdd-bronze);
}
.wdd-kicker--center {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}

.wdd-eyebrow {
  font-family: var(--wdd-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wdd-text-muted);
}

.wdd-h1 {
  font-family: var(--wdd-font-display);
  font-weight: 350;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.wdd-h2 {
  font-family: var(--wdd-font-display);
  font-weight: 350;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.wdd-h3 {
  font-family: var(--wdd-font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
}
.wdd-h4 {
  font-family: var(--wdd-font-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.005em;
}

.wdd-lede {
  font-family: var(--wdd-font-display);
  font-weight: 350;
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--wdd-text-soft);
}

.wdd-prose {
  font-size: 16px;
  line-height: 1.7;
  color: var(--wdd-text-soft);
}
.wdd-prose--lg { font-size: 17px; }
.wdd-prose strong { color: var(--wdd-ink); font-weight: 600; }

.wdd-text-center { text-align: center; }


/* ================================================================
   5. UTILITY — LAYOUT
   ================================================================ */
.wdd-wrap {
  width: 100%;
  max-width: var(--wdd-content-max);
  margin: 0 auto;
  padding-left: var(--wdd-gutter);
  padding-right: var(--wdd-gutter);
}
.wdd-wrap--narrow { max-width: var(--wdd-narrow-max); }
.wdd-wrap--prose  { max-width: var(--wdd-prose-max); }

.wdd-section {
  padding-top: clamp(64px, 10vw, 120px);
  padding-bottom: clamp(64px, 10vw, 120px);
}
.wdd-section--tight {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.wdd-section--ink   { background: var(--wdd-ink); color: var(--wdd-text-invert); }
.wdd-section--cream { background: var(--wdd-cream); }
.wdd-section--paper { background: var(--wdd-paper); }

.wdd-section--ink .wdd-prose,
.wdd-section--ink .wdd-lede { color: rgba(240,242,247,0.78); }
.wdd-section--ink .wdd-kicker { color: var(--wdd-bronze); }
.wdd-section--ink .wdd-prose strong { color: var(--wdd-cream); }

.wdd-rule {
  height: 1px;
  width: 56px;
  background: var(--wdd-bronze);
  border: 0;
  margin: 32px 0;
}
.wdd-rule--center { margin-left: auto; margin-right: auto; }


/* ================================================================
   PROMO HEADER (Sits above the announcement band)
   ================================================================ */
.wdd-promo-header {
  background: var(--wdd-success);
  border-bottom: 1px solid rgba(240,242,247,0.15);
  padding: 12px var(--wdd-gutter);
}
.wdd-promo-header__inner {
  max-width: var(--wdd-content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--wdd-font-body);
  font-size: 13px;
}
.wdd-promo-header__text {
  color: rgba(240,242,247,0.85);
  font-weight: 500;
}
.wdd-promo-header__text strong {
  color: var(--wdd-cream);
  font-weight: 600;
}
.wdd-promo-header__link {
  color: var(--wdd-cream);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--wdd-t-fast);
}
.wdd-promo-header__link:hover {
  color: rgba(240,242,247,0.6);
}
.wdd-promo-header__link svg {
  width: 12px;
  height: 12px;
}

/* ================================================================
   6. ANNOUNCEMENT / SEPARATOR BAND
   Sits between the Iluvana site header and our sub-nav so the
   sub-nav doesn't crowd the main nav.
   ================================================================ */
.wdd-announce {
  background: var(--wdd-ink);
  color: var(--wdd-cream);
  text-align: center;
  padding: 11px var(--wdd-gutter);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  border-bottom: 1px solid var(--wdd-ink-line);
}
.wdd-announce__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wdd-bronze);
  margin: 0 14px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.wdd-announce a {
  color: var(--wdd-accent-text);
  
  border-bottom: 1px solid transparent;
  transition: border-color var(--wdd-t-fast);
}
.wdd-announce a:hover { border-bottom-color: var(--wdd-accent-text); }


/* ================================================================
   7. SUB-NAV (the hub's own horizontal nav, inside the body)
   ================================================================ */
.wdd-sticky-group {
  position: sticky;
  top: 0;
  z-index: 50;
}

.wdd-subnav {
  background: var(--wdd-paper);
  border-bottom: 1px solid var(--wdd-border);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
}

.wdd-subnav__inner {
  max-width: var(--wdd-content-max);
  margin: 0 auto;
  padding: 0 var(--wdd-gutter);
  height: var(--wdd-subnav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wdd-subnav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--wdd-ink);
}
.wdd-subnav__brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--wdd-ink);
  color: var(--wdd-cream);
  display: grid;
  place-items: center;
  font-family: var(--wdd-font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  position: relative;
}
.wdd-subnav__brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px auto 4px 4px;
  width: 2px;
  background: var(--wdd-bronze);
  border-radius: 1px;
}
.wdd-subnav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.wdd-subnav__brand-name {
  font-family: var(--wdd-font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--wdd-ink);
}
.wdd-subnav__brand-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wdd-bronze-deep);
  margin-top: 2px;
}

.wdd-subnav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.wdd-subnav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--wdd-text-soft);
  border-radius: var(--wdd-radius-sm);
  transition: color var(--wdd-t-fast), background var(--wdd-t-fast);
}
.wdd-subnav__link:hover {
  color: var(--wdd-ink);
  background: var(--wdd-bronze-pale);
}
.wdd-subnav__link.is-active {
  color: var(--wdd-ink);
}
.wdd-subnav__link.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -1px;
  height: 2px;
  background: var(--wdd-bronze);
  border-radius: 1px 1px 0 0;
}

.wdd-subnav__cta {
  margin-left: 12px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--wdd-accent-text);
  background: var(--wdd-accent);
  border-radius: 999px;
  transition: background var(--wdd-t-fast), transform var(--wdd-t-fast);
}
.wdd-subnav__cta:hover { background: var(--wdd-accent-hover); transform: translateY(-1px); }

.wdd-subnav__toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: var(--wdd-radius-sm);
  background: transparent;
  color: var(--wdd-ink);
  align-items: center;
  justify-content: center;
}
.wdd-subnav__toggle svg { width: 22px; height: 22px; }


/* ================================================================
   8. BUTTONS
   ================================================================ */
.wdd .wdd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--wdd-font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background var(--wdd-t-fast), color var(--wdd-t-fast),
              border-color var(--wdd-t-fast), transform var(--wdd-t-fast);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.wdd .wdd-btn:hover { transform: translateY(-1px); }

.wdd .wdd-btn--primary {
  background: var(--wdd-accent);
  color: var(--wdd-accent-text);
  border-color: var(--wdd-accent);
}
.wdd .wdd-btn--primary:hover { background: var(--wdd-accent-hover); border-color: var(--wdd-accent-hover); }

.wdd .wdd-btn--bronze {
  background: var(--wdd-accent);
  color: var(--wdd-accent-text);
  border-color: var(--wdd-accent);
}
.wdd .wdd-btn--bronze:hover { background: var(--wdd-accent-hover); border-color: var(--wdd-accent-hover); }

.wdd .wdd-btn--ghost {
  background: transparent;
  color: var(--wdd-ink);
  border-color: var(--wdd-ink);
}
.wdd .wdd-btn--ghost:hover {
  background: transparent;
  color: var(--wdd-accent);
  border-color: var(--wdd-accent);
}

.wdd .wdd-btn--ghost-light {
  background: transparent;
  color: var(--wdd-cream);
  border-color: rgba(240,242,247,0.4);
}
.wdd .wdd-btn--ghost-light:hover { background: var(--wdd-cream); color: var(--wdd-ink); border-color: var(--wdd-cream); }

.wdd .wdd-btn--text {
  padding: 6px 0;
  background: transparent;
  color: var(--wdd-ink);
  border-radius: 0;
  border-bottom: 1px solid var(--wdd-ink);
}
.wdd .wdd-btn--text:hover { color: var(--wdd-accent-hover); border-bottom-color: var(--wdd-accent); transform: none; }

.wdd .wdd-btn .wdd-arrow { width: 14px; height: 14px; flex-shrink: 0; }
.wdd .wdd-btn:hover .wdd-arrow { transform: translateX(3px); transition: transform var(--wdd-t-fast); }


/* ================================================================
   9. HERO — full landing page hero (large)
   ================================================================ */
.wdd-hero {
  position: relative;
  background: var(--wdd-cream-soft);
  padding: clamp(72px, 10vw, 140px) 0 clamp(72px, 10vw, 120px);
  overflow: hidden;
  isolation: isolate;
}
.wdd-hero::before {
  /* Subtle grain/texture using SVG noise — no external image */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(94,121,160,0.08), transparent 55%),
    radial-gradient(ellipse at 88% 90%, rgba(20,24,31,0.05), transparent 50%);
  z-index: -1;
}

.wdd-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.wdd-hero__title {
  font-family: var(--wdd-font-display);
  font-weight: 350;
  font-size: clamp(40px, 6.4vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--wdd-ink);
}
.wdd-hero__title em {
  font-style: italic;
  font-weight: 350;
  color: var(--wdd-bronze-deep);
}
.wdd-hero__title-rule {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--wdd-bronze);
  vertical-align: middle;
  margin: 0 8px 8px;
}

.wdd-hero__lede {
  font-family: var(--wdd-font-body);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--wdd-text-soft);
  margin-bottom: 36px;
  max-width: 540px;
}

.wdd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
  margin-top: 10px;
}

.wdd-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center; /* Added to vertically center the new badge */
  gap: 28px 36px;
  padding-top: 28px;
  border-top: 1px solid var(--wdd-border);
}
.wdd-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 80px;
}
.wdd-hero__meta-num {
  font-family: var(--wdd-font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--wdd-ink);
  letter-spacing: -0.02em;
}
.wdd-hero__meta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wdd-text-muted);
}
.wdd-hero__meta-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--wdd-paper);
  border: 1px solid var(--wdd-border);
  border-radius: var(--wdd-radius-sm);
  box-shadow: var(--wdd-shadow-xs);
  font-family: var(--wdd-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wdd-text-soft);
  margin-left: 0;
}

.wdd-hero__meta-icon {
  width: 14px;
  height: 14px;
  color: var(--wdd-bronze-deep);
}

@media (max-width: 720px) {
  .wdd-hero__meta-location {
    margin-left: 0; /* Resets alignment on mobile so it stacks naturally */
  }
}

/* ================================================================
   10. HERO — page hero (smaller, used on inner hub pages)
   ================================================================ */
.wdd-pagehero {
  background: var(--wdd-cream-soft);
  padding: clamp(56px, 8vw, 100px) 0 clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--wdd-border);
  position: relative;
  overflow: hidden;
}
.wdd-pagehero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(94,121,160,0.06), transparent 55%);
}
.wdd-pagehero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.wdd-pagehero__title {
  font-family: var(--wdd-font-display);
  font-weight: 350;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--wdd-ink);
  margin-bottom: 18px;
}
.wdd-pagehero__title em { font-style: italic; color: var(--wdd-bronze-deep); }
.wdd-pagehero__lede {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--wdd-text-soft);
}
.wdd-pagehero__crumb {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wdd-text-muted);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wdd-pagehero__crumb-sep { color: var(--wdd-border-strong); }


/* ================================================================
   11. HERO RIGHT — composed mockup stack (real HTML "screenshot")
   ================================================================ */
.wdd-hero__stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 520px;
  margin-left: auto;
}
.wdd-hero__stack-card {
  position: absolute;
  border-radius: var(--wdd-radius-lg);
  overflow: hidden;
  box-shadow: var(--wdd-shadow-xl);
  background: var(--wdd-paper);
  border: 1px solid var(--wdd-border);
}
.wdd-hero__stack-card--back {
  inset: 0 28% 22% 0;
  transform: rotate(-2deg);
  z-index: 1;
}
.wdd-hero__stack-card--mid {
  inset: 16% 6% 8% 18%;
  transform: rotate(1.5deg);
  z-index: 2;
}
.wdd-hero__stack-card--front {
  inset: 32% 0 0 36%;
  transform: rotate(-0.5deg);
  z-index: 3;
}


/* ================================================================
   12. BROWSER FRAMES — real HTML/CSS "screenshots" of work
   These wrap mini live examples that are responsive HTML, not
   images. Frame chrome is purely decorative.
   ================================================================ */
.wdd-frame {
  background: var(--wdd-paper);
  border: 1px solid var(--wdd-border);
  border-radius: var(--wdd-radius-lg);
  box-shadow: var(--wdd-shadow-md);
  overflow: hidden;
  width: 100%;
  font-size: 13px;
}
.wdd-frame__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #FAFBFD, #F0F2F5);
  border-bottom: 1px solid var(--wdd-border);
}
.wdd-frame__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #DDE1E8;
}
.wdd-frame__dot--r { background: #E78676; }
.wdd-frame__dot--y { background: #E5C36C; }
.wdd-frame__dot--g { background: #8FB781; }
.wdd-frame__url {
  flex: 1;
  margin-left: 10px;
  background: var(--wdd-cream);
  border-radius: 999px;
  padding: 5px 14px;
  font-family: var(--wdd-font-mono);
  font-size: 11px;
  color: var(--wdd-text-muted);
  text-align: left;
  border: 1px solid var(--wdd-border-soft);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wdd-frame__body { position: relative; }


/* ── Mini-mockup: Pascale's Kitchen (Shop Page) ─────────────────── */
.mock-pkn {
  background: #faf7f3;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  color: #452508;
  overflow: hidden;
}

/* ── Control bar (top mini-nav) ── */
.mock-pkn__controlbar {
  background: #faf7f3;
  border-bottom: 1px solid #e5d9cc;
  display: flex;
  justify-content: flex-end;
  padding: 3px 12px;
}
.mock-pkn__controlbar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #452508;
}
.mock-pkn__cb-divider {
  width: 1px;
  height: 10px;
  background-color: #c9b9a6;
  display: inline-block;
}

/* ── Main header (paper texture + logo + nav) ── */
.mock-pkn__header {
  background-image: url(https://www.pascaleskitchen.com/graphics/paper-pattern-swatch-64px.jpg);
  background-repeat: repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 14px 6px;
  gap: 8px;
  /*border-bottom: 1px solid #e5d9cc;*/
  height: 35px;
  z-index: 2;
  position: relative;
}
.mock-pkn__logo {
  margin-top: 15px; 
  flex-shrink: 0; 
}
.mock-pkn__logo img {
  height: 68px;
  width: auto;
  display: block;
}
.mock-pkn__nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
  flex: 1;
}
.mock-pkn__nav--left { justify-content: flex-end; }
.mock-pkn__nav--right { justify-content: flex-start; }
.mock-pkn__nav li {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #452508;
  white-space: nowrap;
  cursor: pointer;
  padding: 0 4px;
}

/* ── Banner strip ── */
.mock-pkn__banner {
  height: 102px;
  /*background-image: url(https://www.pascaleskitchen.com/images/banner/pages/shopping.jpg);*/
  background-size: cover;
  background-position: center;
  position: relative;
}
.mock-pkn__banner:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url(https://www.pascaleskitchen.com/graphics/top-banner-strip-alt1.png),url(https://www.pascaleskitchen.com/graphics/bottom-banner-strip-shop.png);
  background-size: auto;
  background-position: top center, bottom center;
  background-repeat: repeat-x;
}     
.mock-pkn__banner .pknslide {
    position: absolute;
    background-image: url(https://www.pascaleskitchen.com/images/banner/pages/shopping.jpg);
    left:0;
    top:0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width:100%;
    height:100%;
}

/* ── Main content row (sidebar + product area) ── */
.mock-pkn__body {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  padding: 10px 0;
}

/* ── Sidebar navigation ── */
.mock-pkn__sidebar {
  width: 140px;
  flex-shrink: 0;
  padding: 0 8px 8px 10px;
  border-right: 1px dotted #c9b9a6;
  text-align: left;
}
.mock-pkn__sidebar-head {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #b45313;
  margin: 0 0 6px;
  padding-bottom: 4px;
  border-bottom: 1px dotted #c9b9a6;
}
.mock-pkn__sidebar-section {
  margin-bottom: 4px;
}
.mock-pkn__sidebar-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mock-pkn__sidebar-section li {
  font-size: 8.5px;
  color: #452508;
  padding: 2px 0;
  line-height: 1.35;
  border-bottom: 1px dotted #c9b9a6;
}
.mock-pkn__sidebar-section li:last-child { border-bottom: none; }

/* ── Product/gallery area ── */
.mock-pkn__products {
  flex: 1;
  padding: 0 8px 0 14px;
  min-width: 0;
}

/* Shop intro heading image + description */
.mock-pkn__shop-intro {
  margin-bottom: 10px;
}
.mock-pkn__shop-intro img {
  max-height: 20px;
  width: auto;
  display: block;
  margin-bottom: 5px;
}
.mock-pkn__shop-intro p {
  font-size: 9px;
  color: #452508;
  line-height: 1.5;
  margin: 0;
  font-weight: 300;
}

/* ── Category card grid (3 columns, dotted borders) ── */
.mock-pkn__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  text-align: center;
}
.mock-pkn__card {
  position: relative;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  border-bottom: 1px dotted #c9b9a6;
}
/* First row gets top border too */
.mock-pkn__card:nth-child(-n+3) {
  border-top: 1px dotted #c9b9a6;
}
/* Right-side vertical separator — removed on every 3rd column */
.mock-pkn__card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background-color: #c9b9a6;
  pointer-events: none;
}
.mock-pkn__card:nth-child(3n)::after { display: none; }
.mock-pkn__card a {
  display: block;
  text-decoration: none;
}
.mock-pkn__card img {
  height: 80px;
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto 4px;
  object-fit: contain;
}
.mock-pkn__card-title {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #452508;
  margin: 0 4px;
  line-height: 1.3;
}


/* ── Mini-mockup: Giffin & Crane (Portfolio Page) ──────────────── */
.mock-gc {
  background: #ffffff;
  color: #333333;
  font-family: proxima-nova, Arial, sans-serif;
  overflow: hidden;
}

/* ── Header ── */
.mock-gc__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 18px;
  background: #ffffff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
.mock-gc__header-logo img {
  max-height: 13px;
  width: auto;
  display: block;
}
.mock-gc__header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mock-gc__btn-build {
  display: inline-block;
  padding: 5px 7px;
  border: 1px solid #000;
  font-family: 'Arial Black', sans-serif;
  font-size: 7px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000;
  white-space: nowrap;
  line-height: 1.2;
}
.mock-gc__hamburger {
  height: 14px;
  width: auto;
  display: block;
}

/* ── Main content area ── */
.mock-gc__content {
  padding: 18px 0 20px;
  background: #ffffff;
}
.wdd .mock-gc__portfolio-title {
  margin: 0 0 12px;
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 23px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: #000;
}

/* ── Gallery: container query drives 2-col vs 3-col ── */
.mock-gc__gallery-wrap {
  container-type: inline-size;
  container-name: gc-gallery;
  padding: 0 8px;
}
.mock-gc__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@container gc-gallery (min-width: 600px) {
  .mock-gc__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .mock-gc__item-label {
    font-size: 18px;
    letter-spacing: 0.12em;
  }
}

/* ── Gallery item ── */
.mock-gc__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: #e0e0e0;
}
.mock-gc__item-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mock-gc__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.mock-gc__item-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Impact, 'Arial Black', sans-serif;
  color: #ffffff;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.25;
  padding: 8px;
}

/* ── Footer strip ── */
.mock-gc__footer {
  background: #323232;
  padding: 10px 16px;
  text-align: center;
}
.mock-gc__footer-copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 8px;
  letter-spacing: 0.04em;
}


/* ── Mini-mockup: Serphoenix ───────────────────────────────────── */
.mock-srp {
  background: #0B0F1A;
  color: #E5E9F0;
  font-family: 'Inter', system-ui, sans-serif;
}
.mock-srp__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(229,233,240,0.08);
  font-size: 12px;
}
.mock-srp__logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600;
}
.mock-srp__logo-mark {
  width: 22px; height: 22px;
  border-radius: 4px;
  background: linear-gradient(135deg, #FF6B35, #E5340A);
  display: grid; place-items: center;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 600;
}
.mock-srp__nav { display: flex; gap: 16px; font-size: 11px; color: #98A1B5; }
.mock-srp__hero {
  padding: 28px 28px 24px;
  text-align: left;
}
.mock-srp__hero h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.mock-srp__hero h2 span { color: #FF8C5F; }
.mock-srp__hero p {
  font-size: 12px;
  color: #98A1B5;
  margin-bottom: 16px;
  line-height: 1.5;
}
.mock-srp__terminal {
  background: #060912;
  border: 1px solid rgba(229,233,240,0.08);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  line-height: 1.7;
  color: #C5D0DD;
}
.mock-srp__prompt { color: #FF8C5F; user-select: none; }
.mock-srp__cmd { color: #E5E9F0; }
.mock-srp__flag { color: #98A1B5; }
.mock-srp__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(229,233,240,0.08);
}
.mock-srp__stat {
  padding: 14px 12px;
  text-align: center;
  border-right: 1px solid rgba(229,233,240,0.08);
}
.mock-srp__stat:last-child { border-right: 0; }
.mock-srp__stat-num {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: #FF8C5F;
  margin-bottom: 2px;
}
.mock-srp__stat-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #98A1B5;
}

/* ── Serphoenix Features Module ── */
.mock-srp__features {
  background: #f8f9fa;
  padding: 28px 24px;
  color: #121212;
}
.mock-srp__feat-title {
  text-align: center;
  margin-bottom: 24px;
}
.mock-srp__feat-title h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #121212;
  margin: 0 0 6px;
}
.mock-srp__feat-title p {
  font-size: 10px;
  color: #718096;
  margin: 0;
}
.mock-srp__feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.mock-srp__feat-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 16px 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.mock-srp__feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(221, 107, 32, 0.1);
  color: #dd6b20;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 14px;
}
.mock-srp__feat-card h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #121212;
  margin: 0 0 6px;
}
.mock-srp__feat-card p {
  font-size: 9px;
  color: #718096;
  line-height: 1.45;
  margin: 0;
}

/* ── Mini-mockup: Ernest Brooks Foundation ─────────────────────── */
.mock-ebf {
  background: #ffffff;
  font-family: 'Inter', system-ui, sans-serif;
  color: #333333;
}
.mock-ebf__inner {
  container-type: inline-size;
  container-name: ebf-inner;
}
.mock-ebf__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #ffffff;
}
.mock-ebf__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mock-ebf__logo img {
  height: 36px;
  width: auto;
}
.mock-ebf__logo-text {
  font-size: 12px;
  font-weight: 600;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: none;
}
.mock-ebf__nav {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 16px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #777777;
}
.mock-ebf__hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-ebf__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #333333;
}
.mock-ebf__banner {
  height: 200px;
  background-image: url("../images/portfolio/banner-oralhistory.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mock-ebf__banner-content {
  max-width: 85%;
  text-align: center;
}
.mock-ebf__banner-msg {
  max-width: 100%;
  height: auto;
}
.mock-ebf__mission {
  padding: 32px 20px;
  text-align: center;
  background: #ffffff;
}
.wdd .mock-ebf__mission h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  margin-bottom: 12px;
  color: #005B9D;
  font-weight: 400;
  line-height: 1.3;
}
.wdd .mock-ebf__mission-lead {
  font-size: 16px;
  font-style: italic;
  color: #555555;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* Wide layout (Desktop/Tablet) via Container Queries */
@container ebf-inner (min-width: 600px) {
  .mock-ebf__header {
    padding: 16px 32px;
  }
  .mock-ebf__nav {
    display: flex;
  }
  .mock-ebf__hamburger {
    display: none;
  }
  .mock-ebf__logo img {
    height: 52px;
  }
  .mock-ebf__logo-text {
    display: block;
    font-size: 15px;
  }
  .mock-ebf__banner {
    height: 380px;
  }
  .mock-ebf__mission {
    padding: 56px 32px;
  }
  .wdd .mock-ebf__mission h1 {
    font-size: 30px;  
  }
  .mock-ebf__banner-content {
      max-width: 65%;
    }
  .wdd .mock-ebf__mission-lead {
    font-size: 18px;
    max-width: 740px;
  }
}


/* ── Mini-mockup: M27 Editions - 1920s book page ───────────────── */
.mock-m27 {
  background: #ffffff;
  color: #000000;
  overflow: hidden;
  font-family: Montserrat, 'Brother-1816', 'Inter', sans-serif;
}

/* ── Header ── */
.mock-m27__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
  padding: 0 20px;
  background: #ffffff;
  box-shadow: 0 -23px 27px 0 rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 2;
}
.mock-m27__logo {
  height: 22px;
  width: auto;
  display: block;
}
.mock-m27__header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mock-m27__hamburger {
  width: 22px;
  height: 18px;
  display: block;
}
.mock-m27__cart {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.mock-m27__cart img {
  width: 20px;
  height: auto;
  opacity: 0.3;
}
.mock-m27__cart-count {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 8px;
  font-weight: 800;
  color: #000000;
}

/* ── Container query wrapper ── */
.mock-m27__inner {
  container-type: inline-size;
  container-name: m27-inner;
}

/* ── Hero banner ── */
.mock-m27__hero {
  background-image: url(https://www.m27editions.com/1920s/graphics/bannerwide/banner-wide-1-update2-phone@x2.jpg);
  background-size: cover;
  background-position: bottom center;
  height: 368px;
  position: relative;
  box-shadow: 0 5px 5px 0 rgba(0,0,0,0.10);
  z-index: 1;
}

/* ── Buy bar (Mobile) ── */
.mock-m27__buybar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background: rgba(34, 34, 34, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mock-m27__buybar-label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}
.mock-m27__buybar-arrow {
  height: 10px;
  margin-left: 6px;
}

/* ── Purchase Panels ── */
.mock-m27__desktop-purchase {
  display: none;
}
.mock-m27__mobile-purchase {
  display: block;
  background: #ffffff;
  padding: 32px 24px;
  text-align: left;
}

/* Mobile Stack Layout */
.mock-m27__mobile-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto 32px;
}
.mock-m27__details {
  margin-bottom: 20px;
}
.mock-m27__announce {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #9b9a9b;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.mock-m27__book-title {
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.35;
  color: #000000;
  margin: 0 0 8px;
}
.mock-m27__book-title span {
  font-style: normal;
  display: block;
}
.mock-m27__blurb-text {
  font-size: 14px;
  font-weight: 300;
  color: #59595b;
  line-height: 1.6;
  margin: 0 0 12px;
}
.mock-m27__blurb-source {
  font-size: 11px;
  font-weight: 800;
  color: #59595b;
  text-align: right;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.mock-m27__edition {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  color: #59595b;
  line-height: 1.55;
  margin: 0 0 32px;
}
.mock-m27__buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  
  height: 48px;
  
  max-width: 150px;
    
  border: 1px solid #969696;
  margin: 30px auto 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mock-m27__buy-btn:hover {
  background: #747375;
}
.mock-m27__buy-btn:hover .mock-m27__buy-label {
  color: #ffffff;
}
.mock-m27__buy-label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #000000;
  text-transform: uppercase;
  transition: color 0.2s;
}

/* ── Wide layout: container >= 600px ── */
@container m27-inner (min-width: 600px) {
  .mock-m27__header { height: 66px; padding: 0 53px; }
  .mock-m27__logo { height: 46px; }
  .mock-m27__hamburger { display: none; }
  .mock-m27__cart img { width: 34px; }
  .mock-m27__cart-count { font-size: 10px; }
  
  .mock-m27__hero {
    background-image: url(https://www.m27editions.com/graphics/bannerwide/banner-wide-1-update2@x2.jpg);
    height: 400px;
  }
  .mock-m27__buybar { display: none; }

  /* Swap visibility */
  .mock-m27__mobile-purchase { display: none; }
  .mock-m27__desktop-purchase {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    padding: 40px 20px 40px;
    justify-content: center;
  }
  
  .mock-m27__buy-btn {
      max-width: 260px;
      margin-top: 0px;
  }

  /* Desktop 2-column layout */
  .mock-m27__col1 {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .mock-m27__desktop-img {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: block;
  }
  
  .mock-m27__col2 {
    width: 45%;
    padding-left: 20px;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .mock-m27__announce {
    font-size: 14px;
    letter-spacing: 0.06em;
  }
  .mock-m27__book-title {
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
    margin-bottom: 24px;
  }
  .mock-m27__blurb-text {
    font-size: 14px;
    line-height: 1.5;
    max-width: 360px;
  }
  .mock-m27__blurb-source {
    font-size: 11px;
    max-width: 360px;
  }
  .mock-m27__edition {
    font-size: 14px;
    margin-top: 30px;
    max-width: 360px;
  }
  .mock-m27__buy-btn {
    width: 203px;
    height: 59px;
    margin: 40px 0 0 0;
  }
  .mock-m27__buy-label { font-size: 18px; }
  .mock-m27__buy-btn:hover { background: #747375; }
  .mock-m27__buy-btn:hover .mock-m27__buy-label { color: #ffffff; }
}


/* ---- Mini-mockup: Iluvana CMS Editor ----------------------------- */
.mock-cms {
  background: #FAFBFC;
  font-family: 'Inter', system-ui, sans-serif;
  color: #1F2430;
}
.mock-cms__chrome {
  display: flex;
  flex-direction: column;
  height: 600px;
  overflow: hidden;
}
.mock-cms * { box-sizing: border-box; }
.mock-cms__top {
  display: flex; align-items: center; justify-content: space-between;
  height: 38px; padding: 0 16px;
  background: #14181F; color: #E5E9F0;
  flex-shrink: 0;
}
.mock-cms__top-left { font-size: 11px; opacity: 0.8; flex: 1; }
.mock-cms__top-center { display: flex; align-items: flex-end; justify-content: center; flex: 0 0 auto; }
.mock-cms__top-logo { height: 18px; width: auto; max-height: 18px; margin-bottom: 2px; }
.mock-cms__top-logo-text { font-size: 9px; color: #4ade80; margin-left: 3px; text-transform: uppercase; margin-bottom: 2px; font-weight: 600; }
.mock-cms__top-right { display: flex; align-items: center; gap: 12px; font-size: 11px; flex: 1; justify-content: flex-end; }
.mock-cms__top-btn { display: inline-flex; align-items: center; gap: 4px; color: rgba(255,255,255,0.85); font-weight: 500;}
.mock-cms__top-user { color: #AAB8C2; }

.mock-cms__workspace {
  display: flex; flex: 1; overflow: hidden;
}

/* Left Panel */
.mock-cms__left {
  width: 155px; background: #232831; color: #FFFFFF;
  display: flex; flex-direction: column; border-right: 1px solid #D1D5DB;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mock-cms__left-toolbar {
  height: 32px; background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; padding: 0 10px; gap: 8px;
}
.mock-cms__left-icon { font-size: 11px; color: #9CA3AF; }
.mock-cms__acc-group { border-bottom: 1px solid transparent; margin-bottom: 1px; }
.mock-cms__acc-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 14px; font-size: 11px; cursor: default; background: #232831;
}
.mock-cms__acc-head.is-active { background: #2F3640; }
.mock-cms__acc-title { display: flex; align-items: center; gap: 8px; }
.mock-cms__acc-title i { font-size: 8px; color: #ffffff; transition: transform 0.2s; }
.mock-cms__acc-head.is-active .mock-cms__acc-title i { transform: rotate(90deg); color: #FFFFFF; }
.mock-cms__acc-actions i { font-size: 10px; color: #9CA3AF; margin-left: 6px; }
.mock-cms__acc-body { display: none; padding: 4px 0; background: #232831; }
.mock-cms__acc-body.is-open { display: block; }
.mock-cms__acc-item {
  padding: 5px 14px 5px 32px; font-size: 11px; color: #FFFFFF;
  display: flex; align-items: center; justify-content: space-between; position: relative;
}
.mock-cms__acc-item.is-active { color: #60A5FA; }
.mock-cms__acc-item.is-active::before {
  content: "\f0da"; font-family: "Font Awesome 5 Free"; font-weight: 900;
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-size: 12px;
}
.mock-cms__acc-item i { font-size: 9px; color: #9CA3AF; }
.mock-cms__acc-item.is-active i { color: #60A5FA; }

/* Center Panel */
.mock-cms__center {
  flex: 1; background: #FFFFFF; display: flex; flex-direction: column;
  min-width: 0;
}
.mock-cms__tabs {
  display: flex; background: #F9FAFB; border-bottom: 1px solid #E5E7EB;
}
.mock-cms__tab {
  padding: 10px 16px; font-size: 11px; color: #4B5563; font-weight: 500;
  border-right: 1px solid transparent; border-top: 2px solid transparent; margin-bottom: -1px;
}
.mock-cms__tab.is-active {
  background: #FFFFFF; color: #111827; border-top: 2px solid #D1D5DB; border-right: 1px solid #E5E7EB;
  border-left: 1px solid #E5E7EB; border-bottom: 1px solid #FFFFFF; font-weight: 600;
}
.mock-cms__editor-area {
  flex: 1; padding: 16px; overflow: hidden; display: flex; flex-direction: column;
}
.mock-cms__ck-toolbar {
  display: flex; flex-wrap: wrap; gap: 4px; padding: 6px;
  background: #FAFBFC; border: 1px solid #E5E7EB; border-radius: 4px 4px 0 0;
  border-bottom: none; align-items: center;
}
.mock-cms__ck-group {
  display: flex; align-items: center; gap: 2px;
  padding-right: 6px; border-right: 1px solid #D1D5DB;
}
.mock-cms__ck-group:last-child { border-right: none; }
.mock-cms__ck-btn {
  width: 24px; height: 24px; display: grid; place-items: center;
  color: #4B5563; font-size: 11px; border-radius: 3px;
}
.mock-cms__ck-btn.is-active { background: #E5E7EB; color: #111827; }
.mock-cms__ck-select {
  height: 24px; padding: 0 16px 0 6px; font-size: 11px; color: #4B5563;
  background: transparent; border: none; border-radius: 3px;
  font-family: inherit; font-weight: 500;
}
.mock-cms__ck-content {
  flex: 1; border: 1px solid #E5E7EB; padding: 24px; font-family: 'Inter', sans-serif;
  font-size: 13px; color: #374151; line-height: 1.6; border-radius: 0 0 4px 4px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.02);
}
.mock-cms__ck-content h2 { font-size: 22px; font-weight: 600; color: #111827; margin: 0 0 14px; }
.mock-cms__ck-content p { margin: 0 0 14px; }

/* Right Panel */
.mock-cms__right {
  width: 212px; display: flex; flex-direction: column;
  border-left: 1px solid #D1D5DB; background: #232831;
}
.mock-cms__right .mock-cms__tabs {
  background: #14181F; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mock-cms__right .mock-cms__tab {
  color: #9CA3AF; border: none;
}
.mock-cms__right .mock-cms__tab.is-active {
  background: #232831; color: #FFFFFF; border-top: 2px solid #60A5FA;
  border-right: 1px solid rgba(255,255,255,0.1); border-left: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid transparent; font-weight: 600;
}
.mock-cms__right-content { padding: 14px; overflow-y: hidden; flex: 1; color: #FFFFFF; }
.mock-cms__detail-item { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px dotted rgba(255,255,255,0.15); }
.mock-cms__detail-label { font-size: 11px; font-weight: 600; color: #FFFFFF; margin-bottom: 5px; display: block; }

.mock-cms__detail-input {
  padding: 6px; background: #FFFFFF; border: 1px solid #D1D5DB;
  border-left: 3px solid #D1D5DB; border-radius: 4px; font-size: 11px; color: #1F2430;
  display: flex; justify-content: space-between; align-items: center;
}
.mock-cms__detail-textarea {
  height: 40px; background: #FFFFFF; border: 1px solid #D1D5DB;
  border-left: 3px solid #D1D5DB; border-radius: 4px;
}
.mock-cms__select-icon { color: #9CA3AF; font-size: 10px; }
.mock-cms__detail-val-link { color: wheat; text-decoration: underline; font-size: 11px; cursor: pointer; display: inline-block; padding: 4px 6px; background: rgba(255,255,255,0.05); border-radius: 4px; border-left: 3px solid rgba(255,255,255,0.2); }

.mock-cms__canonical { border-left: 3px solid #4CAF50; padding-left: 10px; margin-left: -3px; }
.mock-cms__canonical-preview { padding: 6px 8px; background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 4px; margin-bottom: 8px; }
.mock-cms__canonical-text { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: #1F2430; word-break: break-all; }
.mock-cms__canonical-note { color: #6B7280; font-style: italic; font-size: 9px; margin-left: 6px; }
.mock-cms__canonical-override label { display: flex; align-items: center; font-size: 11px; color: #FFFFFF; cursor: pointer; font-weight: normal; }
.mock-cms__canonical-override input { margin: 0 6px 0 0; }

.mock-cms__detail-radio { display: flex; gap: 15px; margin: 6px 0; }
.mock-cms__detail-radio label { font-size: 11px; color: #FFFFFF; display: flex; align-items: center; font-weight: normal; }
.mock-cms__detail-radio input { margin: 0 4px 0 0; }

.mock-cms__seo-controls { margin-left: 20px; margin-top: 10px; }
.mock-cms__seo-item { margin-bottom: 10px; }

.mock-cms__priority-header { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.mock-cms__priority-display { background: rgba(255,255,255,0.9); border: 1px solid #D1D5DB; border-radius: 4px; padding: 2px 5px; font-size: 10px; color: #1F2430; font-weight: bold; min-width: 30px; text-align: center; }
.mock-cms__priority-scale { display: flex; justify-content: space-between; align-items: center; position: relative; padding: 10px 5px; margin-top: 6px; }
.mock-cms__priority-scale::before { content: ''; position: absolute; top: 50%; left: 5px; right: 5px; height: 2px; background: rgba(255,255,255,0.2); transform: translateY(-50%); z-index: 0; }
.mock-cms__priority-point { width: 10px; height: 10px; border-radius: 50%; background: #232831; border: 2px solid rgba(255,255,255,0.2); position: relative; z-index: 1; }
.mock-cms__priority-point.is-active { background: #4CAF50; border-color: #4CAF50; }

.mock-cms__detail-warning { font-size: 10px; color: #d5a61c; margin: 4px 0 0; line-height: 1.2; }

/* ================================================================
   MOCKUP: ARTICLE SYSTEM
   ================================================================ */
/* ---- Modifier: Article App View ---------------------------------- */
.mock-cms--articles .mock-cms__chrome {
  height: 400px; /* Reduced height to tightly fit the cards without excessive whitespace */
}
.mock-cms__articles-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; border-bottom: 1px solid #E5E7EB; background: #FFFFFF;
}
.mock-cms__articles-title {
  margin: 0; font-size: 14px; font-weight: 600; color: #111827;
}
.wdd .mock-cms__articles-btn {
  background: #14181F; color: #fff; border: none; padding: 7px 14px;
  border-radius: 4px; font-size: 11px; font-weight: 600; cursor: pointer;
}
.mock-cms__articles-grid {
  padding: 24px; display: grid; gap: 16px;
  grid-template-columns: repeat(3, 1fr); background: #FAFBFC; flex: 1;
}
.mock-cms__article-card {
  background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 6px;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02); transition: transform 0.2s;
}
.mock-cms__article-card:hover {
  transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.06);
}
.mock-cms__article-thumb {
  height: 90px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #FFFFFF;
}
.mock-cms__article-thumb--news { background: linear-gradient(135deg, #5E79A0, #3F5C82); }
.mock-cms__article-thumb--res { background: linear-gradient(135deg, #E05A47, #B84332); }
.mock-cms__article-thumb--rec { background: linear-gradient(135deg, #5C7A56, #3D5230); }

.mock-cms__article-info {
  padding: 14px; display: flex; flex-direction: column; flex: 1;
}
.mock-cms__article-info h4 {
  margin: 0 0 6px; font-size: 12px; font-weight: 600; color: #111827;
}
.mock-cms__article-info p {
  margin: 0 0 14px; font-size: 10px; color: #6B7280; line-height: 1.5; flex: 1;
}
.mock-cms__article-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; color: #9CA3AF; border-top: 1px solid #F3F4F6; padding-top: 10px;
}
.mock-cms__article-status--live { color: #10B981; font-weight: 600; }
.mock-cms__article-status--draft { color: #F59E0B; font-weight: 600; }

@media (max-width: 768px) {
  .mock-cms__articles-grid { grid-template-columns: 1fr; }
  .mock-cms--articles .mock-cms__chrome { height: auto; min-height: 400px; }
}
   
/* ================================================================
   28. MOCKUP: PASCALE'S RECIPES HUB
   ================================================================ */
.mock-rh-wrapper {
  --rh-brown-dark: #452508;
  --rh-orange-brand: #b45313;
  --rh-cream-bg: #faf7f3;
  --rh-tan-border: #e5d9cc;
  --rh-tan-muted: #a89580;
  --rh-gray-text: #5f5f5f;
  --rh-white: #ffffff;
  --rh-font-display: 'Brother-1816', 'Inter', Helvetica, sans-serif;
  --rh-font-nav: "trajan-pro-3", serif;
  --rh-font-editorial: 'Cormorant Garamond', Georgia, serif;
  background: var(--rh-cream-bg);
  font-family: var(--rh-font-display);
  color: var(--rh-brown-dark);
  text-align: left;
  container-type: inline-size;
  container-name: rhmockup;
}

.mock-rh-wrapper * {
  box-sizing: border-box;
}

.mock-rh-wrapper p, .mock-rh-wrapper h2, .mock-rh-wrapper h3 {
  margin: 0;
}

.mock-rh-wrapper .rh-cat-divider {
  width: 100%;
  height: 1px;
  background: var(--rh-tan-border);
}

.mock-rh-wrapper .rh-featured {
  padding: 24px 16px 16px;
}

.mock-rh-wrapper .rh-featured__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mock-rh-wrapper .rh-featured__label {
  font-family: var(--rh-font-nav);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rh-tan-muted);
}

.mock-rh-wrapper .rh-featured__viewall {
  font-family: var(--rh-font-editorial);
  font-size: 11px;
  font-weight: 500;
  font-style: italic;
  color: #467886;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mock-rh-wrapper .rh-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mock-rh-wrapper .rh-card {
  background: var(--rh-white);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--rh-tan-border);
  display: flex;
  flex-direction: column;
}

.mock-rh-wrapper .rh-card__image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.mock-rh-wrapper .rh-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mock-rh-wrapper .rh-card__time {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: rgba(69,37,8,0.8);
  color: var(--rh-white);
  font-family: var(--rh-font-display);
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 2px;
}

.mock-rh-wrapper .rh-card__body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mock-rh-wrapper .rh-card__category {
  font-family: var(--rh-font-display);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rh-orange-brand);
  margin-bottom: 4px;
}

.mock-rh-wrapper .rh-card__title {
  font-family: var(--rh-font-editorial);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--rh-brown-dark);
  margin-bottom: 6px;
}

.mock-rh-wrapper .rh-card__excerpt {
  font-family: var(--rh-font-display);
  font-size: 9px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--rh-gray-text);
  margin-bottom: auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mock-rh-wrapper .rh-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--rh-tan-border);
  font-family: var(--rh-font-display);
  font-size: 8px;
  font-weight: 400;
  color: var(--rh-tan-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mock-rh-wrapper .rh-card__meta-item {
  display: flex;
  align-items: center;
  gap: 3px;
}

.mock-rh-wrapper .rh-weekly {
  padding: 0 16px 24px;
}

.mock-rh-wrapper .rh-weekly__banner {
  position: relative;
  aspect-ratio: 2.2 / 1;
  min-height: 200px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--rh-brown-dark);
}

.mock-rh-wrapper .rh-weekly__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.mock-rh-wrapper .rh-weekly__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(69,37,8,0.8) 0%, rgba(69,37,8,0.2) 60%, transparent 100%);
}

.mock-rh-wrapper .rh-weekly__kicker {
  font-family: var(--rh-font-nav);
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rh-cream-bg);
  margin-bottom: 6px;
}

.mock-rh-wrapper .rh-weekly__title {
  font-family: var(--rh-font-editorial);
  font-size: 22px;
  font-weight: 400;
  color: var(--rh-white);
  margin-bottom: 6px;
  line-height: 1.1;
}

.mock-rh-wrapper .rh-weekly__desc {
  font-family: var(--rh-font-display);
  font-size: 9px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
  line-height: 1.5;
}

.mock-rh-wrapper .rh-weekly__cta {
  display: inline-block;
  font-family: var(--rh-font-nav);
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rh-white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 14px;
  border-radius: 2px;
  align-self: flex-start;
}

@container rhmockup (min-width: 520px) {
  .mock-rh-wrapper .rh-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@container rhmockup (min-width: 680px) {
  .mock-rh-wrapper .rh-card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ================================================================
   29. MOCKUP: ILUVANA DESIGNER
   ================================================================ */
.mock-designer {
  --dsgn-chrome: #2d2d3d;
  --dsgn-chrome-dark: #1e1e2e;
  --dsgn-accent: #4a9eff;
  --dsgn-text: #e2e2ef;
  --dsgn-text-dim: #8888a0;
  --dsgn-border: rgba(255,255,255,0.08);
  
  position: relative;
  height: 500px;
  display: flex;
  flex-direction: column;
  background: var(--dsgn-chrome-dark);
  color: var(--dsgn-text);
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  container-type: inline-size;
  container-name: designerMockup;
}

.mock-designer * {
  box-sizing: border-box;
}

/* Fade Edge overlay to blend into the .wdd-section white background */
.mock-designer__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #FFFFFF 100%);
  pointer-events: none;
  z-index: 100;
}

/* Top Bar */
.mock-designer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 16px;
  background: var(--dsgn-chrome-dark);
  border-bottom: 1px solid var(--dsgn-border);
  flex-shrink: 0;
}

.mock-designer__top-left, .mock-designer__top-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.mock-designer__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 500;
}

.mock-designer__btn--active {
  background: linear-gradient(135deg, #4a9eff 0%, #6c5ce7 100%);
  border-color: transparent;
  color: #fff;
}

.mock-designer__beta {
  font-size: 8px;
  background: #fbbf24;
  color: #1a1a2e;
  padding: 1px 4px;
  border-radius: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Workspace Layout */
.mock-designer__workspace {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* Left Panel */
.mock-designer__left {
  width: 220px;
  background: var(--dsgn-chrome-dark);
  border-right: 1px solid var(--dsgn-border);
  display: flex;
  flex-direction: column;
}

.mock-designer__tabs {
  display: flex;
  border-bottom: 1px solid var(--dsgn-border);
  background: var(--dsgn-chrome);
}

.mock-designer__tab {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dsgn-text-dim);
  border-bottom: 2px solid transparent;
}

.mock-designer__tab--active {
  color: var(--dsgn-accent);
  border-bottom-color: var(--dsgn-accent);
  background: rgba(74, 158, 255, 0.06);
}

.mock-designer__panel-body {
  padding: 12px;
  overflow: hidden;
}

.mock-designer__search {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--dsgn-text);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 11px;
  margin-bottom: 16px;
}

.mock-designer__cat-title {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dsgn-text-dim);
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--dsgn-border);
}

.mock-designer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 16px;
}

.mock-designer__elem {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 8px 4px;
  text-align: center;
  font-size: 9px;
  color: var(--dsgn-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mock-designer__elem i {
  font-size: 14px;
  color: var(--dsgn-text-dim);
}

/* Center Canvas */
.mock-designer__center {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 50% 0%, rgba(74,158,255,0.03) 0%, transparent 60%), var(--dsgn-chrome);
}

.mock-designer__canvas-toolbar {
  height: 38px;
  background: var(--dsgn-chrome-dark);
  border-bottom: 1px solid var(--dsgn-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}

.mock-designer__viewports {
  display: flex;
  gap: 4px;
}

.mock-designer__vp-btn {
  color: var(--dsgn-text-dim);
  font-size: 12px;
  padding: 4px 6px;
}

.mock-designer__vp-btn--active {
  color: var(--dsgn-accent);
  background: rgba(74,158,255,0.15);
  border-radius: 4px;
}

.mock-designer__breadcrumbs {
  font-size: 10px;
  color: var(--dsgn-text-dim);
}

.mock-designer__breadcrumbs span {
  color: var(--dsgn-accent);
}

.mock-designer__canvas {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mock-designer__page {
  width: 100%;
  max-width: 500px;
  height: 250px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #b0b0c0;
}

.mock-designer__page i {
  font-size: 32px;
  color: var(--dsgn-accent);
  opacity: 0.3;
  margin-bottom: 12px;
}

.mock-designer__page strong {
  font-size: 14px;
  color: #888;
  font-weight: 600;
}

.mock-designer__page span {
  font-size: 11px;
  color: #aaa;
  margin-top: 4px;
  text-align: center;
}

/* Right Panel */
.mock-designer__right {
  width: 240px;
  background: var(--dsgn-chrome-dark);
  border-left: 1px solid var(--dsgn-border);
  display: flex;
  flex-direction: column;
}

.mock-designer__selector {
  padding: 8px;
  border-bottom: 1px solid var(--dsgn-border);
  background: var(--dsgn-chrome);
}

.mock-designer__label {
  font-size: 9px;
  color: var(--dsgn-text-dim);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mock-designer__input-group {
  display: flex;
  gap: 6px;
}

.mock-designer__input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--dsgn-text);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
}

.mock-designer__accordion {
  border-bottom: 1px solid var(--dsgn-border);
}

.mock-designer__acc-head {
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dsgn-text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-designer__acc-body {
  padding: 8px 12px;
}

.mock-designer__prop-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.mock-designer__prop-label {
  width: 45px;
  font-size: 10px;
  color: var(--dsgn-text-dim);
}

.mock-designer__prop-segmented {
  flex: 1;
  display: flex;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.mock-designer__prop-seg-item {
  flex: 1;
  text-align: center;
  padding: 4px 0;
  font-size: 10px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.mock-designer__prop-seg-item--active {
  background: rgba(255,255,255,0.12);
}

/* Responsiveness Container Queries */
@container designerMockup (max-width: 840px) {
  .mock-designer__left { display: none; }
}

@container designerMockup (max-width: 580px) {
  .mock-designer__right { display: none; }
}

/* ================================================================
   30. MOCKUP: REPORTING / COMMERCE DASHBOARD
   ================================================================ */
.mock-report {
  background: #FAF8F5;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
}
.mock-report__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid #E0D4C4;
  background: #fff;
}
.mock-report__header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mock-report__avatar {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #3B1E08;
  color: #EF9331;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 11px;
}
.mock-report__title {
  color: #3B1E08;
  font-size: 13px;
  font-weight: 600;
}
.mock-report__subtitle {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #A56521;
  font-weight: 600;
}
.mock-report__body {
  padding: 18px 22px;
}
.mock-report__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.mock-report__kpi {
  text-align: center;
  padding: 12px 8px;
  background: #fff;
  border: 1px solid #E0D4C4;
  border-radius: 6px;
}
.mock-report__kpi-val {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: #3B1E08;
  line-height: 1;
}
.mock-report__kpi-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #A56521;
  font-weight: 600;
  margin-top: 4px;
}
.mock-report__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #E0D4C4;
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 18px;
}
.mock-report__search {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #A56521;
  font-size: 10px;
  font-style: italic;
}
.mock-report__filters {
  display: flex;
  gap: 4px;
}
.mock-report__filter {
  background: #F5EFE5;
  color: #7A5A3A;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mock-report__filter--active {
  background: #3B1E08;
  color: #fff;
}
.mock-report__section-title {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A56521;
  font-weight: 600;
  margin-bottom: 8px;
}
.mock-report__list {
  background: #fff;
  border: 1px solid #E0D4C4;
  border-radius: 6px;
  overflow: hidden;
}
.mock-report__row {
  display: grid;
  grid-template-columns: 1fr 60px 60px;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid #F5EFE5;
  align-items: center;
}
.mock-report__row:last-child {
  border-bottom: none;
}
.mock-report__row--alt {
  background: #FAF8F5;
}
.mock-report__item-title {
  color: #3B1E08;
  font-weight: 600;
  font-size: 11px;
}
.mock-report__item-sub {
  color: #A56521;
  font-size: 9px;
}
.mock-report__item-val {
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  color: #3B1E08;
}
.mock-report__status {
  text-align: right;
}
.mock-report__badge {
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mock-report__badge--success {
  background: #DCFCE7;
  color: #15803D;
}
.mock-report__badge--warning {
  background: #FEF3C7;
  color: #B45309;
}

/* ================================================================
   31. MOCKUP: DESIGN TEMPLATES DASHBOARD
   ================================================================ */
.mock-cms__design-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px 12px;
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 14px;
}
.wdd .mock-cms__design-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.mock-cms__design-actions {
  display: flex;
  gap: 6px;
}
.wdd .mock-cms__design-btn {
  background: linear-gradient(135deg, #007cba, #005a87);
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 1px 2px rgba(139, 92, 246, 0.2);
}
.wdd .mock-cms__design-btn--alt {
  background: #6c757d;
  box-shadow: none;
}
.mock-cms__design-body {
  padding: 0 24px 24px;
}
.mock-cms__design-intro {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 1px solid #dee2e6;
  border-radius: 6px;
  text-align: center;
  padding: 12px;
  margin-bottom: 16px;
}
.mock-cms__design-intro p {
  margin: 0;
  color: #666;
  font-size: 10px;
  font-style: italic;
}
.mock-cms__design-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mock-cms__design-card {
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.mock-cms__design-card--active {
  border-color: #28a745;
  background: linear-gradient(135deg, #f8fff9, #e8f5e8);
}
.mock-cms__design-card--helper {
  background: #f1f3f4;
  border: 1.5px dashed #adb5bd;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 10px;
  box-shadow: none;
}
.mock-cms__design-card--helper i {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 8px;
}
.mock-cms__design-card--helper p {
  color: #495057;
  font-size: 9px;
  margin: 0;
  line-height: 1.4;
}
.mock-cms__design-card--helper code {
  background: #E5E7EB;
  padding: 2px 4px;
  border-radius: 3px;
  font-family: 'JetBrains Mono', monospace;
  color: #e83e8c;
}
.mock-cms__design-preview {
  width: 100%;
  height: 90px;
  background: #f5f5f5;
  padding: 10px; /* Forces spacing so it isn't edge-to-edge */
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e0e0e0;
}
.mock-cms__design-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Keeps image proportions intact without cropping */
}
.mock-cms__design-info {
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mock-cms__design-info-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
  gap: 6px;
}
.mock-cms__design-name {
  font-size: 11px;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.mock-cms__design-status {
  background: #28a745;
  color: white;
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 7px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.mock-cms__design-desc {
  font-size: 9px;
  color: #666;
  margin: 0;
  line-height: 1.3;
}

/* ────────────────────────────────────────────────────────────── */
/* Hero stack mini-frame */
.wdd-hero__stack-card .wdd-frame {
  box-shadow: none; border: 0; border-radius: inherit;
  height: 100%; display: flex; flex-direction: column;
}
.wdd-hero__stack-card .wdd-frame__body {
  flex: 1; display: flex; flex-direction: column; overflow: hidden;
}
.wdd-hero__stack-card .wdd-frame__bar { padding: 7px 10px; }
.wdd-hero__stack-card .wdd-frame__dot { width: 7px; height: 7px; }

/* ── Hero Mini-mockup: Pascale's Kitchen (Back Card) ───────── */
.hero-mock-pkn {
  background: #FFFCF6;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #3a2a1a;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hero-mock-pkn__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; border-bottom: 1px solid #EFE5D6;
  font-size: 7px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #8a6c4f; font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif; font-weight: 600;
}
.hero-mock-pkn__nav { display: flex; gap: 8px; }
.hero-mock-pkn__nav span { opacity: 0.85; }
.hero-mock-pkn__logo { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 11px; font-weight: 500; color: #3a2a1a; }
.hero-mock-pkn__hero {
  display: grid; grid-template-columns: 1.1fr 1fr;
  min-height: 120px;
}
.hero-mock-pkn__hero-text { padding: 16px 12px; align-self: center; }
.hero-mock-pkn__hero h2 { font-weight: 400; font-size: 21px; line-height: 1.05; margin-bottom: 8px; color: #2a1a0a; }
.hero-mock-pkn__hero h2 em { font-style: italic; color: #a05a2a; }
.hero-mock-pkn__hero p { font-size: 12px; line-height: 1.55; font-style: italic; color: #6a5240; }
.hero-mock-pkn__hero-image {
  background: linear-gradient(135deg, rgba(58,42,26,0.05), rgba(160,90,42,0.18)), radial-gradient(circle at 30% 30%, #c98a4a, #6a3818);
  position: relative;
}
.hero-mock-pkn__hero-image::before { content: ""; position: absolute; inset: 18% 22%; border: 1px solid rgba(245,241,234,0.6); }
.hero-mock-pkn__row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #EFE5D6; }
.hero-mock-pkn__cell { padding: 10px 8px; border-right: 1px solid #EFE5D6; font-size: 7px; }
.hero-mock-pkn__cell:last-child { border-right: 0; }
.hero-mock-pkn__cell-thumb { height: 36px; border-radius: 2px; margin-bottom: 6px; background: linear-gradient(135deg, #c98a4a, #8d5a30); }
.hero-mock-pkn__cell:nth-child(2) .hero-mock-pkn__cell-thumb { background: linear-gradient(135deg, #6e8a55, #3d5230); }
.hero-mock-pkn__cell:nth-child(3) .hero-mock-pkn__cell-thumb { background: linear-gradient(135deg, #a85f44, #6a3a20); }
.hero-mock-pkn__cell-name { font-size: 9px; color: #2a1a0a; margin-bottom: 2px; }
.hero-mock-pkn__cell-meta { font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif; font-size: 6px; letter-spacing: 0.12em; text-transform: uppercase; color: #a07555; font-weight: 600; }

/* ── Hero Mini-mockup: Reporting (Mid Card) ────────────────── */
.hero-mock-report {
  background: #FAF8F5;
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  color: #3B1E08;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hero-mock-report__header { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-bottom: 1px solid #E0D4C4; background: #fff; }
.hero-mock-report__title { font-size: 9px; font-weight: 600; }
.hero-mock-report__badge { font-size: 6px; letter-spacing: 0.14em; text-transform: uppercase; color: #A56521; font-weight: 600; }
.hero-mock-report__kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px 14px; }
.hero-mock-report__kpi { text-align: center; padding: 8px 6px; background: #fff; border: 1px solid #E0D4C4; border-radius: 4px; }
.hero-mock-report__kpi-val { font-family: 'Fraunces', serif; font-size: 14px; color: #3B1E08; line-height: 1; }
.hero-mock-report__kpi-label { font-size: 6px; letter-spacing: 0.14em; text-transform: uppercase; color: #A56521; font-weight: 600; margin-top: 4px; }
.hero-mock-report__list { margin: 0 14px 14px; background: #fff; border: 1px solid #E0D4C4; border-radius: 4px; overflow: hidden; flex: 1; }
.hero-mock-report__row { display: flex; justify-content: space-between; padding: 8px 10px; border-bottom: 1px solid #F5EFE5; align-items: center; }
.hero-mock-report__row:last-child { border-bottom: none; }
.hero-mock-report__row--alt { background: #FAF8F5; }
.hero-mock-report__item-title { font-weight: 600; font-size: 11px; }
.hero-mock-report__item-sub { color: #A56521; font-size: 6px; margin-top: 2px; }
.hero-mock-report__status { background: #DCFCE7; color: #15803D; padding: 2px 4px; border-radius: 4px; font-size: 6px; font-weight: 700; text-transform: uppercase; }
.hero-mock-report__status--pend { background: #FEF3C7; color: #B45309; }

/* ── Hero Mini-mockup: Designer (Front Card) ───────────────── */
.hero-mock-dsgn {
  --h-dsgn-chrome: #2d2d3d;
  --h-dsgn-bg: #1e1e2e;
  --h-dsgn-accent: #4a9eff;
  --h-dsgn-text: #e2e2ef;
  --h-dsgn-border: rgba(255,255,255,0.08);
  background: var(--h-dsgn-bg);
  font-family: 'Inter', sans-serif;
  color: var(--h-dsgn-text);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hero-mock-dsgn__top { display: flex; align-items: center; justify-content: space-between; height: 28px; padding: 0 10px; background: var(--h-dsgn-bg); border-bottom: 1px solid var(--h-dsgn-border); font-size: 8px; font-weight: 600; }
.hero-mock-dsgn__btn { background: rgba(74,158,255,0.15); color: var(--h-dsgn-accent); padding: 3px 6px; border-radius: 2px; }
.hero-mock-dsgn__workspace { display: flex; flex: 1; overflow: hidden; }
.hero-mock-dsgn__left { width: 75px; background: var(--h-dsgn-bg); border-right: 1px solid var(--h-dsgn-border); display: flex; flex-direction: column; }
.hero-mock-dsgn__center { flex: 1; display: flex; flex-direction: column; background: var(--h-dsgn-chrome); }
.hero-mock-dsgn__right { width: 85px; background: var(--h-dsgn-bg); border-left: 1px solid var(--h-dsgn-border); display: flex; flex-direction: column; }
.hero-mock-dsgn__tabs { display: flex; border-bottom: 1px solid var(--h-dsgn-border); background: var(--h-dsgn-chrome); }
.hero-mock-dsgn__tab { flex: 1; text-align: center; padding: 6px 0; font-size: 6px; color: #8888a0; text-transform: uppercase; font-weight: 600; }
.hero-mock-dsgn__tab.is-active { color: var(--h-dsgn-accent); background: rgba(74,158,255,0.06); border-bottom: 1px solid var(--h-dsgn-accent); }
.hero-mock-dsgn__panel { padding: 8px; overflow-y: hidden; }
.hero-mock-dsgn__search { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 4px; font-size: 6px; color: #8888a0; border-radius: 2px; margin-bottom: 8px; }
.hero-mock-dsgn__cat { font-size: 6px; text-transform: uppercase; color: #8888a0; margin-bottom: 6px; border-bottom: 1px solid var(--h-dsgn-border); padding-bottom: 2px; font-weight: 600; }
.hero-mock-dsgn__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 10px; }
.hero-mock-dsgn__elem { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 6px 2px; text-align: center; font-size: 5px; border-radius: 2px; color: var(--h-dsgn-text); }
.hero-mock-dsgn__vp-bar { height: 24px; background: var(--h-dsgn-bg); border-bottom: 1px solid var(--h-dsgn-border); display: flex; align-items: center; justify-content: space-between; padding: 0 8px; }
.hero-mock-dsgn__vp-dots { display: flex; gap: 4px; }
.hero-mock-dsgn__vp-dots span { display: block; width: 8px; height: 5px; border: 1px solid #8888a0; border-radius: 1px; }
.hero-mock-dsgn__vp-dots span.active { border-color: var(--h-dsgn-accent); background: rgba(74,158,255,0.15); }
.hero-mock-dsgn__crumb { font-size: 6px; color: #8888a0; }
.hero-mock-dsgn__canvas { flex: 1; padding: 14px; display: flex; align-items: center; justify-content: center; }
.hero-mock-dsgn__page { width: 100%; height: 120px; background: #fff; border-radius: 2px; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.hero-mock-dsgn__page strong { font-size: 9px; color: #888; font-weight: 600; margin-bottom: 4px; }
.hero-mock-dsgn__page span { font-size: 6px; color: #aaa; text-align: center; padding: 0 10px; }
.hero-mock-dsgn__selector { background: rgba(255,255,255,0.06); padding: 4px; font-size: 6px; border-radius: 2px; margin-bottom: 8px; text-align: left; border: 1px solid rgba(255,255,255,0.08); }
.hero-mock-dsgn__acc-head { font-size: 6px; text-transform: uppercase; color: #8888a0; padding: 6px 0; border-bottom: 1px solid var(--h-dsgn-border); font-weight: 600; margin-bottom: 6px;}
.hero-mock-dsgn__prop { display: flex; align-items: center; gap: 4px; margin-bottom: 6px; }
.hero-mock-dsgn__prop > span { font-size: 6px; color: #8888a0; width: 22px; }
.hero-mock-dsgn__seg { flex: 1; display: flex; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 2px; }
.hero-mock-dsgn__seg span { flex: 1; text-align: center; font-size: 6px; padding: 3px 0; border-right: 1px solid rgba(255,255,255,0.08); }
.hero-mock-dsgn__seg span:last-child { border-right: none; }
.hero-mock-dsgn__seg span.active { background: rgba(255,255,255,0.12); }


/* ================================================================
   13. CARDS — generic
   ================================================================ */
.wdd-card {
  background: var(--wdd-paper);
  border: 1px solid var(--wdd-border);
  border-radius: var(--wdd-radius-lg);
  padding: 32px;
  transition: border-color var(--wdd-t), box-shadow var(--wdd-t), transform var(--wdd-t);
  position: relative;
}
.wdd-card:hover {
  border-color: var(--wdd-border-strong);
  box-shadow: var(--wdd-shadow-md);
  transform: translateY(-2px);
}
.wdd-card--cream { background: var(--wdd-cream); border-color: var(--wdd-border-soft); }
.wdd-card--ink {
  background: var(--wdd-ink-soft);
  border-color: var(--wdd-ink-line);
  color: var(--wdd-cream);
}
.wdd-card--ink h3 { color: var(--wdd-cream); }
.wdd-card--flat:hover { transform: none; box-shadow: none; }

.wdd-card__num {
  font-family: var(--wdd-font-display);
  font-size: 14px;
  color: var(--wdd-bronze-deep);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.wdd-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--wdd-bronze-pale);
  color: var(--wdd-bronze-deep);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.wdd-card__icon svg { width: 22px; height: 22px; }
.wdd-card__title {
  font-family: var(--wdd-font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--wdd-ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.wdd-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--wdd-text-soft);
}
.wdd .wdd-card__list {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--wdd-border);
}
.wdd-card__list li {
  font-size: 13px;
  color: var(--wdd-text-soft);
  padding: 6px 0 6px 22px;
  position: relative;
}
.wdd-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 12px; height: 1px;
  background: var(--wdd-bronze);
}


/* ================================================================
   14. SECTION HEADERS
   ================================================================ */
.wdd-secthead {
  max-width: 720px;
  margin: 0 0 56px;
}
.wdd-secthead--center { margin-left: auto; margin-right: auto; text-align: center; }

.wdd-secthead__title {
  font-family: var(--wdd-font-display);
  font-weight: 350;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.07;
  letter-spacing: -0.018em;
  color: var(--wdd-ink);
  margin-bottom: 18px;
}
.wdd-secthead__title em { font-style: italic; color: var(--wdd-bronze-deep); }
.wdd-section--ink .wdd-secthead__title { color: var(--wdd-cream); }
.wdd-section--ink .wdd-secthead__title em { color: var(--wdd-bronze); }

.wdd-secthead__lede {
  font-family: var(--wdd-font-display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--wdd-text-soft);
}
.wdd-section--ink .wdd-secthead__lede { color: rgba(240,242,247,0.78); }

.wdd-code-intro {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(245,241,234,0.45);
  margin: 0 0 16px;
}

/* ================================================================
   15. GRIDS
   ================================================================ */
.wdd-grid {
  display: grid;
  gap: clamp(20px, 2.4vw, 32px);
}
.wdd-grid--2 { grid-template-columns: repeat(2, 1fr); }
.wdd-grid--3 { grid-template-columns: repeat(3, 1fr); }
.wdd-grid--4 { grid-template-columns: repeat(4, 1fr); }
.wdd-grid--portfolio {
  grid-template-columns: repeat(12, 1fr);
}
.wdd-grid--portfolio > * { grid-column: span 6; }
.wdd-grid--portfolio > .span-12 { grid-column: span 12; }
.wdd-grid--portfolio > .span-8  { grid-column: span 8; }
.wdd-grid--portfolio > .span-4  { grid-column: span 4; }

/* Force 12-span when a specific filter is active */
.wdd-grid--filtered .wdd-work {
  grid-column: span 12 !important;
}


/* ================================================================
   16. PORTFOLIO ITEM
   ================================================================ */
.wdd-work {
  background: var(--wdd-paper);
  border: 1px solid var(--wdd-border);
  border-radius: var(--wdd-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--wdd-t), box-shadow var(--wdd-t), border-color var(--wdd-t);
}
.wdd-work:hover {
  transform: translateY(-3px);
  box-shadow: var(--wdd-shadow-lg);
  border-color: var(--wdd-border-strong);
}
.wdd-work__visual {
  position: relative;
  background: var(--wdd-cream-soft);
  padding: 22px 22px 0;
  overflow: hidden;
}
.wdd-work__visual--full { padding: 0; }
.wdd-work__visual .wdd-frame {
  border-radius: var(--wdd-radius-md) var(--wdd-radius-md) 0 0;
  margin-bottom: -1px;
  box-shadow: 0 -8px 28px rgba(20,24,31,0.06);
}
.wdd-work__body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wdd-work__cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wdd-bronze-deep);
}
.wdd-work__title {
  font-family: var(--wdd-font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--wdd-ink);
  letter-spacing: -0.01em;
}
.wdd-work__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--wdd-text-soft);
}
.wdd-work__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 6px;
}
.wdd-work__tag {
  font-size: 11px;
  padding: 3px 9px;
  border: 1px solid var(--wdd-border-strong);
  border-radius: 999px;
  color: var(--wdd-text-muted);
  letter-spacing: 0.02em;
}
.wdd-work__link {
  margin-top: 10px;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: var(--wdd-ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  padding: 4px 0;
  transition: border-color var(--wdd-t-fast), color var(--wdd-t-fast);
}
.wdd-work__link:hover { color: var(--wdd-accent-hover); border-bottom-color: var(--wdd-accent); }

/* ================================================================
   TRAIL RIDERS MOCKUP
   ================================================================ */
   
/* ── Mockup: SBTR Trail Riders Outfitters (faithful small-business replica) ── */
.mock-sbtr {
  background: #FAF8F5;
  color: #1C1C1C;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  
  container-type: inline-size; 
  container-name: sbtrmockup;
}

/* Utility Bar */
.mock-sbtr__utility-bar {
  background: #1C1C1C;
  color: #D9D3CC;
  font-size: 9px;
  letter-spacing: 0.4px;
  padding: 5px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mock-sbtr__utility-bar strong { color: #fff; }
.mock-sbtr__utility-links { display: none; }

/* Header */
.mock-sbtr__header {
  background: #fff;
  border-bottom: 1px solid #E8E2DA;
  padding: 0 10px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mock-sbtr__hamburger {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}
.mock-sbtr__hamburger span {
  display: block;
  width: 14px;
  height: 1.5px;
  background: #1C1C1C;
}
.mock-sbtr__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.mock-sbtr__logo-img {
  height: 28px;
  width: 28px;
  object-fit: contain;
}
.mock-sbtr__logo-text {
  font-family: 'Fraunces', serif;
  font-size: 11px;
  font-weight: 700;
  color: #502400;
  line-height: 1.15;
  letter-spacing: 0.2px;
}
.mock-sbtr__logo-text small {
  display: block;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9B9490;
}
.mock-sbtr__search {
  flex: 1;
  min-width: 0;
  background: #FAF8F5;
  border: 1px solid #E8E2DA;
  padding: 5px 8px;
  font-size: 8px;
  color: #9B9490;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.mock-sbtr__header-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.mock-sbtr__icon {
  position: relative;
  color: #1C1C1C;
}
.mock-sbtr__icon svg { width: 18px; height: 18px; }
.mock-sbtr__cart-badge {
  position: absolute;
  top: -4px;
  right: -5px;
  background: #EF9331;
  color: #fff;
  font-size: 6px;
  font-weight: 700;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Nav */
.mock-sbtr__nav {
  background: #fff;
  border-bottom: 1px solid #E8E2DA;
  padding: 0 10px;
  display: flex;
  align-items: center;
  height: 30px;
  overflow: hidden;
}
.mock-sbtr__nav-item {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #1C1C1C;
  padding: 0 8px;
  white-space: nowrap;
}
.mock-sbtr__nav-item:first-child { padding-left: 0; }

/* Hero */
.mock-sbtr__hero {
  background: url('https://picsum.photos/seed/western-landscape-1/1400/500') center/cover no-repeat;
  position: relative;
  height: 180px;
}
.mock-sbtr__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,28,28,0.65) 0%, rgba(28,28,28,0.15) 70%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}
.mock-sbtr__hero-tag {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #EF9331;
  margin-bottom: 6px;
}
.mock-sbtr__hero-title {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  max-width: 200px;
  margin: 0;
}
.mock-sbtr__hero-sub { display: none; }
.mock-sbtr__hero-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background: #502400;
  color: #fff;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  max-width: 175px;
}

/* Section Heading */
.mock-sbtr__section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 12px 10px;
}
.mock-sbtr__section-title {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1C;
}
.mock-sbtr__section-link {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #502400;
}

/* Products Grid */
.mock-sbtr__products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 12px 16px;
}
.mock-sbtr__card {
  background: #fff;
  border: 1px solid #F0EBE5;
  display: flex;
  flex-direction: column;
}
.mock-sbtr__card-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f5f0eb;
}
.mock-sbtr__card-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.mock-sbtr__card-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 2px 6px;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
}
.mock-sbtr__card-badge--new { background: #502400; }
.mock-sbtr__card-badge--sale { background: #A0522D; }
.mock-sbtr__card-info { padding: 8px 8px 10px; }
.mock-sbtr__card-brand {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #9B9490;
  margin-bottom: 2px;
}
.mock-sbtr__card-name {
  font-size: 9px;
  color: #1C1C1C;
  line-height: 1.35;
  margin-bottom: 3px;
}
.mock-sbtr__card-stars {
  font-size: 8px;
  color: #D4A04A;
  margin-bottom: 3px;
}
.mock-sbtr__card-stars span { color: #9B9490; font-size: 7px; }
.mock-sbtr__card-price {
  font-size: 10px;
  font-weight: 700;
  color: #1C1C1C;
}
.mock-sbtr__card-price--sale { color: #A0522D; }
.mock-sbtr__card-price--orig {
  font-size: 8px;
  font-weight: 400;
  color: #9B9490;
  text-decoration: line-through;
  margin-left: 3px;
}

/* ── Stacked state: matches the portfolio grid's own 1024px breakpoint ── */
@media (max-width: 1024px) {
  .mock-sbtr__utility-bar {
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 7px 32px;
    justify-content: space-between;
  }
  .mock-sbtr__utility-links { display: flex; gap: 20px; }
  .mock-sbtr__header {
    height: 72px;
    padding: 0 32px;
    gap: 0;
  }
  .mock-sbtr__hamburger { display: none; }
  .mock-sbtr__logo { gap: 12px; }
  .mock-sbtr__logo-img { height: 50px; width: 50px; }
  .mock-sbtr__logo-text { font-size: 20px; }
  .mock-sbtr__logo-text small { font-size: 10px; letter-spacing: 2px; }
  .mock-sbtr__search {
    flex: 1;
    max-width: 480px;
    margin: 0 40px;
    padding: 10px 18px;
    font-size: 14px;
  }
  .mock-sbtr__header-icons { gap: 22px; }
  .mock-sbtr__icon svg { width: 22px; height: 22px; }
  .mock-sbtr__cart-badge {
    width: 18px;
    height: 18px;
    font-size: 10px;
    top: -6px;
    right: -8px;
  }
  .mock-sbtr__nav {
    height: 48px;
    padding: 0 32px;
    overflow: visible;
  }
  .mock-sbtr__nav-item {
    font-size: 13px;
    padding: 0 20px;
    letter-spacing: 0.8px;
  }
  .mock-sbtr__nav-item:first-child { padding-left: 0; }
  .mock-sbtr__hero { height: 400px; }
  .mock-sbtr__hero-overlay { padding: 0 80px; }
  .mock-sbtr__hero-tag {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .mock-sbtr__hero-title {
    font-size: 40px;
    max-width: 480px;
    margin-bottom: 12px;
  }
  .mock-sbtr__hero-sub {
    display: block;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    max-width: 400px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .mock-sbtr__hero-btn {
    font-size: 12px;
    padding: 12px 28px;
    letter-spacing: 1px;
  }
  .mock-sbtr__section-heading { padding: 40px 32px 20px; }
  .mock-sbtr__section-title { font-size: 28px; }
  .mock-sbtr__section-link { font-size: 12px; letter-spacing: 0.5px; }
  .mock-sbtr__products {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 32px 40px;
  }
  .mock-sbtr__card-badge { top: 8px; left: 8px; padding: 4px 8px; font-size: 9px; }
  .mock-sbtr__card-info { padding: 12px 14px 16px; }
  .mock-sbtr__card-brand { font-size: 10px; margin-bottom: 3px; }
  .mock-sbtr__card-name { font-size: 13px; margin-bottom: 5px; }
  .mock-sbtr__card-stars { font-size: 12px; margin-bottom: 4px; }
  .mock-sbtr__card-stars span { font-size: 11px; }
  .mock-sbtr__card-price { font-size: 14px; }
  .mock-sbtr__card-price--orig { font-size: 12px; }
}


@container sbtrmockup (max-width: 768px) {
    .mock-sbtr__search,
    .mock-sbtr__icon.mock-sbtr__icon--cart,
    .mock-sbtr__nav {
        display:none;
    }  
     .mock-sbtr__products {
        grid-template-columns: repeat(2, 1fr); 
     }
}
@container sbtrmockup (max-width: 350px) {
    .mock-sbtr__hero-btn {
        max-width: 95px;
        padding: 8px 12px;
    }    
}


/* ================================================================
   17. FILTER TABS (portfolio)
   ================================================================ */
.wdd-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--wdd-border);
}
.wdd-filter__btn {
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--wdd-text-soft);
  background: transparent;
  border: 1px solid var(--wdd-border);
  border-radius: 999px;
  transition: all var(--wdd-t-fast);
}
.wdd-filter__btn:hover {
  background: var(--wdd-cream);
  border-color: var(--wdd-border-strong);
  color: var(--wdd-ink);
}
.wdd-filter__btn.is-active {
  background: var(--wdd-ink);
  border-color: var(--wdd-ink);
  color: var(--wdd-cream);
}
.wdd-filter__count {
  margin-left: 8px;
  font-size: 11px;
  opacity: 0.6;
}


/* ================================================================
   18. PROCESS STRIP
   ================================================================ */
.wdd-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--wdd-border);
  border-bottom: 1px solid var(--wdd-border);
}
.wdd-process__step {
  padding: 32px 24px;
  border-right: 1px solid var(--wdd-border);
  position: relative;
}
.wdd-process__step:last-child { border-right: 0; }
.wdd-process__num {
  font-family: var(--wdd-font-display);
  font-size: 14px;
  color: var(--wdd-bronze-deep);
  margin-bottom: 14px;
  display: block;
}
.wdd-process__title {
  font-family: var(--wdd-font-display);
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--wdd-ink);
  letter-spacing: -0.005em;
}
.wdd-process__desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--wdd-text-soft);
}


/* ================================================================
   19. CODE BLOCKS
   ================================================================ */
.wdd-code {
  background: #0E1218;
  color: #D9DEE7;
  border-radius: var(--wdd-radius-md);
  padding: 22px 24px;
  font-family: var(--wdd-font-mono);
  font-size: 12.5px;
  line-height: 1.75;
  overflow-x: auto;
  border: 1px solid #1F2530;
  position: relative;
}
.wdd-code__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #1A1F28;
  border: 1px solid #1F2530;
  border-bottom: 0;
  border-radius: var(--wdd-radius-md) var(--wdd-radius-md) 0 0;
  font-family: var(--wdd-font-mono);
  font-size: 11px;
  color: #98A1B5;
}
.wdd-code__bar + .wdd-code {
  border-radius: 0 0 var(--wdd-radius-md) var(--wdd-radius-md);
  border-top: 0;
}
.wdd-code__lang {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.wdd-code__lang::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wdd-bronze);
}
.wdd-code .tk-key  { color: #C792EA; }   /* keyword */
.wdd-code .tk-fn   { color: #82AAFF; }   /* function */
.wdd-code .tk-str  { color: #C3E88D; }   /* string */
.wdd-code .tk-num  { color: #F78C6C; }   /* number */
.wdd-code .tk-cmt  { color: #6B7B95; font-style: italic; }
.wdd-code .tk-var  { color: #FFCB6B; }   /* var */
.wdd-code .tk-prop { color: #80CBC4; }   /* property */


/* ================================================================
   20. CALLOUT / CTA BAND
   ================================================================ */
.wdd-cta {
  background: var(--wdd-ink);
  color: var(--wdd-cream);
  padding: clamp(60px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.wdd-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 20%, rgba(94,121,160,0.18), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(94,121,160,0.08), transparent 55%);
}
.wdd-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.wdd-cta__title {
  font-family: var(--wdd-font-display);
  font-weight: 350;
  font-size: clamp(32px, 4.5vw, 45px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--wdd-cream);
  margin-bottom: 22px;
}
.wdd-cta__title em { font-style: italic; color: var(--wdd-bronze); }
.wdd-cta__lede {
  font-family: var(--wdd-font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(240,242,247,0.78);
  margin-bottom: 32px;
  max-width: 540px;
}
.wdd-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.wdd-cta__detail {
  background: rgba(94,121,160,0.10);
  border: 1px solid rgba(240,242,247,0.15);
  border-radius: var(--wdd-radius-lg);
  padding: 32px;
}
.wdd-cta__detail h4 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wdd-bronze);
  margin-bottom: 22px;
  font-weight: 600;
}
.wdd-cta__detail-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(240,242,247,0.10);
}
.wdd-cta__detail-item:last-child { border-bottom: 0; }
.wdd-cta__detail-item strong {
  font-family: var(--wdd-font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--wdd-cream);
  flex-shrink: 0;
  min-width: 32px;
}
.wdd-cta__detail-item span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(240,242,247,0.78);
}


/* ================================================================
   21. CONTACT FORM
   ================================================================ */
.wdd-contact {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.wdd-form {
  background: var(--wdd-paper);
  border: 1px solid var(--wdd-border);
  border-radius: var(--wdd-radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--wdd-shadow-sm);
}
.wdd-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.wdd-form__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.wdd-form__field--full { grid-column: 1 / -1; }
.wdd-form__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wdd-text-soft);
}
.wdd-form__label .req { color: var(--wdd-bronze-deep); }
.wdd-form__input,
.wdd-form__select,
.wdd-form__textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--wdd-font-body);
  font-size: 15px;
  color: var(--wdd-ink);
  background: var(--wdd-cream-soft);
  border: 1px solid var(--wdd-border);
  border-radius: var(--wdd-radius-md);
  transition: border-color var(--wdd-t-fast), background var(--wdd-t-fast),
              box-shadow var(--wdd-t-fast);
  outline: none;
}
.wdd-form__input:focus,
.wdd-form__select:focus,
.wdd-form__textarea:focus {
  border-color: var(--wdd-bronze);
  background: var(--wdd-paper);
  box-shadow: 0 0 0 3px var(--wdd-bronze-pale);
}
.wdd-form__input.is-error,
.wdd-form__select.is-error,
.wdd-form__textarea.is-error {
  border-color: var(--wdd-error);
  box-shadow: 0 0 0 3px rgba(183,71,42,0.08);
}
.wdd-form__textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.55;
}
.wdd-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236B7280' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.wdd-form__hint {
  font-size: 12px;
  color: var(--wdd-text-muted);
  margin-top: 4px;
}
.wdd-form__error {
  font-size: 12px;
  color: var(--wdd-error);
  margin-top: 4px;
  display: none;
}
.wdd-form__field.is-error .wdd-form__error { display: block; }

/* Honeypot — hidden from real users */
.wdd-form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.wdd-form__actions {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.wdd-form__fineprint {
  font-size: 12.5px;
  color: var(--wdd-text-muted);
  max-width: 320px;
  line-height: 1.5;
}

.wdd-form__status {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: var(--wdd-radius-md);
  font-size: 14px;
  line-height: 1.5;
  display: none;
}
.wdd-form__status.is-visible { display: block; }
.wdd-form__status--success {
  background: rgba(92,122,86,0.08);
  border: 1px solid rgba(92,122,86,0.3);
  color: #4A6644;
}
.wdd-form__status--error {
  background: rgba(183,71,42,0.06);
  border: 1px solid rgba(183,71,42,0.3);
  color: #8E3A22;
}

.wdd-contact__aside h3 {
  font-family: var(--wdd-font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--wdd-ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.wdd-contact__aside p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--wdd-text-soft);
  margin-bottom: 28px;
}

.wdd-expect {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  border-top: 1px solid var(--wdd-border);
}
.wdd-expect li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--wdd-border);
  align-items: start;
}
.wdd-expect__when {
  font-family: var(--wdd-font-display);
  font-size: 16px;
  color: var(--wdd-bronze-deep);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.wdd-expect__what strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--wdd-ink);
  margin-bottom: 4px;
}
.wdd-expect__what span {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--wdd-text-soft);
}

.wdd-direct {
  background: var(--wdd-cream);
  border: 1px solid var(--wdd-border);
  border-radius: var(--wdd-radius-lg);
  padding: 24px;
}
.wdd-direct h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wdd-text-muted);
  margin-bottom: 14px;
  font-weight: 600;
}
.wdd-direct__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--wdd-ink);
}
.wdd-direct__row a:hover { color: var(--wdd-bronze-deep); border-bottom: 1px solid var(--wdd-bronze); }
.wdd-direct__row svg { width: 16px; height: 16px; color: var(--wdd-bronze-deep); flex-shrink: 0; }


/* ================================================================
   22. STAGE / FEATURE BLOCK (alternating image+text)
   ================================================================ */
.wdd-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--wdd-border);
}
.wdd-stage:last-child { border-bottom: 0; }
.wdd-stage--reverse .wdd-stage__media { order: 2; }
.wdd-stage--fixed-media {
  display: flex;
}
.wdd-stage--fixed-media > div {
  flex: 1;
  min-width: 0;
}
.wdd-stage--fixed-media .wdd-stage__media {
  flex: 0 0 650px;
  max-width: 100%;
}
.wdd-stage__title {
  font-family: var(--wdd-font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  color: var(--wdd-ink);
}
.wdd-stage__title em { font-style: italic; color: var(--wdd-bronze-deep); }
.wdd-stage__lede {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--wdd-text-soft);
  margin-bottom: 22px;
}
.wdd-stage__list {
  margin-bottom: 24px;
}
.wdd-stage__list li {
  font-size: 14.5px;
  color: var(--wdd-text-soft);
  padding: 8px 0 8px 26px;
  position: relative;
  line-height: 1.55;
  border-bottom: 1px solid var(--wdd-border-soft);
}
.wdd-stage__list li:last-child { border-bottom: 0; }
.wdd-stage__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 20px;
  width: 14px; height: 1px;
  background: var(--wdd-bronze);
}


/* ================================================================
   23. STAT STRIP
   ================================================================ */
.wdd-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--wdd-border);
  border-radius: var(--wdd-radius-md);
  overflow: hidden;
}
.wdd-stats__item {
  background: var(--wdd-paper);
  padding: 28px 22px;
  text-align: center;
}
.wdd-stats__num {
  font-family: var(--wdd-font-display);
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 400;
  color: var(--wdd-ink);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1;
}
.wdd-stats__num em { color: var(--wdd-bronze-deep); font-style: italic; }
.wdd-stats__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wdd-text-muted);
}


/* ================================================================
   24. PILLS / TAG STRIP
   ================================================================ */
.wdd-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wdd-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--wdd-cream);
  border: 1px solid var(--wdd-border);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--wdd-text-soft);
}
.wdd-pill__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wdd-bronze);
}
.wdd-section--ink .wdd-pill {
  background: rgba(240,242,247,0.04);
  border-color: rgba(240,242,247,0.12);
  color: rgba(240,242,247,0.8);
}


/* ================================================================
   24a. SERVICES HERO — SVG network constellation
   ================================================================ */
.wdd-pagehero__network {
  width: 380px;
  max-width: 420px;
  align-self: center;
  justify-self: end;
}
.wdd-pagehero__network svg {
  width: 100%;
  height: auto;
  display: block;
}
.wdd-pagehero__network .net-line {
  stroke: var(--wdd-bronze);
  stroke-width: 1;
  opacity: 0.28;
}
.wdd-pagehero__network .net-node {
  fill: var(--wdd-paper);
  stroke: var(--wdd-border-strong);
  stroke-width: 1.2;
}
.wdd-pagehero__network .net-dot {
  fill: var(--wdd-bronze);
}
.wdd-pagehero__network .net-label {
  font-family: var(--wdd-font-body);
  font-size: 11px;
  font-weight: 600;
  fill: var(--wdd-ink);
  text-anchor: middle;
}
.wdd-pagehero__network .net-sublabel {
  font-family: var(--wdd-font-body);
  font-size: 8px;
  fill: var(--wdd-text-muted);
  text-anchor: middle;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wdd-pagehero__network .net-ring {
  fill: none;
  stroke: var(--wdd-bronze);
  stroke-width: 0.5;
  opacity: 0.18;
}
@keyframes wdd-float-1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(0, -4px); }
}
@keyframes wdd-float-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(3px, -2px); }
}
@keyframes wdd-float-3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-2px, -3px); }
}
@keyframes wdd-pulse-ring {
  0%, 100% { opacity: 0.18; }
  50% { opacity: 0.06; }
}
.wdd-pagehero__network .net-group--1 { animation: wdd-float-1 6s ease-in-out infinite; }
.wdd-pagehero__network .net-group--2 { animation: wdd-float-2 7s ease-in-out infinite 0.5s; }
.wdd-pagehero__network .net-group--3 { animation: wdd-float-3 5.5s ease-in-out infinite 1s; }
.wdd-pagehero__network .net-group--4 { animation: wdd-float-2 6.5s ease-in-out infinite 1.5s; }
.wdd-pagehero__network .net-group--5 { animation: wdd-float-1 5s ease-in-out infinite 0.8s; }
.wdd-pagehero__network .net-ring--pulse { animation: wdd-pulse-ring 4s ease-in-out infinite; }


.wdd-pagehero__network .net-hub {
  fill: var(--wdd-ink);
  stroke: var(--wdd-ink);
}
.wdd-pagehero__network .net-hub-label {
  font-family: var(--wdd-font-body);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  fill: var(--wdd-cream);
  text-anchor: middle;
}


/* ================================================================
   24b. PLATFORM HERO — schematic visual
   ================================================================ */
.wdd-pagehero__schematic {
  width: 400px;
  max-width: 440px;
  align-self: center;
  justify-self: end;
}
.wdd-pagehero__schematic svg {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes wdd-draw {
  from { stroke-dashoffset: 1; }
  to { stroke-dashoffset: 0; }
}
@keyframes wdd-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.wdd-pagehero__schematic .schem-line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: wdd-draw 1.5s ease-out forwards;
}
.wdd-pagehero__schematic .schem-line--d1 { animation-delay: 0.3s; }
.wdd-pagehero__schematic .schem-line--d2 { animation-delay: 0.6s; }
.wdd-pagehero__schematic .schem-line--d3 { animation-delay: 0.9s; }
.wdd-pagehero__schematic .schem-line--d4 { animation-delay: 1.2s; }
.wdd-pagehero__schematic .schem-fade {
  opacity: 0;
  animation: wdd-fade-in 0.8s ease-out forwards;
}
.wdd-pagehero__schematic .schem-fade--d1 { animation-delay: 0.5s; }
.wdd-pagehero__schematic .schem-fade--d2 { animation-delay: 0.8s; }
.wdd-pagehero__schematic .schem-fade--d3 { animation-delay: 1.1s; }
.wdd-pagehero__schematic .schem-fade--d4 { animation-delay: 1.4s; }
.wdd-pagehero__schematic .schem-fade--d5 { animation-delay: 1.7s; }


/* ================================================================
   24c. HERO META — accent color class (replaces inline style)
   ================================================================ */
.wdd-hero__meta-accent {
  font-style: italic;
  color: var(--wdd-bronze-deep);
}


/* ================================================================
   24d. UTILITY — centered margin-top block (replaces inline style)
   ================================================================ */
.wdd-block--center-mt {
  text-align: center;
  margin-top: 48px;
}


/* ================================================================
   25. RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .wdd-hero__grid { grid-template-columns: 1fr; }
  .wdd-hero__stack { max-width: 480px; margin-top: 28px; }
  .wdd-cta__inner { grid-template-columns: 1fr; }
  .wdd-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .wdd-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .wdd-process { grid-template-columns: repeat(3, 1fr); }
  .wdd-process__step:nth-child(3n) { border-right: 0; }
  .wdd-stats { grid-template-columns: repeat(2, 1fr); }
  .wdd-grid--portfolio > * { grid-column: span 12; }
  .wdd-grid--portfolio > .span-8,
  .wdd-grid--portfolio > .span-4 { grid-column: span 12; }
  .wdd-contact { grid-template-columns: 1fr; }
  .wdd-pagehero__inner { grid-template-columns: 1fr; }
  .wdd-pagehero__network,
  .wdd-pagehero__schematic { max-width: 360px; justify-self: start; margin-top: 24px; }
  .wdd-stage,
  .wdd-stage--reverse { grid-template-columns: 1fr; }
  .wdd-stage--reverse .wdd-stage__media { order: 0; }
  .wdd-stage--fixed-media { flex-direction: column; }
  .wdd-stage--fixed-media .wdd-stage__media { flex: 1 1 auto; width: 100%; }
}

@media (max-width: 768px) {
  .mock-cms__right { display: none; }
}

@media (max-width: 720px) {
  .wdd-subnav__list { display: none; }
  .wdd-subnav__cta { display: none; }
  .wdd-subnav__toggle { display: inline-grid; place-items: center; }
  .wdd-subnav.is-open .wdd-subnav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--wdd-subnav-h);
    left: 0; right: 0;
    background: var(--wdd-paper);
    padding: 14px var(--wdd-gutter) 22px;
    border-bottom: 1px solid var(--wdd-border);
    box-shadow: var(--wdd-shadow-md);
    gap: 0;
  }
  .wdd-subnav.is-open .wdd-subnav__link {
    padding: 14px 4px;
    border-bottom: 1px solid var(--wdd-border-soft);
    font-size: 16px;
  }
  .wdd-subnav.is-open .wdd-subnav__link.is-active::after { display: none; }
  .wdd-subnav.is-open .wdd-subnav__cta {
    display: inline-flex;
    margin: 16px 4px 0;
    justify-content: center;
  }

  .wdd-grid--2,
  .wdd-grid--3,
  .wdd-grid--4 { grid-template-columns: 1fr; }
  .wdd-process { grid-template-columns: 1fr; }
  .wdd-process__step { border-right: 0; border-bottom: 1px solid var(--wdd-border); }
  .wdd-process__step:last-child { border-bottom: 0; }
  .wdd-stats { grid-template-columns: 1fr 1fr; }
  .wdd-form__row { grid-template-columns: 1fr; }
  .wdd-hero__stack-card--back { inset: 0 18% 30% 0; }
  .wdd-hero__stack-card--mid  { inset: 18% 4% 12% 14%; }
  .wdd-hero__stack-card--front { inset: 36% 0 0 28%; }
  .mock-cms__chrome { grid-template-columns: 64px 1fr; }
  .mock-cms__sidebar-brand-text,
  .mock-cms__sidebar-section,
  .mock-cms__sidebar-item span:not(.mock-cms__sidebar-item-icon) { display: none; }
  .mock-cms__sidebar-item { justify-content: center; padding: 9px 0; }
  .mock-cms__sidebar-item.is-active { padding-left: 0; border-left: 0; border-right: 2px solid #B8743C; }
  .mock-cms__list-row { grid-template-columns: 30px 1.5fr 60px; }
  .mock-cms__list-meta:nth-of-type(1),
  .mock-cms__list-meta:nth-of-type(2) { display: none; }
  

  .mock-pkn__nav { gap: 3px; }
  .mock-pkn__nav li { padding: 0 2px; }
  .mock-pkn__sidebar { width: 100px; }
  .mock-pkn__sidebar-head { font-size: 9px; }
  .mock-pkn__sidebar-section li { font-size: 8px; }
  .mock-pkn__gallery { grid-template-columns: repeat(2, 1fr); }
  .mock-pkn__card:nth-child(3n)::after { display: block; }
  .mock-pkn__card:nth-child(2n)::after { display: none; }
  
  .wdd-secthead { margin-bottom: 36px; }
  .wdd-section { padding-top: 56px; padding-bottom: 56px; }
  .wdd-hero__meta { gap: 18px 24px; }
  .wdd-hero__meta-num { font-size: 22px; }
  .wdd-form__actions { flex-direction: column; align-items: stretch; }
  .wdd-form__actions .wdd-btn { width: 100%; }
}



/* ================================================================
   26. FOOTER
   ================================================================ */
.wdd-footer {
  background: var(--wdd-ink);
  color: var(--wdd-text-faint);
  padding: 56px 0 28px;
  border-top: 1px solid var(--wdd-border);
}

.wdd-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  font-family: var(--wdd-font-body);
  font-size: 14px;
}

.wdd-footer__brand-col {
  display: flex;
  flex-direction: column;
}

.wdd-footer__brand {
  margin-bottom: 14px;
}
.wdd-footer__brand,
.wdd-footer__brand a,
.wdd-footer__brand a:link,
.wdd-footer__brand a:visited,
.wdd-footer__brand a:hover {
  font-family: var(--wdd-font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--wdd-cream);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.wdd-footer__text {
  line-height: 1.6;
  color: var(--wdd-text-faint);
  max-width: 340px;
}

.wdd-footer__title {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wdd-cream);
  font-weight: 600;
  margin-bottom: 14px;
}

.wdd-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2;
}

.wdd-footer__link {
  color: var(--wdd-text-faint);
  text-decoration: none;
  transition: color var(--wdd-t-fast);
}

.wdd-footer__link:hover {
  color: var(--wdd-cream);
}

.wdd-footer__bottom {
  max-width: 1240px;
  margin: 48px auto 0;
  padding: 24px 32px 0;
  border-top: 1px solid var(--wdd-border-ink);
  font-size: 12px;
  color: var(--wdd-text-muted);
  text-align: center;
}

@media (max-width: 768px) {
  .wdd-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}


/* ================================================================
   27. PRINT
   ================================================================ */
@media print {
  .wdd-subnav, .wdd-cta, .wdd-form, .iluvana_header, .iluvana_footer { display: none; }
  .wdd-section { padding: 24px 0; }
}
