    .wcl-app {
      color-scheme: light;

      --red-merlot: #5B0E19;
      --red-ruby: #981B2B;
      --red-cranberry: #C2183A;
      --red-original: #E02B20;
      --red-poinsettia: #D94A3A;

      --wcl-accent: #E02B20;
      --wcl-accent-dark: #B62019;
      --wcl-accent-deep: #7E1511;
      --wcl-accent-bright: #F35B50;
      --wcl-accent-soft: #FDE9E7;

      --wcl-black: #171717;
      --wcl-charcoal: #292929;
      --wcl-body: #4B4B4B;
      --wcl-muted: #737373;
      --wcl-white: #FFFFFF;
      --wcl-off-white: #FCFAF8;
      --wcl-cream: #F7F2EC;
      --wcl-line: rgba(23, 23, 23, 0.12);
      --wcl-gold: #D5A83C;
      --wcl-success: #25745B;

      --wcl-container: 1180px;
      --wcl-radius-sm: 12px;
      --wcl-radius: 20px;
      --wcl-radius-lg: 32px;
      --wcl-shadow-soft: 0 14px 38px rgba(52, 18, 18, 0.10);
      --wcl-shadow: 0 28px 80px rgba(52, 18, 18, 0.20);
      --wcl-shadow-premium:
        0 1px 0 rgba(255, 255, 255, 0.80) inset,
        0 28px 70px rgba(48, 8, 12, 0.16);
      --wcl-glass: rgba(255, 255, 255, 0.84);
      --wcl-shine: rgba(255, 255, 255, 0.34);
      --wcl-font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --wcl-font-display: ui-rounded, "Arial Rounded MT Bold", "Segoe UI", system-ui, sans-serif;
      --wcl-font-accent: "Trebuchet MS", "Segoe UI", system-ui, sans-serif;

      font-family: var(--wcl-font-body);
    }

    *, *::before, *::after {
      box-sizing: border-box;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button,
    a {
      -webkit-tap-highlight-color: transparent;
    }

    a {
      color: inherit;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .wcl-app {
      position: fixed;
      inset: 0;
      z-index: 2147483647;
      overflow: auto;
      overscroll-behavior: contain;
      background:
        radial-gradient(circle at 8% 4%, rgba(224, 43, 32, 0.06), transparent 24%),
        var(--wcl-white);
      color: var(--wcl-body);
      line-height: 1.7;
      scroll-behavior: smooth;
      scrollbar-color: var(--wcl-accent) rgba(23, 23, 23, 0.08);
      scrollbar-width: thin;
    }

    .wcl-app.is-gallery-open {
      overflow: hidden;
    }

    .wcl-app::-webkit-scrollbar {
      width: 11px;
    }

    .wcl-app::-webkit-scrollbar-track {
      background: rgba(23, 23, 23, 0.06);
    }

    .wcl-app::-webkit-scrollbar-thumb {
      border: 3px solid transparent;
      border-radius: 999px;
      background: var(--wcl-accent);
      background-clip: padding-box;
    }

    .wcl-preview-shell {
      min-height: 100%;
      overflow: clip;
      background:
        linear-gradient(180deg, #FFFFFF 0%, #FCFAF8 48%, #FFFFFF 100%);
      transition:
        max-width 220ms ease,
        margin 220ms ease,
        border-radius 220ms ease,
        box-shadow 220ms ease;
    }

    .wcl-app.is-mobile-preview {
      background: #D8D8D8;
      padding: 28px 0;
    }

    .wcl-app.is-mobile-preview .wcl-preview-shell {
      max-width: 430px;
      min-height: calc(100vh - 56px);
      margin: 0 auto;
      border-radius: 28px;
      overflow: hidden;
      box-shadow:
        0 0 0 10px #222,
        0 28px 90px rgba(0, 0, 0, 0.38);
    }

    .wcl-app.is-mobile-preview .wcl-nav-links,
    .wcl-app.is-mobile-preview .wcl-header-cta {
      display: none;
    }

    .wcl-app.is-mobile-preview .wcl-mobile-toggle {
      display: inline-flex;
    }

    .wcl-app.is-mobile-preview .wcl-hero-grid,
    .wcl-app.is-mobile-preview .wcl-split,
    .wcl-app.is-mobile-preview .wcl-local-grid,
    .wcl-app.is-mobile-preview .wcl-footer-grid {
      grid-template-columns: 1fr;
    }

    .wcl-app.is-mobile-preview .wcl-service-grid,
    .wcl-app.is-mobile-preview .wcl-design-grid,
    .wcl-app.is-mobile-preview .wcl-pricing-grid,
    .wcl-app.is-mobile-preview .wcl-process-grid {
      grid-template-columns: 1fr;
    }

    .wcl-app.is-mobile-preview .wcl-hero {
      min-height: auto;
    }

    .wcl-app.is-mobile-preview .wcl-hero h1 {
      font-size: clamp(2.25rem, 10vw, 3.35rem);
    }

    .wcl-app.is-mobile-preview .wcl-hero-form {
      margin-top: 10px;
    }

    .wcl-app.is-mobile-preview .wcl-mobile-sticky {
      display: flex;
    }


    .wcl-app.is-mobile-preview .wcl-gallery-toolbar {
      display: grid;
      align-items: stretch;
      border-radius: 20px;
    }

    .wcl-app.is-mobile-preview .wcl-gallery-filters {
      justify-content: flex-start;
      flex-wrap: nowrap;
      overflow-x: auto;
    }

    .wcl-app.is-mobile-preview .wcl-gallery-card {
      flex-basis: 88%;
      max-width: none;
      min-height: 410px;
      aspect-ratio: 4 / 5;
    }

    .wcl-app.is-mobile-preview .wcl-gallery-description {
      opacity: 1;
      transform: none;
    }

    .wcl-container {
      width: min(calc(100% - 40px), var(--wcl-container));
      margin-inline: auto;
    }

    .wcl-skip-link {
      position: fixed;
      top: -100px;
      left: 16px;
      z-index: 100;
      padding: 10px 16px;
      border-radius: 8px;
      color: var(--wcl-white);
      background: var(--wcl-accent-deep);
      font-weight: 800;
      text-decoration: none;
      transition: top 180ms ease;
    }

    .wcl-skip-link:focus {
      top: 16px;
    }

    .wcl-toolbar {
      position: fixed;
      top: 12px;
      right: 12px;
      z-index: 90;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px;
      border: 1px solid rgba(255, 255, 255, 0.26);
      border-radius: 999px;
      background:
        linear-gradient(145deg, rgba(38, 31, 31, 0.96), rgba(17, 17, 17, 0.90));
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.12) inset,
        0 18px 46px rgba(0, 0, 0, 0.30);
      backdrop-filter: blur(18px) saturate(130%);
    }

    .wcl-toolbar-label {
      padding-left: 6px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .wcl-swatch-list {
      display: flex;
      gap: 5px;
    }

    .wcl-swatch {
      appearance: none;
      width: 24px;
      height: 24px;
      padding: 0;
      border: 2px solid rgba(255, 255, 255, 0.45);
      border-radius: 50%;
      background: var(--swatch);
      cursor: pointer;
      transition: transform 160ms ease, border-color 160ms ease;
    }

    .wcl-swatch:hover,
    .wcl-swatch:focus-visible {
      transform: scale(1.14);
      border-color: #FFF;
      outline: none;
    }

    .wcl-swatch.is-active {
      border-color: #FFF;
      box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.30);
    }

    .wcl-toolbar-action {
      appearance: none;
      min-height: 34px;
      padding: 7px 11px;
      border: 0;
      border-radius: 999px;
      color: var(--wcl-white);
      background: transparent;
      cursor: pointer;
      font-size: 0.78rem;
      font-weight: 800;
    }

    .wcl-toolbar-action:hover,
    .wcl-toolbar-action:focus-visible {
      background: rgba(255, 255, 255, 0.13);
      outline: none;
    }

    .wcl-toolbar-action.is-exit {
      background: var(--wcl-accent);
    }

    .wcl-announcement {
      position: relative;
      overflow: hidden;
      color: var(--wcl-white);
      background: linear-gradient(
        100deg,
        var(--red-merlot),
        var(--red-ruby),
        var(--red-cranberry),
        var(--red-original),
        var(--red-poinsettia)
      );
    }

    .wcl-announcement::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(110deg, transparent 28%, rgba(255,255,255,0.20) 46%, transparent 64%);
      transform: translateX(-100%);
      animation: wcl-announcement-shine 7s ease-in-out infinite;
    }

    .wcl-announcement .wcl-container {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding-right: 350px;
      text-align: center;
      font-family: var(--wcl-font-accent);
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .wcl-header {
      position: sticky;
      top: 0;
      z-index: 60;
      border-bottom: 1px solid rgba(23, 23, 23, 0.08);
      background: rgba(255, 255, 255, 0.90);
      box-shadow: 0 10px 34px rgba(41, 13, 15, 0.07);
      backdrop-filter: blur(22px) saturate(145%);
    }

    .wcl-header::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 2px;
      pointer-events: none;
      background: linear-gradient(
        90deg,
        transparent,
        var(--red-ruby),
        var(--red-original),
        var(--red-poinsettia),
        transparent
      );
      opacity: 0.64;
    }

    .wcl-header-row {
      min-height: 92px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .wcl-logo-link {
      display: inline-flex;
      flex: 0 1 auto;
      align-items: center;
      text-decoration: none;
    }

    .wcl-logo {
      width: clamp(180px, 16vw, 220px);
      max-height: 76px;
      object-fit: contain;
      object-position: left center;
    }

    .wcl-nav {
      min-width: 0;
      display: flex;
      align-items: center;
      gap: clamp(12px, 1.3vw, 18px);
    }

    .wcl-nav-links {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      gap: clamp(12px, 1.25vw, 21px);
    }

    .wcl-nav-links a {
      position: relative;
      min-height: 48px;
      display: inline-flex;
      flex: 0 0 auto;
      align-items: center;
      color: var(--wcl-charcoal);
      font-family: var(--wcl-font-display);
      font-size: 0.9rem;
      font-weight: 800;
      line-height: 1.15;
      white-space: nowrap;
      text-decoration: none;
    }

    .wcl-nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: -7px;
      height: 2px;
      background: var(--wcl-accent);
      transition: right 180ms ease;
    }

    .wcl-nav-links a:hover::after,
    .wcl-nav-links a:focus-visible::after {
      right: 0;
    }

    .wcl-nav-links a:focus-visible {
      outline: none;
    }

    .wcl-mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--wcl-line);
      border-radius: 10px;
      color: var(--wcl-charcoal);
      background: var(--wcl-white);
      cursor: pointer;
      font-size: 1.3rem;
    }

    .wcl-mobile-menu {
      display: none;
      padding: 0 20px 20px;
      border-top: 1px solid var(--wcl-line);
      background: var(--wcl-white);
    }

    .wcl-mobile-menu.is-open {
      display: grid;
      gap: 2px;
    }

    .wcl-mobile-menu a {
      padding: 12px 4px;
      border-bottom: 1px solid var(--wcl-line);
      color: var(--wcl-charcoal);
      font-weight: 800;
      text-decoration: none;
    }

    .wcl-button {
      display: inline-flex;
      min-height: 48px;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 12px 22px;
      border: 2px solid transparent;
      position: relative;
      overflow: hidden;
      border-radius: 999px;
      cursor: pointer;
      font-family: var(--wcl-font-display);
      font-size: 0.93rem;
      font-weight: 850;
      line-height: 1.2;
      text-decoration: none;
      transition:
        transform 170ms ease,
        background 170ms ease,
        color 170ms ease,
        box-shadow 170ms ease;
    }

    .wcl-button::after {
      content: "";
      position: absolute;
      top: -70%;
      left: -35%;
      width: 28%;
      height: 240%;
      pointer-events: none;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
      transform: rotate(18deg) translateX(-220%);
      transition: transform 520ms ease;
    }

    .wcl-button:hover,
    .wcl-button:focus-visible {
      transform: translateY(-3px);
      outline: none;
    }

    .wcl-button:hover::after,
    .wcl-button:focus-visible::after {
      transform: rotate(18deg) translateX(620%);
    }

    .wcl-button-primary {
      color: var(--wcl-white);
      background:
        linear-gradient(135deg, var(--wcl-accent-bright), var(--wcl-accent) 42%, var(--wcl-accent-dark));
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.24) inset,
        0 15px 34px color-mix(in srgb, var(--wcl-accent) 34%, transparent);
    }

    .wcl-button-primary:hover,
    .wcl-button-primary:focus-visible {
      background: var(--wcl-accent-dark);
    }

    .wcl-button-light {
      color: var(--wcl-charcoal);
      background: var(--wcl-white);
      border-color: rgba(255, 255, 255, 0.72);
    }

    .wcl-button-light:hover,
    .wcl-button-light:focus-visible {
      color: var(--wcl-accent-deep);
      background: var(--wcl-accent-soft);
    }

    /*
     * The outline button is used in both light and dark sections. Its default
     * appearance must therefore be readable on the site's white content
     * backgrounds; dark sections opt back into the translucent white style
     * through the contextual rules below.
     */
    .wcl-button.wcl-button-outline {
      color: var(--wcl-accent-deep);
      border-color: color-mix(in srgb, var(--wcl-accent) 42%, transparent);
      background: color-mix(in srgb, var(--wcl-white) 94%, var(--wcl-accent-soft));
      box-shadow: 0 10px 24px rgba(75, 14, 22, 0.10);
    }

    .wcl-button.wcl-button-outline:hover,
    .wcl-button.wcl-button-outline:focus-visible {
      color: var(--wcl-white);
      border-color: var(--wcl-accent-deep);
      background: var(--wcl-accent-deep);
      box-shadow: 0 15px 30px rgba(75, 14, 22, 0.22);
    }

    .wcl-hero .wcl-button-outline,
    .wcl-landing-hero .wcl-button-outline,
    .wcl-dark-section .wcl-button-outline,
    .wcl-final-cta .wcl-button-outline,
    .wcl-content-callout.is-dark .wcl-button-outline,
    .wcl-sidebar-card.is-accent .wcl-button-outline,
    .wcl-about-final-callout .wcl-button-outline,
    .wcl-quote-final-note .wcl-button-outline {
      color: var(--wcl-white);
      border-color: rgba(255, 255, 255, 0.66);
      background: rgba(255, 255, 255, 0.07);
      box-shadow: none;
    }

    .wcl-hero .wcl-button-outline:hover,
    .wcl-hero .wcl-button-outline:focus-visible,
    .wcl-landing-hero .wcl-button-outline:hover,
    .wcl-landing-hero .wcl-button-outline:focus-visible,
    .wcl-dark-section .wcl-button-outline:hover,
    .wcl-dark-section .wcl-button-outline:focus-visible,
    .wcl-final-cta .wcl-button-outline:hover,
    .wcl-final-cta .wcl-button-outline:focus-visible,
    .wcl-content-callout.is-dark .wcl-button-outline:hover,
    .wcl-content-callout.is-dark .wcl-button-outline:focus-visible,
    .wcl-sidebar-card.is-accent .wcl-button-outline:hover,
    .wcl-sidebar-card.is-accent .wcl-button-outline:focus-visible,
    .wcl-about-final-callout .wcl-button-outline:hover,
    .wcl-about-final-callout .wcl-button-outline:focus-visible,
    .wcl-quote-final-note .wcl-button-outline:hover,
    .wcl-quote-final-note .wcl-button-outline:focus-visible {
      color: var(--wcl-accent-deep);
      border-color: var(--wcl-white);
      background: var(--wcl-white);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
    }

    .wcl-header-cta {
      flex: 0 0 auto;
      padding-inline: 18px;
      white-space: nowrap;
    }

    .wcl-hero {
      position: relative;
      min-height: 760px;
      display: grid;
      align-items: stretch;
      overflow: hidden;
      color: var(--wcl-white);
      isolation: isolate;
      background: #1c0308;
    }

    .wcl-hero-media {
      position: absolute;
      inset: 0;
      z-index: -3;
      overflow: hidden;
      pointer-events: none;
    }

    .wcl-hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(90deg, rgba(28, 3, 8, 0.95) 0%, rgba(91, 14, 25, 0.82) 45%, rgba(8, 12, 19, 0.50) 100%);
    }

    .wcl-hero-image,
    .wcl-hero-media img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center 42%;
    }

    .wcl-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        radial-gradient(circle at 12% 17%, rgba(255,255,255,0.13) 0 2px, transparent 3px),
        radial-gradient(circle at 24% 10%, rgba(255,224,170,0.30) 0 3px, transparent 5px),
        radial-gradient(circle at 66% 18%, rgba(255,255,255,0.18) 0 2px, transparent 4px),
        radial-gradient(circle at 82% 26%, rgba(255,207,166,0.28) 0 4px, transparent 7px),
        radial-gradient(circle at 48% 75%, color-mix(in srgb, var(--wcl-accent) 34%, transparent), transparent 31%),
        linear-gradient(135deg, color-mix(in srgb, var(--wcl-accent) 30%, transparent), transparent 62%);
      background-size: auto, auto, auto, auto, auto, auto;
    }

    .wcl-hero::after {
      content: "";
      position: absolute;
      left: -5%;
      right: -5%;
      bottom: -64px;
      height: 118px;
      border-radius: 50% 50% 0 0;
      background: var(--wcl-white);
    }

    .wcl-hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
      gap: clamp(36px, 6vw, 78px);
      align-items: center;
      padding-block: 74px 120px;
    }

    .wcl-hero-copy {
      max-width: 690px;
    }

    .wcl-hero-eyebrow,
    .wcl-eyebrow {
      margin: 0 0 12px;
      color: var(--wcl-accent-deep);
      font-family: var(--wcl-font-display);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .wcl-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #FFF3F2;
    }

    .wcl-landing-hero .wcl-eyebrow,
    .wcl-dark-section .wcl-eyebrow,
    .wcl-gallery-section .wcl-eyebrow,
    .wcl-final-cta .wcl-eyebrow,
    .wcl-sidebar-card.is-accent .wcl-eyebrow,
    .wcl-about-final-callout .wcl-eyebrow,
    .wcl-quote-final-note .wcl-eyebrow {
      color: #FFF3F2;
    }

    .wcl-hero-eyebrow::before {
      content: "";
      width: 42px;
      height: 3px;
      background: var(--wcl-accent-bright);
    }

    .wcl-hero h1,
    .wcl-section-heading h2,
    .wcl-split-copy h2,
    .wcl-pricing-copy h2,
    .wcl-local-copy h2,
    .wcl-countdown-copy h2,
    .wcl-final-cta h2 {
      margin: 0;
      color: inherit;
      text-wrap: balance;
      font-family: var(--wcl-font-accent);
      font-weight: 400;
      line-height: 1.08;
      letter-spacing: -0.025em;
    }

    .wcl-hero h1 {
      max-width: 760px;
      font-size: clamp(3.15rem, 5.7vw, 5.65rem);
      text-shadow: 0 8px 36px rgba(0, 0, 0, 0.34);
    }

    .wcl-hero-lead {
      max-width: 650px;
      margin: 24px 0 0;
      color: rgba(255, 255, 255, 0.90);
      font-size: clamp(1.02rem, 1.5vw, 1.20rem);
    }

    .wcl-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .wcl-hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 22px;
      margin: 27px 0 0;
      padding: 0;
      list-style: none;
    }

    .wcl-hero-points li {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.88);
      font-size: 0.87rem;
      font-weight: 750;
    }

    .wcl-hero-points .wcl-icon {
      color: #FFF;
      font-weight: 900;
    }

    .wcl-hero-form {
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.58);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.80) inset,
        0 34px 90px rgba(27, 3, 7, 0.34);
      backdrop-filter: blur(18px) saturate(120%);
    }

    .wcl-form-heading {
      padding: 22px 24px 16px;
      color: var(--wcl-charcoal);
      text-align: center;
      background: linear-gradient(135deg, var(--wcl-white), var(--wcl-accent-soft));
    }

    .wcl-form-heading h2 {
      margin: 0;
      color: var(--wcl-charcoal);
      font-family: var(--wcl-font-accent);
      font-size: 1.9rem;
      font-weight: 400;
      line-height: 1.15;
    }

    .wcl-form-heading p {
      margin: 8px 0 0;
      color: var(--wcl-muted);
      font-size: 0.88rem;
    }

    .wcl-frame-shell {
      position: relative;
      min-height: 590px;
      overflow: hidden;
      background:
        linear-gradient(110deg, #F7F1EE 8%, #FFFFFF 18%, #F7F1EE 33%);
      background-size: 220% 100%;
      animation: wcl-skeleton 1.6s linear infinite;
    }

    .wcl-frame-loader {
      position: absolute;
      inset: 0;
      z-index: 3;
      display: grid;
      place-content: center;
      gap: 6px;
      padding: 28px;
      color: var(--wcl-charcoal);
      text-align: center;
      pointer-events: auto;
      transition: opacity 240ms ease, visibility 240ms ease;
    }

    .wcl-frame-loader-mark {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      margin: 0 auto 8px;
      border-radius: 50%;
      color: var(--wcl-white);
      background: linear-gradient(135deg, var(--wcl-accent-bright), var(--wcl-accent-dark));
      box-shadow: 0 16px 34px color-mix(in srgb, var(--wcl-accent) 28%, transparent);
      animation: wcl-pulse 1.8s ease-in-out infinite;
    }

    .wcl-frame-loader strong {
      font-family: var(--wcl-font-display);
      font-size: 0.96rem;
    }

    .wcl-frame-loader small {
      max-width: 300px;
      color: var(--wcl-muted);
      font-size: 0.75rem;
    }

    .wcl-frame-load-button {
      position: relative;
      z-index: 4;
      width: min(100%, 310px);
      margin: 14px auto 0;
      pointer-events: auto;
      touch-action: manipulation;
    }

    .wcl-frame-shell.is-loading .wcl-frame-loader-mark {
      animation-duration: 0.8s;
    }

    .wcl-frame-shell.is-loaded,
    .wcl-frame-shell.has-load-error {
      animation: none;
      background: var(--wcl-white);
    }

    .wcl-frame-shell.is-loaded .wcl-frame-loader {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .wcl-frame-shell.has-load-error .wcl-frame-loader strong::after {
      content: " — use the estimate button below";
    }

    .wcl-form-frame {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 590px;
      display: block;
      border: 0;
      background: transparent;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 280ms ease, visibility 280ms ease;
    }

    .wcl-form-frame.is-loaded {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .wcl-form-fallback {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 14px 18px 18px;
      background: var(--wcl-white);
    }

    .wcl-trust-strip {
      position: relative;
      z-index: 3;
      margin-top: -30px;
    }

    .wcl-trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.76);
      border-radius: 22px;
      background: rgba(255,255,255,0.94);
      box-shadow: var(--wcl-shadow-premium);
      backdrop-filter: blur(16px);
    }

    .wcl-trust-item {
      min-height: 116px;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 22px;
      border-right: 1px solid var(--wcl-line);
    }

    .wcl-trust-item:last-child {
      border-right: 0;
    }

    .wcl-trust-icon {
      flex: 0 0 44px;
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--wcl-white);
      background: var(--wcl-accent);
      font-size: 1.2rem;
      font-weight: 900;
    }

    .wcl-trust-item strong {
      display: block;
      color: var(--wcl-charcoal);
      font-family: var(--wcl-font-display);
      font-size: 0.92rem;
    }

    .wcl-trust-item span {
      display: block;
      margin-top: 3px;
      color: var(--wcl-muted);
      font-size: 0.80rem;
      line-height: 1.45;
    }

    .wcl-section {
      position: relative;
      padding-block: clamp(78px, 8vw, 118px);
      content-visibility: auto;
      contain-intrinsic-size: auto 900px;
    }

    .wcl-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      width: min(92%, 1180px);
      height: 1px;
      pointer-events: none;
      background: linear-gradient(90deg, transparent, rgba(194,24,58,0.17), transparent);
      transform: translateX(-50%);
    }

    .wcl-section.is-cream {
      background: var(--wcl-cream);
    }

    .wcl-section.is-soft-red {
      background:
        radial-gradient(circle at 90% 10%, var(--wcl-accent-soft), transparent 34%),
        var(--wcl-off-white);
    }

    .wcl-section-heading {
      max-width: 790px;
      margin-bottom: 42px;
    }

    .wcl-section-heading.is-center {
      margin-inline: auto;
      text-align: center;
    }

    .wcl-section-heading h2 {
      color: var(--wcl-charcoal);
      font-size: clamp(2.35rem, 4vw, 4rem);
    }

    .wcl-section-heading h2::after,
    .wcl-split-copy h2::after {
      content: "";
      width: 68px;
      height: 3px;
      display: block;
      margin-top: 18px;
      background: linear-gradient(
        90deg,
        var(--red-ruby),
        var(--red-cranberry),
        var(--red-original),
        var(--red-poinsettia)
      );
    }

    .wcl-section-heading.is-center h2::after {
      margin-inline: auto;
    }

    .wcl-section-lead {
      margin: 19px 0 0;
      color: var(--wcl-muted);
      font-size: 1.02rem;
    }

    .wcl-service-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .wcl-service-card {
      position: relative;
      overflow: hidden;
      padding: 30px 26px;
      border: 1px solid var(--wcl-line);
      border-radius: 20px;
      background:
        linear-gradient(145deg, #FFFFFF, color-mix(in srgb, var(--wcl-accent-soft) 32%, #FFFFFF));
      box-shadow: var(--wcl-shadow-soft);
      transition: transform 210ms ease, box-shadow 210ms ease;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .wcl-service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--wcl-shadow);
    }

    .wcl-service-card::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 4px;
      background: linear-gradient(
        90deg,
        var(--red-merlot),
        var(--red-ruby),
        var(--red-cranberry),
        var(--red-original),
        var(--red-poinsettia)
      );
    }

    .wcl-service-icon,
    .wcl-design-icon {
      display: grid;
      place-items: center;
      color: var(--wcl-white);
      border-radius: 50%;
      font-weight: 900;
    }

    .wcl-service-icon {
      width: 58px;
      height: 58px;
      margin-bottom: 20px;
      font-size: 1.4rem;
    }

    .is-1 { background: var(--red-merlot); }
    .is-2 { background: var(--red-ruby); }
    .is-3 { background: var(--red-cranberry); }
    .is-4 { background: var(--red-original); }
    .is-5 { background: var(--red-poinsettia); }

    .wcl-service-card h3,
    .wcl-design-feature h3,
    .wcl-process-step h3,
    .wcl-pricing-card h3,
    .wcl-local-card h3,
    .wcl-footer h3 {
      margin: 0;
      color: var(--wcl-charcoal);
      font-family: var(--wcl-font-display);
      font-weight: 850;
      line-height: 1.25;
    }

    .wcl-service-card h3 {
      font-size: 1.15rem;
    }

    .wcl-service-card > p {
      min-height: 92px;
      margin: 13px 0 0;
      color: var(--wcl-muted);
      font-size: 0.91rem;
    }

    .wcl-check-list {
      display: grid;
      gap: 9px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .wcl-check-list li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      color: var(--wcl-body);
      font-size: 0.84rem;
    }

    .wcl-check-list .wcl-icon {
      color: var(--wcl-accent);
      font-weight: 900;
    }

    .wcl-split {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: clamp(38px, 7vw, 84px);
      align-items: center;
    }

    .wcl-split.is-reversed {
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    }

    .wcl-split-media {
      position: relative;
      min-height: 520px;
    }

    .wcl-split-media::before {
      content: "";
      position: absolute;
      inset: 30px -24px -24px 30px;
      border-radius: 26px;
      background:
        linear-gradient(
          145deg,
          var(--red-ruby),
          var(--red-original),
          var(--red-poinsettia)
        );
      box-shadow: 0 20px 54px color-mix(in srgb, var(--wcl-accent) 20%, transparent);
    }

    .wcl-split-media img {
      position: relative;
      width: 100%;
      height: 520px;
      object-fit: cover;
      border-radius: 26px;
      box-shadow: var(--wcl-shadow);
      transition:
        opacity 420ms ease,
        filter 520ms ease,
        transform 520ms ease;
    }

    .wcl-image-badge {
      position: absolute;
      right: -18px;
      bottom: 28px;
      z-index: 2;
      max-width: 235px;
      padding: 18px;
      border-radius: 10px;
      color: var(--wcl-white);
      background: var(--wcl-accent-deep);
      box-shadow: var(--wcl-shadow-soft);
      font-family: var(--wcl-font-display);
      font-size: 0.88rem;
      font-weight: 800;
    }

    .wcl-split-copy h2 {
      color: var(--wcl-charcoal);
      font-size: clamp(2.35rem, 4vw, 4.1rem);
    }

    .wcl-split-copy > p {
      margin: 19px 0 0;
    }

    .wcl-design-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 30px;
    }

    .wcl-design-feature {
      display: flex;
      gap: 14px;
      padding: 18px;
      border: 1px solid var(--wcl-line);
      border-radius: 16px;
      background:
        linear-gradient(145deg, #FFFFFF, color-mix(in srgb, var(--wcl-accent-soft) 45%, #FFFFFF));
      box-shadow: 0 12px 28px rgba(60, 18, 20, 0.07);
    }

    .wcl-design-icon {
      flex: 0 0 44px;
      width: 44px;
      height: 44px;
      font-size: 1rem;
    }

    .wcl-design-feature h3 {
      font-size: 0.96rem;
    }

    .wcl-design-feature p {
      margin: 5px 0 0;
      color: var(--wcl-muted);
      font-size: 0.80rem;
      line-height: 1.5;
    }

    .wcl-content-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .wcl-dark-section {
      overflow: hidden;
      color: var(--wcl-white);
      background:
        radial-gradient(circle at 85% 12%, color-mix(in srgb, var(--wcl-accent) 45%, transparent), transparent 29%),
        linear-gradient(135deg, var(--wcl-accent-deep), var(--wcl-black) 72%);
    }

    .wcl-dark-section .wcl-section-heading h2,
    .wcl-dark-section .wcl-section-lead,
    .wcl-dark-section .wcl-eyebrow {
      color: var(--wcl-white);
    }

    .wcl-process-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
    }

    .wcl-process-step {
      position: relative;
      min-height: 260px;
      padding: 28px 22px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      overflow: hidden;
      border-radius: 20px;
      background:
        linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045));
      box-shadow: 0 18px 44px rgba(0,0,0,0.12);
      backdrop-filter: blur(14px);
      transition: transform 220ms ease, background 220ms ease;
    }

    .wcl-process-step:hover {
      transform: translateY(-7px);
      background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--wcl-accent) 22%, rgba(255,255,255,0.12)),
        rgba(255,255,255,0.06)
      );
    }

    .wcl-process-number {
      display: block;
      margin-bottom: 30px;
      color: var(--wcl-accent-bright);
      font-family: var(--wcl-font-accent);
      font-size: 2.5rem;
      line-height: 1;
    }

    .wcl-process-step h3 {
      color: var(--wcl-white);
      font-size: 1rem;
    }

    .wcl-process-step p {
      margin: 12px 0 0;
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.82rem;
    }

    .wcl-pricing-section {
      overflow: hidden;
      background:
        linear-gradient(120deg, var(--wcl-accent-soft), #FFF 48%, var(--wcl-cream));
    }

    .wcl-pricing-grid {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: clamp(34px, 6vw, 72px);
      align-items: center;
    }

    .wcl-pricing-copy h2 {
      color: var(--wcl-charcoal);
      font-size: clamp(2.5rem, 4vw, 4.2rem);
    }

    .wcl-pricing-copy p {
      margin: 20px 0 0;
    }

    .wcl-pricing-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .wcl-pricing-card {
      padding: 22px;
      border: 1px solid var(--wcl-line);
      border-radius: 18px;
      background:
        linear-gradient(145deg, rgba(255,255,255,0.98), rgba(255,248,246,0.92));
      box-shadow: var(--wcl-shadow-soft);
      transition: transform 210ms ease, box-shadow 210ms ease;
    }

    .wcl-pricing-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--wcl-shadow);
    }

    .wcl-pricing-card h3 {
      font-size: 0.95rem;
    }

    .wcl-pricing-card p {
      margin: 7px 0 0;
      color: var(--wcl-muted);
      font-size: 0.82rem;
    }

    .wcl-pricing-note {
      margin-top: 16px;
      padding: 15px 17px;
      border-left: 4px solid var(--wcl-accent);
      color: var(--wcl-charcoal);
      background: var(--wcl-white);
      font-size: 0.86rem;
      font-weight: 750;
    }

    .wcl-local-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: clamp(36px, 6vw, 74px);
      align-items: center;
    }

    .wcl-local-copy h2 {
      color: var(--wcl-charcoal);
      font-size: clamp(2.5rem, 4vw, 4.15rem);
    }

    .wcl-local-copy p {
      margin: 20px 0 0;
    }

    .wcl-business-details {
      margin-top: 26px;
      padding: 24px;
      border: 1px solid color-mix(in srgb, var(--wcl-accent) 22%, var(--wcl-line));
      border-radius: 16px;
      background: linear-gradient(145deg, var(--wcl-white), color-mix(in srgb, var(--wcl-accent-soft) 42%, var(--wcl-white)));
      box-shadow: var(--wcl-shadow-soft);
    }

    .wcl-local-copy .wcl-business-details-label {
      margin: 0 0 6px;
      color: var(--wcl-accent-dark);
      font-family: var(--wcl-font-display);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .wcl-business-details-name {
      display: block;
      color: var(--wcl-charcoal);
      font-family: var(--wcl-font-accent);
      font-size: 1.3rem;
      line-height: 1.25;
    }

    .wcl-business-details-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px 20px;
      margin-top: 18px;
    }

    .wcl-business-details-grid > div {
      display: grid;
      gap: 4px;
    }

    .wcl-business-details-grid > .is-wide {
      grid-column: 1 / -1;
    }

    .wcl-business-details-grid span {
      color: var(--wcl-muted);
      font-size: 0.69rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .wcl-business-details-grid strong,
    .wcl-business-details-grid a,
    .wcl-business-details-grid address {
      margin: 0;
      color: var(--wcl-charcoal);
      font-size: 0.86rem;
      font-style: normal;
      font-weight: 700;
      line-height: 1.55;
      text-decoration: none;
    }

    .wcl-business-details-grid a:hover,
    .wcl-business-details-grid a:focus-visible {
      color: var(--wcl-accent-dark);
      text-decoration: underline;
    }

    .wcl-local-cards {
      display: grid;
      gap: 14px;
    }

    .wcl-local-card {
      position: relative;
      padding: 24px 24px 24px 84px;
      border: 1px solid var(--wcl-line);
      border-radius: 12px;
      background: var(--wcl-white);
      box-shadow: var(--wcl-shadow-soft);
    }

    .wcl-local-card:hover {
      transform: translateX(-6px);
      box-shadow: var(--wcl-shadow);
    }

    .wcl-local-card .wcl-local-icon {
      position: absolute;
      top: 22px;
      left: 22px;
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--wcl-white);
      background: var(--wcl-accent);
    }

    .wcl-local-card h3 {
      font-size: 1rem;
    }

    .wcl-local-card p {
      margin: 7px 0 0;
      color: var(--wcl-muted);
      font-size: 0.84rem;
    }

    .wcl-gallery-section {
      overflow: hidden;
      color: var(--wcl-white);
      background:
        radial-gradient(circle at 12% 12%, color-mix(in srgb, var(--wcl-accent) 24%, transparent), transparent 31%),
        radial-gradient(circle at 88% 82%, rgba(213, 168, 60, 0.13), transparent 26%),
        linear-gradient(145deg, #110D0E 0%, #211316 44%, #090909 100%);
    }

    .wcl-gallery-section::before {
      background: linear-gradient(90deg, transparent, rgba(213,168,60,0.55), transparent);
    }

    .wcl-gallery-section .wcl-section-heading h2,
    .wcl-gallery-section .wcl-section-lead,
    .wcl-gallery-section .wcl-eyebrow {
      color: var(--wcl-white);
    }

    .wcl-gallery-section .wcl-section-heading h2::after {
      background: linear-gradient(90deg, var(--wcl-accent), var(--wcl-gold), var(--wcl-accent-bright));
      background-size: 220% 100%;
      animation: wcl-border-flow 4.5s linear infinite;
    }

    .wcl-gallery-marquee {
      position: relative;
      overflow: hidden;
      margin-bottom: 44px;
      border-block: 1px solid rgba(213, 168, 60, 0.18);
      background: rgba(255,255,255,0.025);
      mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }

    .wcl-gallery-marquee-track {
      width: max-content;
      display: flex;
      align-items: center;
      gap: 28px;
      padding: 13px 0;
      color: rgba(255,255,255,0.56);
      font-family: var(--wcl-font-display);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      animation: wcl-marquee 28s linear infinite;
    }

    .wcl-gallery-marquee-track span::after {
      content: "✦";
      margin-left: 28px;
      color: var(--wcl-gold);
    }

    .wcl-gallery-toolbar {
      display: grid;
      gap: 12px;
      margin: -12px 0 22px;
      padding: 14px;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 20px;
      background: rgba(255,255,255,0.055);
      box-shadow: 0 16px 44px rgba(0,0,0,0.18);
      backdrop-filter: blur(18px) saturate(135%);
    }

    .wcl-gallery-count {
      color: rgba(255,255,255,0.72);
      font-size: 0.77rem;
      font-weight: 850;
      white-space: nowrap;
    }

    .wcl-gallery-filters {
      display: flex;
      flex-wrap: nowrap;
      justify-content: flex-start;
      gap: 8px;
      max-width: 100%;
      padding: 1px 1px 5px;
      overflow-x: auto;
      overscroll-behavior-inline: contain;
      scrollbar-width: none;
      scroll-snap-type: x proximity;
      -webkit-overflow-scrolling: touch;
    }

    .wcl-gallery-filters::-webkit-scrollbar,
    .wcl-gallery-viewport::-webkit-scrollbar {
      display: none;
    }

    .wcl-gallery-filter {
      appearance: none;
      flex: 0 0 auto;
      min-height: 42px;
      padding: 9px 15px;
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: 999px;
      color: rgba(255,255,255,0.76);
      background: rgba(255,255,255,0.045);
      cursor: pointer;
      font-size: 0.74rem;
      font-weight: 850;
      scroll-snap-align: start;
      transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
    }

    .wcl-gallery-filter:hover,
    .wcl-gallery-filter:focus-visible {
      color: var(--wcl-white);
      border-color: rgba(213,168,60,0.54);
      outline: none;
      transform: translateY(-2px);
    }

    .wcl-gallery-filter.is-active {
      color: #1C1510;
      border-color: var(--wcl-gold);
      background: linear-gradient(135deg, #F3D98B, var(--wcl-gold));
      box-shadow: 0 10px 28px rgba(213,168,60,0.22);
      animation: wcl-filter-pop 360ms cubic-bezier(.2,.8,.2,1);
    }

    .wcl-gallery-carousel-shell {
      position: relative;
      min-width: 0;
    }

    .wcl-gallery-carousel-topline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 10px;
      color: rgba(255,255,255,0.62);
      font-size: 0.74rem;
      font-weight: 800;
    }

    .wcl-gallery-swipe-hint {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .wcl-gallery-swipe-hint .wcl-icon {
      color: var(--wcl-gold);
      animation: wcl-carousel-swipe-hint 2.8s ease-in-out infinite;
    }

    .wcl-gallery-carousel-status {
      min-width: 70px;
      color: rgba(255,255,255,0.86);
      font-family: var(--wcl-font-display);
      font-size: 0.75rem;
      font-weight: 900;
      letter-spacing: 0.10em;
      text-align: right;
    }

    .wcl-gallery-viewport {
      position: relative;
      width: 100%;
      max-width: 100%;
      padding: 8px 0 24px;
      overflow-x: auto;
      overflow-y: hidden;
      overscroll-behavior-inline: contain;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      touch-action: pan-x pan-y;
      -webkit-overflow-scrolling: touch;
    }

    .wcl-gallery-viewport:focus-visible {
      outline: 2px solid var(--wcl-gold);
      outline-offset: 5px;
      border-radius: 24px;
    }

    .wcl-gallery-track {
      position: relative;
      width: 100%;
      min-width: 100%;
      display: flex;
      align-items: stretch;
      gap: 14px;
      padding: 0 7%;
      perspective: 1400px;
    }

    .wcl-gallery-card {
      --wcl-card-rx: 0deg;
      --wcl-card-ry: 0deg;
      --wcl-card-lift: 0px;
      --wcl-card-scale: 0.955;
      position: relative;
      flex: 0 0 86%;
      max-width: 370px;
      min-height: 410px;
      aspect-ratio: 4 / 5;
      margin: 0;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 24px;
      background: #171114;
      box-shadow:
        0 1px 0 rgba(255,255,255,0.10) inset,
        0 22px 58px rgba(0,0,0,0.34);
      opacity: 0.72;
      scroll-snap-align: center;
      scroll-snap-stop: always;
      transform: perspective(1200px) rotateX(var(--wcl-card-rx)) rotateY(var(--wcl-card-ry)) translateY(var(--wcl-card-lift)) scale(var(--wcl-card-scale));
      transform-style: preserve-3d;
      transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, opacity 240ms ease;
    }

    .wcl-gallery-card[hidden] {
      display: none !important;
    }

    .wcl-gallery-card.is-carousel-active {
      --wcl-card-scale: 1;
      z-index: 2;
      opacity: 1;
      border-color: rgba(213,168,60,0.48);
      box-shadow:
        0 1px 0 rgba(255,255,255,0.14) inset,
        0 28px 72px rgba(0,0,0,0.46),
        0 0 0 1px rgba(213,168,60,0.10);
    }

    .wcl-gallery-open {
      appearance: none;
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      padding: 0;
      overflow: hidden;
      border: 0;
      color: inherit;
      background: transparent;
      cursor: zoom-in;
      text-align: left;
    }

    .wcl-gallery-open:focus-visible {
      outline: 3px solid var(--wcl-gold);
      outline-offset: -5px;
    }

    .wcl-gallery-media,
    .wcl-gallery-media::after,
    .wcl-gallery-frame {
      position: absolute;
      inset: 0;
    }

    .wcl-gallery-media {
      overflow: hidden;
      background: linear-gradient(145deg, #29181C, #090909);
    }

    .wcl-gallery-media::after {
      content: "";
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(0,0,0,0.04) 18%, rgba(0,0,0,0.18) 48%, rgba(10,3,5,0.94) 100%),
        radial-gradient(circle at 72% 18%, rgba(213,168,60,0.16), transparent 28%);
      transition: background 380ms ease;
    }

    .wcl-gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.02);
      transition:
        transform 900ms cubic-bezier(.16,.75,.22,1),
        opacity 360ms ease,
        filter 520ms ease;
    }

    .wcl-gallery-card.is-carousel-active img {
      transform: scale(1.045);
    }

    .wcl-gallery-frame {
      z-index: 2;
      pointer-events: none;
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: inherit;
      box-shadow:
        0 0 0 8px rgba(8,8,8,0.18) inset,
        0 0 0 9px rgba(213,168,60,0.08) inset;
    }

    .wcl-gallery-frame::before {
      content: "";
      position: absolute;
      inset: 10px;
      border: 1px solid rgba(213,168,60,0.18);
      border-radius: 16px;
      opacity: 0.55;
      transform: scale(0.99);
      transition: opacity 240ms ease, transform 340ms ease;
    }

    .wcl-gallery-card.is-carousel-active .wcl-gallery-frame::before {
      opacity: 1;
      transform: scale(1);
    }

    .wcl-gallery-card::after {
      content: "";
      position: absolute;
      z-index: 4;
      top: -45%;
      left: -42%;
      width: 24%;
      height: 190%;
      pointer-events: none;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.24), transparent);
      transform: rotate(18deg) translateX(-330%);
      opacity: 0;
    }

    .wcl-gallery-card.is-carousel-active::after {
      opacity: 1;
      animation: wcl-gallery-sheen 1050ms ease-out;
    }

    .wcl-gallery-view-icon {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 5;
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,0.20);
      border-radius: 50%;
      color: var(--wcl-white);
      background: color-mix(in srgb, var(--wcl-accent) 72%, rgba(13,8,9,0.52));
      box-shadow: 0 12px 34px rgba(0,0,0,0.22);
      font-size: 1.05rem;
      opacity: 1;
      transform: none;
      backdrop-filter: blur(14px);
      transition: transform 320ms cubic-bezier(.2,.8,.2,1), background 220ms ease;
    }

    .wcl-gallery-card figcaption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 3;
      display: grid;
      gap: 7px;
      padding: 88px 20px 21px;
      color: var(--wcl-white);
      background: linear-gradient(transparent, rgba(12,5,7,0.97));
      transform: translateZ(34px);
    }

    .wcl-gallery-eyebrow {
      color: #EACB74;
      font-family: var(--wcl-font-display);
      font-size: 0.65rem;
      font-weight: 900;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .wcl-gallery-card figcaption strong {
      font-family: var(--wcl-font-accent);
      font-size: clamp(1.32rem, 6vw, 1.78rem);
      font-weight: 500;
      line-height: 1.12;
      letter-spacing: -0.015em;
    }

    .wcl-gallery-description {
      max-width: 620px;
      color: rgba(255,255,255,0.74);
      font-size: 0.78rem;
      line-height: 1.55;
      opacity: 1;
      transform: none;
    }

    .wcl-gallery-carousel-footer {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      grid-template-areas:
        "navigation dots"
        "progress progress";
      align-items: center;
      gap: 14px 16px;
      margin-top: 2px;
    }

    .wcl-gallery-carousel-navigation {
      grid-area: navigation;
      display: flex;
      gap: 9px;
    }

    .wcl-gallery-carousel-arrow {
      appearance: none;
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 50%;
      color: var(--wcl-white);
      background: rgba(255,255,255,0.07);
      box-shadow: 0 12px 30px rgba(0,0,0,0.18);
      cursor: pointer;
      font-size: 1.2rem;
      transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
    }

    .wcl-gallery-carousel-arrow:hover,
    .wcl-gallery-carousel-arrow:focus-visible {
      color: #18100C;
      border-color: var(--wcl-gold);
      background: linear-gradient(135deg, #F3D98B, var(--wcl-gold));
      outline: none;
      transform: translateY(-2px);
    }

    .wcl-gallery-carousel-arrow:disabled {
      opacity: 0.36;
      cursor: not-allowed;
      transform: none;
    }

    .wcl-gallery-dots {
      grid-area: dots;
      min-width: 0;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 7px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .wcl-gallery-dots::-webkit-scrollbar {
      display: none;
    }

    .wcl-gallery-dot {
      appearance: none;
      flex: 0 0 auto;
      width: 9px;
      height: 9px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: rgba(255,255,255,0.28);
      cursor: pointer;
      transition: width 220ms ease, transform 220ms ease, background 220ms ease;
    }

    .wcl-gallery-dot:hover,
    .wcl-gallery-dot:focus-visible {
      background: rgba(255,255,255,0.72);
      outline: none;
      transform: scale(1.18);
    }

    .wcl-gallery-dot.is-active {
      width: 28px;
      background: linear-gradient(90deg, var(--wcl-accent), var(--wcl-gold));
    }

    .wcl-gallery-progress {
      grid-area: progress;
      height: 3px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255,255,255,0.10);
    }

    .wcl-gallery-progress-fill {
      width: 100%;
      height: 100%;
      display: block;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--wcl-accent), var(--wcl-gold), var(--wcl-accent-bright));
      transform: scaleX(0.1);
      transform-origin: left center;
      transition: transform 260ms ease;
    }

    .wcl-gallery-hint {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin: 24px 0 0;
      color: rgba(255,255,255,0.54);
      font-size: 0.76rem;
      font-weight: 750;
      text-align: center;
    }

    .wcl-gallery-hint .wcl-icon {
      color: var(--wcl-gold);
      animation: wcl-icon-bob 3.8s ease-in-out infinite;
    }

    @media (min-width: 681px) {
      .wcl-gallery-toolbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 12px 14px 12px 18px;
        border-radius: 999px;
      }

      .wcl-gallery-filters {
        flex-wrap: wrap;
        justify-content: flex-end;
        overflow: visible;
      }

      .wcl-gallery-track {
        gap: 16px;
        padding-inline: 2%;
      }

      .wcl-gallery-card {
        flex-basis: calc((100% - 16px) / 2);
        max-width: none;
        min-height: 430px;
      }

      .wcl-gallery-carousel-footer {
        grid-template-columns: auto 1fr auto;
        grid-template-areas: "navigation progress dots";
      }

      .wcl-gallery-progress {
        min-width: 140px;
      }
    }

    @media (min-width: 921px) {
      .wcl-gallery-track {
        gap: 18px;
        padding-inline: 1px;
      }

      .wcl-gallery-card {
        flex-basis: calc((100% - 36px) / 3);
        min-height: 455px;
      }

      .wcl-gallery-card:hover,
      .wcl-gallery-card:focus-within {
        --wcl-card-lift: -8px;
        --wcl-card-scale: 1;
        z-index: 3;
        opacity: 1;
        border-color: rgba(213,168,60,0.62);
        box-shadow:
          0 1px 0 rgba(255,255,255,0.14) inset,
          0 34px 86px rgba(0,0,0,0.50),
          0 0 0 1px rgba(213,168,60,0.12);
      }

      .wcl-gallery-card:hover img,
      .wcl-gallery-card:focus-within img {
        transform: scale(1.09);
      }

      .wcl-gallery-view-icon {
        opacity: 0;
        transform: translateY(8px) rotate(-12deg);
      }

      .wcl-gallery-card:hover .wcl-gallery-view-icon,
      .wcl-gallery-card:focus-within .wcl-gallery-view-icon,
      .wcl-gallery-card.is-carousel-active .wcl-gallery-view-icon {
        opacity: 1;
        transform: translateY(0) rotate(0);
      }
    }

    .wcl-gallery-lightbox[hidden] {
      display: none !important;
    }

    .wcl-gallery-lightbox {
      position: fixed;
      inset: 0;
      z-index: 140;
      display: grid;
      place-items: center;
      padding: 28px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 260ms ease, visibility 260ms ease;
    }

    .wcl-gallery-lightbox.is-open {
      opacity: 1;
      visibility: visible;
    }

    .wcl-lightbox-backdrop {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      background:
        radial-gradient(circle at 50% 18%, rgba(181,31,50,0.18), transparent 34%),
        rgba(3,3,4,0.90);
      cursor: zoom-out;
      backdrop-filter: blur(24px) saturate(120%);
    }

    .wcl-lightbox-dialog {
      position: relative;
      width: min(1180px, 96vw);
      max-height: min(860px, 92vh);
      display: grid;
      grid-template-columns: minmax(0, 1.34fr) minmax(320px, 0.66fr);
      overflow: hidden;
      border: 1px solid rgba(213,168,60,0.30);
      border-radius: 28px;
      color: var(--wcl-white);
      background: linear-gradient(145deg, rgba(32,22,25,0.98), rgba(8,8,9,0.99));
      box-shadow:
        0 1px 0 rgba(255,255,255,0.09) inset,
        0 48px 140px rgba(0,0,0,0.72);
      transform: translateY(26px) scale(0.965);
    }

    .wcl-gallery-lightbox.is-open .wcl-lightbox-dialog {
      animation: wcl-lightbox-panel 520ms cubic-bezier(.16,.85,.25,1) both;
    }

    .wcl-lightbox-close {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 6;
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 50%;
      color: var(--wcl-white);
      background: rgba(8,8,8,0.54);
      cursor: pointer;
      font-size: 1.8rem;
      line-height: 1;
      backdrop-filter: blur(12px);
      transition: transform 180ms ease, background 180ms ease;
    }

    .wcl-lightbox-close:hover,
    .wcl-lightbox-close:focus-visible {
      background: var(--wcl-accent);
      outline: none;
      transform: rotate(90deg);
    }

    .wcl-lightbox-image-shell {
      position: relative;
      min-height: min(760px, 82vh);
      overflow: hidden;
      background: #050505;
    }

    .wcl-lightbox-image {
      width: 100%;
      height: 100%;
      min-height: inherit;
      object-fit: cover;
      opacity: 1;
      transform: scale(1);
    }

    .wcl-gallery-lightbox.is-switching .wcl-lightbox-image {
      animation: wcl-lightbox-image-swap 420ms cubic-bezier(.2,.8,.2,1);
    }

    .wcl-lightbox-image-glow {
      position: absolute;
      inset: 0;
      pointer-events: none;
      box-shadow: 0 0 90px rgba(213,168,60,0.10) inset;
      background: linear-gradient(90deg, transparent 74%, rgba(8,8,8,0.28));
    }

    .wcl-lightbox-content {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 64px 42px 38px;
      background:
        radial-gradient(circle at 100% 0, color-mix(in srgb, var(--wcl-accent) 22%, transparent), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.035), transparent);
    }

    .wcl-lightbox-content::before {
      content: "";
      width: 54px;
      height: 2px;
      margin-bottom: 24px;
      background: linear-gradient(90deg, var(--wcl-gold), var(--wcl-accent));
    }

    .wcl-lightbox-meta {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
    }

    .wcl-lightbox-eyebrow,
    .wcl-lightbox-counter {
      color: #EACB74;
      font-size: 0.68rem;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .wcl-lightbox-title {
      margin: 14px 0 0;
      font-family: var(--wcl-font-accent);
      font-size: clamp(2rem, 3.5vw, 3.35rem);
      font-weight: 450;
      line-height: 1.08;
      letter-spacing: -0.025em;
    }

    .wcl-lightbox-description {
      margin: 18px 0 0;
      color: rgba(255,255,255,0.66);
      font-size: 0.90rem;
      line-height: 1.7;
    }

    .wcl-lightbox-controls {
      display: flex;
      gap: 10px;
      margin-top: 34px;
    }

    .wcl-lightbox-nav {
      flex: 1 1 0;
      min-height: 46px;
      padding: 10px 13px;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 999px;
      color: var(--wcl-white);
      background: rgba(255,255,255,0.055);
      cursor: pointer;
      font-size: 0.76rem;
      font-weight: 850;
      transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
    }

    .wcl-lightbox-nav:hover,
    .wcl-lightbox-nav:focus-visible {
      border-color: rgba(213,168,60,0.54);
      background: color-mix(in srgb, var(--wcl-accent) 62%, rgba(255,255,255,0.06));
      outline: none;
      transform: translateY(-2px);
    }

    .wcl-countdown-section {
      overflow: hidden;
      color: var(--wcl-white);
      background:
        linear-gradient(110deg, var(--red-merlot), var(--red-ruby), var(--red-cranberry), var(--red-original));
    }

    .wcl-countdown-grid {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 44px;
      align-items: center;
    }

    .wcl-countdown-copy h2 {
      font-size: clamp(2.4rem, 4vw, 4rem);
    }

    .wcl-countdown-copy p {
      margin: 16px 0 0;
      color: rgba(255, 255, 255, 0.82);
    }

    .wcl-countdown {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .wcl-countdown-unit {
      padding: 22px 14px;
      border: 1px solid rgba(255, 255, 255, 0.20);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.10);
      text-align: center;
    }

    .wcl-countdown-value {
      display: block;
      font-family: var(--wcl-font-accent);
      font-size: clamp(2rem, 4vw, 3.5rem);
      line-height: 1;
    }

    .wcl-countdown-label {
      display: block;
      margin-top: 8px;
      font-family: var(--wcl-font-display);
      font-size: 0.72rem;
      font-weight: 850;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .wcl-faq-list {
      display: grid;
      gap: 12px;
      max-width: 920px;
      margin-inline: auto;
    }

    .wcl-faq-item {
      overflow: hidden;
      border: 1px solid var(--wcl-line);
      border-radius: 18px;
      background: rgba(255,255,255,0.96);
      box-shadow: var(--wcl-shadow-soft);
      backdrop-filter: blur(10px);
    }

    .wcl-faq-item summary {
      min-height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 19px 22px;
      color: var(--wcl-charcoal);
      cursor: pointer;
      font-family: var(--wcl-font-display);
      font-size: 0.94rem;
      font-weight: 850;
      list-style: none;
    }

    .wcl-faq-item summary::-webkit-details-marker {
      display: none;
    }

    .wcl-faq-symbol {
      flex: 0 0 auto;
      color: var(--wcl-accent);
      font-size: 1.6rem;
      line-height: 1;
      transition: transform 170ms ease;
    }

    .wcl-faq-item[open] .wcl-faq-symbol {
      transform: rotate(45deg);
    }

    .wcl-faq-answer {
      padding: 0 22px 22px;
      color: var(--wcl-muted);
    }

    .wcl-faq-answer p {
      margin: 0;
    }

    .wcl-final-cta {
      position: relative;
      overflow: hidden;
      color: var(--wcl-white);
      background:
        radial-gradient(circle at 76% 20%, rgba(255,255,255,0.12), transparent 24%),
        linear-gradient(105deg, rgba(58, 7, 11, 0.98), rgba(152, 27, 43, 0.90)),
        var(--cta-image) center / cover no-repeat;
      content-visibility: auto;
      contain-intrinsic-size: auto 620px;
      transition: background-color 380ms ease;
    }

    .wcl-final-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 12% 18%, rgba(255,255,255,0.18) 0 2px, transparent 3px),
        radial-gradient(circle at 84% 68%, rgba(255,230,189,0.26) 0 3px, transparent 5px);
      opacity: 0.82;
    }

    .wcl-final-cta-inner {
      position: relative;
      z-index: 1;
    }

    .wcl-final-cta-inner {
      max-width: 850px;
      padding-block: clamp(76px, 10vw, 128px);
      text-align: center;
    }

    .wcl-final-cta h2 {
      font-size: clamp(2.55rem, 5vw, 4.7rem);
    }

    .wcl-final-cta p {
      max-width: 720px;
      margin: 20px auto 0;
      color: rgba(255, 255, 255, 0.85);
      font-size: 1.03rem;
    }

    .wcl-final-cta .wcl-content-actions {
      justify-content: center;
    }

    .wcl-footer {
      padding-block: 66px 24px;
      color: rgba(255, 255, 255, 0.76);
      background: var(--wcl-black);
    }

    .wcl-footer-grid {
      display: grid;
      grid-template-columns: 1.35fr repeat(3, 0.75fr);
      gap: 38px;
    }

    .wcl-footer-logo {
      width: 210px;
      max-height: 80px;
      object-fit: contain;
      object-position: left center;
      filter: brightness(0) invert(1);
    }

    .wcl-footer-about p {
      max-width: 400px;
      margin: 18px 0 0;
      font-size: 0.85rem;
    }

    .wcl-footer-contact {
      display: grid;
      gap: 7px;
      max-width: 420px;
      margin-top: 20px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      font-size: 0.78rem;
      line-height: 1.55;
    }

    .wcl-footer-contact strong {
      color: var(--wcl-white);
      font-family: var(--wcl-font-display);
      font-size: 0.86rem;
    }

    .wcl-footer-contact a {
      width: fit-content;
      color: var(--wcl-accent-bright);
      font-weight: 800;
      text-decoration: none;
    }

    .wcl-footer-contact a:hover,
    .wcl-footer-contact a:focus-visible {
      color: var(--wcl-white);
      text-decoration: underline;
    }

    .wcl-footer-contact address {
      max-width: 360px;
      margin: 0;
      color: rgba(255, 255, 255, 0.72);
      font-style: normal;
    }

    .wcl-footer-contact span {
      color: rgba(255, 255, 255, 0.62);
    }

    .wcl-footer h3 {
      color: var(--wcl-white);
      font-size: 0.90rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .wcl-footer-links {
      display: grid;
      gap: 8px;
      margin-top: 16px;
    }

    .wcl-footer-links a {
      color: rgba(255, 255, 255, 0.70);
      font-size: 0.83rem;
      text-decoration: none;
    }

    .wcl-footer-links a:hover,
    .wcl-footer-links a:focus-visible {
      color: var(--wcl-accent-bright);
      outline: none;
    }

    .wcl-footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-top: 46px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.52);
      font-size: 0.75rem;
    }

    .wcl-footer-credit {
      text-align: center;
    }

    .wcl-footer-credit a {
      color: rgba(255, 255, 255, 0.76);
      font-weight: 700;
      text-decoration: none;
      text-underline-offset: 3px;
    }

    .wcl-footer-credit a:hover,
    .wcl-footer-credit a:focus-visible {
      color: var(--wcl-accent-bright);
      text-decoration: underline;
      outline: none;
    }

    .wcl-mobile-sticky {
      position: sticky;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 70;
      display: none;
      justify-content: center;
      padding: 10px;
      border-top: 1px solid var(--wcl-line);
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
    }

    .wcl-mobile-sticky .wcl-button {
      width: 100%;
    }

    .wcl-toast {
      position: fixed;
      left: 50%;
      bottom: 24px;
      z-index: 100;
      max-width: min(90vw, 620px);
      padding: 12px 18px;
      border-radius: 999px;
      color: var(--wcl-white);
      background: rgba(23, 23, 23, 0.92);
      box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
      font-size: 0.83rem;
      font-weight: 750;
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, 16px);
      transition: opacity 180ms ease, transform 180ms ease;
    }

    .wcl-toast.is-visible {
      opacity: 1;
      transform: translate(-50%, 0);
    }

    .wcl-lazy-media {
      color: transparent;
      opacity: 0;
      filter: blur(16px) saturate(0.72);
      transform: scale(1.018);
      background:
        linear-gradient(110deg, #EEE4E0 8%, #FFF 18%, #EEE4E0 33%);
      background-size: 220% 100%;
      animation: wcl-skeleton 1.6s linear infinite;
    }

    .wcl-lazy-media.is-loading {
      opacity: 0.28;
    }

    .wcl-lazy-media.is-loaded,
    .wcl-media-loaded.is-loaded {
      opacity: 1;
      filter: blur(0) saturate(1);
      transform: scale(1);
      animation: none;
    }

    .wcl-lazy-media.has-load-error {
      opacity: 1;
      filter: grayscale(1);
      animation: none;
    }

    .wcl-lazy-background {
      background-color: var(--wcl-accent-deep);
    }

    .wcl-lazy-background::after {
      content: "Loading holiday project image";
      position: absolute;
      right: 18px;
      bottom: 14px;
      z-index: 2;
      padding: 6px 10px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 999px;
      color: rgba(255,255,255,0.72);
      background: rgba(0,0,0,0.22);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      backdrop-filter: blur(8px);
      transition: opacity 200ms ease;
    }

    .wcl-lazy-background.is-loaded::after,
    .wcl-lazy-background.has-load-error::after {
      opacity: 0;
      pointer-events: none;
    }

    .wcl-reveal {
      opacity: 0;
      transform: translateY(28px);
      transition:
        opacity 640ms ease var(--wcl-reveal-delay, 0ms),
        transform 640ms cubic-bezier(.2,.75,.25,1) var(--wcl-reveal-delay, 0ms);
    }

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

    .wcl-motion {
      opacity: 0;
      will-change: transform, opacity, filter, clip-path;
    }

    .wcl-motion.is-motion-visible {
      animation-name: var(--wcl-motion-name);
      animation-duration: var(--wcl-motion-duration, 760ms);
      animation-delay: var(--wcl-motion-delay, 0ms);
      animation-timing-function: cubic-bezier(.16,.78,.24,1);
      animation-fill-mode: both;
    }

    .wcl-motion.is-motion-complete {
      opacity: 1;
      filter: none;
      clip-path: none;
      will-change: auto;
    }

    .wcl-hero::before {
      animation: wcl-twinkle-field 8s ease-in-out infinite alternate;
    }

    .wcl-announcement {
      background-size: 240% 240%;
      animation: wcl-gradient-flow 15s ease infinite;
    }

    .wcl-trust-icon,
    .wcl-local-icon {
      animation: wcl-icon-bob 4.8s ease-in-out infinite;
    }

    .wcl-trust-item:nth-child(2n) .wcl-trust-icon,
    .wcl-local-card:nth-child(2n) .wcl-local-icon {
      animation-delay: -2.2s;
    }

    .wcl-countdown-value {
      animation: wcl-countdown-glow 3.8s ease-in-out infinite;
    }

    @keyframes wcl-reveal-rise {
      from { opacity: 0; transform: translate3d(0, 54px, 0); }
      to { opacity: 1; transform: translate3d(0, 0, 0); }
    }

    @keyframes wcl-reveal-drop {
      from { opacity: 0; transform: translate3d(0, -52px, 0); }
      to { opacity: 1; transform: translate3d(0, 0, 0); }
    }

    @keyframes wcl-reveal-left {
      from { opacity: 0; transform: translate3d(-62px, 0, 0); }
      to { opacity: 1; transform: translate3d(0, 0, 0); }
    }

    @keyframes wcl-reveal-right {
      from { opacity: 0; transform: translate3d(62px, 0, 0); }
      to { opacity: 1; transform: translate3d(0, 0, 0); }
    }

    @keyframes wcl-reveal-zoom {
      from { opacity: 0; transform: scale(.82); }
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes wcl-reveal-zoom-out {
      from { opacity: 0; transform: scale(1.16); }
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes wcl-reveal-rotate-left {
      from { opacity: 0; transform: translateY(28px) rotate(-5deg); transform-origin: 20% 100%; }
      to { opacity: 1; transform: translateY(0) rotate(0); transform-origin: 20% 100%; }
    }

    @keyframes wcl-reveal-rotate-right {
      from { opacity: 0; transform: translateY(28px) rotate(5deg); transform-origin: 80% 100%; }
      to { opacity: 1; transform: translateY(0) rotate(0); transform-origin: 80% 100%; }
    }

    @keyframes wcl-reveal-flip-x {
      from { opacity: 0; transform: perspective(900px) rotateX(-68deg); transform-origin: 50% 0; }
      to { opacity: 1; transform: perspective(900px) rotateX(0); transform-origin: 50% 0; }
    }

    @keyframes wcl-reveal-flip-y {
      from { opacity: 0; transform: perspective(900px) rotateY(64deg); transform-origin: 0 50%; }
      to { opacity: 1; transform: perspective(900px) rotateY(0); transform-origin: 0 50%; }
    }

    @keyframes wcl-reveal-blur {
      from { opacity: 0; filter: blur(18px); transform: translateY(22px) scale(.97); }
      to { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
    }

    @keyframes wcl-reveal-clip-left {
      from { opacity: 0; clip-path: inset(0 100% 0 0 round 18px); transform: translateX(-18px); }
      to { opacity: 1; clip-path: inset(0 0 0 0 round 18px); transform: translateX(0); }
    }

    @keyframes wcl-reveal-clip-right {
      from { opacity: 0; clip-path: inset(0 0 0 100% round 18px); transform: translateX(18px); }
      to { opacity: 1; clip-path: inset(0 0 0 0 round 18px); transform: translateX(0); }
    }

    @keyframes wcl-reveal-clip-up {
      from { opacity: 0; clip-path: inset(100% 0 0 0 round 18px); transform: translateY(18px); }
      to { opacity: 1; clip-path: inset(0 0 0 0 round 18px); transform: translateY(0); }
    }

    @keyframes wcl-reveal-clip-down {
      from { opacity: 0; clip-path: inset(0 0 100% 0 round 18px); transform: translateY(-18px); }
      to { opacity: 1; clip-path: inset(0 0 0 0 round 18px); transform: translateY(0); }
    }

    @keyframes wcl-reveal-pop {
      0% { opacity: 0; transform: scale(.58); }
      72% { opacity: 1; transform: scale(1.055); }
      100% { opacity: 1; transform: scale(1); }
    }

    @keyframes wcl-reveal-swing {
      0% { opacity: 0; transform: rotateX(-82deg); transform-origin: top center; }
      65% { opacity: 1; transform: rotateX(9deg); }
      100% { opacity: 1; transform: rotateX(0); }
    }

    @keyframes wcl-reveal-diagonal-left {
      from { opacity: 0; transform: translate3d(-48px, 48px, 0); }
      to { opacity: 1; transform: translate3d(0, 0, 0); }
    }

    @keyframes wcl-reveal-diagonal-right {
      from { opacity: 0; transform: translate3d(48px, 48px, 0); }
      to { opacity: 1; transform: translate3d(0, 0, 0); }
    }

    @keyframes wcl-reveal-scale-x {
      from { opacity: 0; transform: scaleX(.24); transform-origin: left center; }
      to { opacity: 1; transform: scaleX(1); transform-origin: left center; }
    }

    @keyframes wcl-reveal-scale-y {
      from { opacity: 0; transform: scaleY(.20); transform-origin: center bottom; }
      to { opacity: 1; transform: scaleY(1); transform-origin: center bottom; }
    }

    @keyframes wcl-reveal-skew-left {
      from { opacity: 0; transform: translateX(-45px) skewX(11deg); }
      to { opacity: 1; transform: translateX(0) skewX(0); }
    }

    @keyframes wcl-reveal-skew-right {
      from { opacity: 0; transform: translateX(45px) skewX(-11deg); }
      to { opacity: 1; transform: translateX(0) skewX(0); }
    }

    @keyframes wcl-reveal-depth {
      from { opacity: 0; transform: perspective(1000px) translateZ(-260px) rotateX(8deg); }
      to { opacity: 1; transform: perspective(1000px) translateZ(0) rotateX(0); }
    }

    @keyframes wcl-reveal-soft-bounce {
      0% { opacity: 0; transform: translateY(52px); }
      68% { opacity: 1; transform: translateY(-7px); }
      86% { transform: translateY(3px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes wcl-reveal-roll-left {
      from { opacity: 0; transform: translateX(-65px) rotate(-12deg); }
      to { opacity: 1; transform: translateX(0) rotate(0); }
    }

    @keyframes wcl-reveal-roll-right {
      from { opacity: 0; transform: translateX(65px) rotate(12deg); }
      to { opacity: 1; transform: translateX(0) rotate(0); }
    }

    @keyframes wcl-reveal-focus {
      from { opacity: 0; filter: blur(24px) brightness(1.45); transform: scale(1.08); }
      to { opacity: 1; filter: blur(0) brightness(1); transform: scale(1); }
    }

    @keyframes wcl-reveal-glide {
      from { opacity: 0; transform: translate3d(-18px, 70px, 0) scale(.96); }
      to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
    }

    @keyframes wcl-reveal-cascade {
      0% { opacity: 0; transform: translateY(44px) rotateX(-18deg); filter: saturate(.4); }
      70% { opacity: 1; transform: translateY(-4px) rotateX(2deg); filter: saturate(1.1); }
      100% { opacity: 1; transform: translateY(0) rotateX(0); filter: saturate(1); }
    }

    @keyframes wcl-reveal-luxe {
      from { opacity: 0; transform: translateY(34px) scale(.94); filter: blur(8px) brightness(1.25); }
      to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0) brightness(1); }
    }

    @keyframes wcl-reveal-spark {
      0% { opacity: 0; transform: scale(.72); filter: brightness(2) blur(6px); }
      58% { opacity: 1; transform: scale(1.035); filter: brightness(1.22) blur(0); }
      100% { opacity: 1; transform: scale(1); filter: brightness(1); }
    }

    @keyframes wcl-gradient-flow {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    @keyframes wcl-twinkle-field {
      0% { opacity: .62; filter: brightness(.92); transform: scale(1); }
      50% { opacity: 1; filter: brightness(1.18); transform: scale(1.012); }
      100% { opacity: .76; filter: brightness(1.03); transform: scale(1.006); }
    }

    @keyframes wcl-border-flow {
      to { background-position: 220% 0; }
    }

    @keyframes wcl-marquee {
      to { transform: translateX(-50%); }
    }

    @keyframes wcl-filter-pop {
      0% { transform: scale(.86); }
      66% { transform: scale(1.06); }
      100% { transform: scale(1); }
    }

    @keyframes wcl-gallery-sheen {
      from { transform: rotate(18deg) translateX(-330%); }
      to { transform: rotate(18deg) translateX(690%); }
    }


    @keyframes wcl-carousel-swipe-hint {
      0%, 100% { transform: translateX(0); opacity: .75; }
      50% { transform: translateX(7px); opacity: 1; }
    }

    @keyframes wcl-icon-bob {
      0%, 100% { transform: translateY(0) rotate(0); }
      50% { transform: translateY(-5px) rotate(3deg); }
    }

    @keyframes wcl-countdown-glow {
      0%, 100% { text-shadow: 0 0 0 rgba(255,255,255,0); }
      50% { text-shadow: 0 0 24px rgba(255,255,255,0.34); }
    }

    @keyframes wcl-lightbox-panel {
      from { opacity: 0; transform: translateY(28px) scale(.96); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    @keyframes wcl-lightbox-image-swap {
      0% { opacity: .25; transform: scale(1.045); filter: blur(6px); }
      100% { opacity: 1; transform: scale(1); filter: blur(0); }
    }

    @keyframes wcl-skeleton {
      to { background-position-x: -220%; }
    }

    @keyframes wcl-pulse {
      0%, 100% { transform: scale(1); box-shadow: 0 16px 34px color-mix(in srgb, var(--wcl-accent) 28%, transparent); }
      50% { transform: scale(1.08); box-shadow: 0 20px 44px color-mix(in srgb, var(--wcl-accent) 40%, transparent); }
    }

    @keyframes wcl-announcement-shine {
      0%, 18% { transform: translateX(-100%); }
      48%, 100% { transform: translateX(100%); }
    }

    @media (min-width: 921px) and (max-width: 1180px) {
      .wcl-header-row {
        gap: 14px;
      }

      .wcl-logo {
        width: 180px;
      }

      .wcl-nav {
        gap: 10px;
      }

      .wcl-nav-links {
        gap: 12px;
      }

      .wcl-nav-links a {
        font-size: 0.82rem;
      }

      .wcl-header-cta {
        min-height: 44px;
        padding: 10px 14px;
        font-size: 0.82rem;
      }
    }

    @media (max-width: 1080px) {
      .wcl-announcement .wcl-container {
        padding-right: 0;
      }

      .wcl-hero-grid {
        grid-template-columns: 1fr 420px;
      }

      .wcl-service-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .wcl-process-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .wcl-trust-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .wcl-trust-item:nth-child(2) {
        border-right: 0;
      }

      .wcl-trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--wcl-line);
      }
    }

    @media (max-width: 920px) {
      .wcl-nav-links,
      .wcl-header-cta {
        display: none;
      }

      .wcl-mobile-toggle {
        display: inline-flex;
      }

      .wcl-hero-grid,
      .wcl-split,
      .wcl-split.is-reversed,
      .wcl-pricing-grid,
      .wcl-local-grid,
      .wcl-countdown-grid,
      .wcl-footer-grid {
        grid-template-columns: 1fr;
      }

      .wcl-hero {
        min-height: auto;
      }

      .wcl-hero-grid {
        padding-block: 70px 118px;
      }

      .wcl-hero-form {
        max-width: 620px;
      }

      .wcl-split-media {
        min-height: auto;
      }

      .wcl-split-media img {
        height: min(62vw, 560px);
      }

      .wcl-process-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .wcl-footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .wcl-mobile-sticky {
        display: flex;
      }
    }

    @media (max-width: 920px) {
      .wcl-lightbox-dialog {
        grid-template-columns: 1fr;
        overflow: auto;
      }

      .wcl-lightbox-image-shell {
        min-height: min(54vh, 560px);
      }

      .wcl-lightbox-content {
        padding: 34px 30px 30px;
      }
    }

    @media (max-width: 680px) {
      .wcl-container {
        width: min(calc(100% - 28px), var(--wcl-container));
      }

      .wcl-toolbar {
        max-width: calc(100vw - 20px);
        flex-wrap: wrap;
        justify-content: flex-end;
        border-radius: 16px;
      }

      .wcl-toolbar-label {
        display: none;
      }

      .wcl-announcement .wcl-container {
        min-height: 54px;
        padding-right: 230px;
        justify-content: flex-start;
        text-align: left;
        font-size: 0.72rem;
      }

      .wcl-header-row {
        min-height: 78px;
      }

      .wcl-logo {
        width: 174px;
        max-height: 62px;
      }

      .wcl-hero h1 {
        font-size: clamp(2.6rem, 13vw, 4rem);
      }

      .wcl-hero-actions,
      .wcl-content-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .wcl-hero-actions .wcl-button,
      .wcl-content-actions .wcl-button {
        width: 100%;
      }

      .wcl-service-grid,
      .wcl-design-grid,
      .wcl-pricing-cards,
      .wcl-process-grid,
      .wcl-countdown,
      .wcl-footer-grid {
        grid-template-columns: 1fr;
      }

      .wcl-gallery-section .wcl-section-heading {
        margin-bottom: 32px;
      }

      .wcl-gallery-marquee {
        margin-bottom: 32px;
      }

      .wcl-gallery-carousel-footer {
        grid-template-columns: auto minmax(0, 1fr);
      }

      .wcl-gallery-card figcaption {
        padding-inline: 20px;
      }

      .wcl-gallery-lightbox {
        padding: 10px;
      }

      .wcl-lightbox-dialog {
        width: 100%;
        max-height: 96vh;
        border-radius: 20px;
      }

      .wcl-lightbox-image-shell {
        min-height: 46vh;
      }

      .wcl-lightbox-content {
        padding: 28px 22px 22px;
      }

      .wcl-lightbox-controls {
        flex-direction: column;
      }

      .wcl-trust-grid {
        grid-template-columns: 1fr;
      }

      .wcl-trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--wcl-line);
      }

      .wcl-trust-item:last-child {
        border-bottom: 0;
      }

      .wcl-split-media::before {
        inset: 20px -10px -12px 20px;
      }

      .wcl-split-media img {
        height: 390px;
      }

      .wcl-image-badge {
        right: 10px;
        bottom: 16px;
        max-width: 210px;
      }

      .wcl-countdown {
        grid-template-columns: repeat(2, 1fr);
      }

      .wcl-footer-bottom {
        flex-direction: column;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .wcl-app,
      .wcl-preview-shell,
      .wcl-button,
      .wcl-gallery-card,
      .wcl-gallery-card img,
      .wcl-gallery-viewport,
      .wcl-gallery-track,
      .wcl-gallery-dot,
      .wcl-gallery-progress-fill,
      .wcl-gallery-swipe-hint .wcl-icon,
      .wcl-gallery-card::after,
      .wcl-gallery-marquee-track,
      .wcl-gallery-filter,
      .wcl-gallery-hint .wcl-icon,
      .wcl-gallery-lightbox,
      .wcl-lightbox-dialog,
      .wcl-lightbox-image,
      .wcl-motion,
      .wcl-trust-icon,
      .wcl-local-icon,
      .wcl-countdown-value,
      .wcl-hero::before,
      .wcl-service-card,
      .wcl-process-step,
      .wcl-pricing-card,
      .wcl-local-card,
      .wcl-faq-symbol,
      .wcl-toast,
      .wcl-reveal,
      .wcl-lazy-media,
      .wcl-frame-shell,
      .wcl-frame-loader-mark,
      .wcl-announcement::after {
        scroll-behavior: auto;
        animation: none !important;
        transition: none !important;
      }

      .wcl-reveal,
      .wcl-motion {
        opacity: 1;
        transform: none;
        filter: none;
        clip-path: none;
      }
    }

/* WordPress production integration overrides. */
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; }
body.wcl-lightbox-open { overflow: hidden; }
.wcl-app {
  position: relative !important;
  inset: auto !important;
  z-index: auto !important;
  width: 100%;
  min-height: 100vh;
  overflow: visible !important;
}
.wcl-preview-shell { min-height: 100vh; }
.wcl-toolbar { display: none !important; }
.wcl-announcement .wcl-container { padding-right: 0 !important; }
.wcl-nav-links,
.wcl-mobile-menu ul,
.wcl-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wcl-nav-links { display: flex; }
.wcl-nav-links li { display: flex; align-items: center; }
.wcl-mobile-menu ul { display: grid; }
.wcl-footer-menu { display: grid; gap: 10px; }
.wcl-footer-menu a { color: rgba(255,255,255,.76); text-decoration: none; }
.wcl-footer-menu a:hover,
.wcl-footer-menu a:focus-visible { color: #fff; }
.wcl-logo-link .custom-logo { width: clamp(180px, 16vw, 220px); max-height: 76px; object-fit: contain; }
.wcl-gallery-card[hidden] { display: none !important; }
.wcl-gallery-open { width: 100%; height: 100%; padding: 0; border: 0; color: inherit; background: transparent; text-align: left; cursor: pointer; }
.wcl-lightbox-backdrop { border: 0; }
.wcl-gallery-dots button { padding: 0; }
.wcl-form-frame[data-src] { min-height: 590px; }
.wcl-section[id] { scroll-margin-top: 105px; }
.wcl-custom-css-anchor { display: none; }
.wcl-content-page { padding: 90px 0; min-height: 55vh; }
.wcl-content-page h1 { margin-top: 0; color: var(--wcl-charcoal); font-family: var(--wcl-font-accent); font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.05; }
.wcl-entry-content { color: var(--wcl-body); }
.wcl-entry-content a { color: var(--wcl-accent); }
.wcl-post-list { display: grid; gap: 24px; }
.wcl-post-card { padding: 28px; border: 1px solid var(--wcl-line); border-radius: 18px; background: #fff; box-shadow: var(--wcl-shadow-soft); }
.wcl-post-card h2 { margin-top: 0; }
.wcl-post-card h2 a { color: var(--wcl-charcoal); text-decoration: none; }
.wcl-post-meta { color: var(--wcl-muted); font-size: .86rem; }
.wcl-pagination { margin-top: 36px; }
.admin-bar .wcl-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .wcl-header { top: 46px; } }
@media (max-width: 920px) {
  .wcl-nav-links, .wcl-header-cta { display: none; }
  .wcl-mobile-toggle { display: inline-flex; }
}
@media (max-width: 600px) {
  .wcl-section[id] { scroll-margin-top: 82px; }
}

.custom-logo-link{display:inline-flex;align-items:center;text-decoration:none}.custom-logo-link img{width:clamp(180px,16vw,220px);max-height:76px;object-fit:contain}

/* Editable multi-level WordPress menus and accessible submenu controls. */
.wcl-nav-links .menu-item,
.wcl-nav-links .page_item {
  position: relative;
}

.wcl-nav-links > .menu-item,
.wcl-nav-links > .page_item {
  display: flex;
  align-items: center;
}

.wcl-nav-links .sub-menu,
.wcl-nav-links .children {
  position: absolute;
  z-index: 120;
  top: calc(100% - 4px);
  left: -14px;
  width: max-content;
  min-width: 230px;
  max-width: min(330px, calc(100vw - 32px));
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(126, 21, 17, 0.12);
  border-radius: 14px;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 56px rgba(36, 18, 18, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 170ms ease, visibility 170ms ease, transform 170ms ease;
  backdrop-filter: blur(16px);
}

.wcl-nav-links .sub-menu .sub-menu,
.wcl-nav-links .children .children {
  top: -10px;
  left: calc(100% + 8px);
}

.wcl-nav-links .sub-menu li,
.wcl-nav-links .children li {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.wcl-nav-links .sub-menu a,
.wcl-nav-links .children a {
  min-height: 42px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--wcl-charcoal);
  font-size: 0.86rem;
  line-height: 1.35;
  white-space: normal;
}

.wcl-nav-links .sub-menu a::after,
.wcl-nav-links .children a::after {
  display: none;
}

.wcl-nav-links .sub-menu a:hover,
.wcl-nav-links .sub-menu a:focus-visible,
.wcl-nav-links .children a:hover,
.wcl-nav-links .children a:focus-visible {
  color: var(--wcl-accent-deep);
  background: var(--wcl-accent-soft);
}

.wcl-nav-links .menu-item:hover > .sub-menu,
.wcl-nav-links .menu-item:focus-within > .sub-menu,
.wcl-nav-links .menu-item.is-submenu-open > .sub-menu,
.wcl-nav-links .page_item:hover > .children,
.wcl-nav-links .page_item:focus-within > .children,
.wcl-nav-links .page_item.is-submenu-open > .children {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.wcl-submenu-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 2px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: var(--wcl-charcoal);
  background: transparent;
  cursor: pointer;
}

.wcl-submenu-toggle:hover,
.wcl-submenu-toggle:focus-visible {
  color: var(--wcl-accent-deep);
  background: var(--wcl-accent-soft);
  outline: 3px solid color-mix(in srgb, var(--wcl-accent) 28%, transparent);
  outline-offset: 2px;
}

.wcl-submenu-toggle span {
  display: block;
  font-size: 1.05rem;
  line-height: 1;
  transform: translateY(-2px);
  transition: transform 170ms ease;
}

.menu-item.is-submenu-open > .wcl-submenu-toggle span,
.page_item.is-submenu-open > .wcl-submenu-toggle span {
  transform: translateY(1px) rotate(180deg);
}

.wcl-nav-links .sub-menu .wcl-submenu-toggle,
.wcl-nav-links .children .wcl-submenu-toggle {
  width: 44px;
  height: 44px;
  margin: 0 2px 0 4px;
}

.wcl-mobile-menu-list,
.wcl-mobile-menu-list .sub-menu,
.wcl-mobile-menu-list .children {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wcl-mobile-menu-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.wcl-mobile-menu-list li > a {
  grid-column: 1;
  min-width: 0;
}

.wcl-mobile-menu-list .wcl-submenu-toggle {
  grid-column: 2;
  width: 44px;
  height: 44px;
  margin: 0;
  border: 1px solid var(--wcl-line);
}

.wcl-mobile-menu-list .sub-menu,
.wcl-mobile-menu-list .children {
  grid-column: 1 / -1;
  display: grid;
  padding: 0 0 4px 16px;
  border-left: 2px solid var(--wcl-accent-soft);
}

.wcl-menu-enhanced .wcl-mobile-menu-list .sub-menu,
.wcl-menu-enhanced .wcl-mobile-menu-list .children {
  display: none;
}

.wcl-menu-enhanced .wcl-mobile-menu-list .menu-item.is-submenu-open > .sub-menu,
.wcl-menu-enhanced .wcl-mobile-menu-list .page_item.is-submenu-open > .children {
  display: grid;
}

.wcl-mobile-menu-list .sub-menu a,
.wcl-mobile-menu-list .children a {
  padding-left: 12px;
  font-size: 0.92rem;
  font-weight: 700;
}

.wcl-footer-menu .sub-menu,
.wcl-footer-menu .children {
  display: grid;
  gap: 7px;
  margin: 4px 0 0;
  padding: 0 0 0 16px;
  list-style: none;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.wcl-footer-menu .sub-menu a,
.wcl-footer-menu .children a {
  font-size: 0.9em;
}

@media (max-width: 1080px) and (min-width: 921px) {
  .wcl-nav-links {
    gap: 9px;
  }

  .wcl-nav-links > li > a {
    font-size: 0.82rem;
  }
}

@media (max-width: 920px) {
  .wcl-nav-links .sub-menu,
  .wcl-nav-links .children {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wcl-nav-links .sub-menu,
  .wcl-nav-links .children,
  .wcl-submenu-toggle span {
    transition: none !important;
  }
}

/* ================================================================
   Report-aligned service and SEO landing pages (v1.3.0)
   ================================================================ */
.wcl-card-actions,
.wcl-gallery-page-link {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.wcl-card-link,
.wcl-inline-link {
  color: var(--wcl-accent-dark);
  font-weight: 800;
  text-decoration: none;
  text-underline-offset: 4px;
}

.wcl-card-link:hover,
.wcl-card-link:focus-visible,
.wcl-inline-link:hover,
.wcl-inline-link:focus-visible {
  color: var(--wcl-accent-deep);
  text-decoration: underline;
}

.wcl-landing-main {
  background: var(--wcl-white);
}

.wcl-landing-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 28px 0 72px;
  color: var(--wcl-white);
  background:
    radial-gradient(circle at 12% 12%, rgba(255,255,255,.14), transparent 26%),
    linear-gradient(108deg, rgba(18,8,10,.97) 0%, rgba(74,8,17,.92) 56%, rgba(126,21,17,.76) 100%);
}

.wcl-landing-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.wcl-landing-hero-image,
.wcl-landing-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wcl-landing-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -190px 35%;
  z-index: -1;
  height: 330px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  transform: rotate(-8deg);
}

.wcl-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 38px;
  color: rgba(255,255,255,.75);
  font-size: .84rem;
  font-weight: 700;
}

.wcl-breadcrumbs a {
  color: var(--wcl-white);
  text-decoration: none;
}

.wcl-breadcrumbs a:hover,
.wcl-breadcrumbs a:focus-visible {
  text-decoration: underline;
}

.wcl-landing-hero-grid {
  display: grid;
  gap: 34px;
}

.wcl-landing-hero-copy {
  max-width: 760px;
}

.wcl-landing-hero h1 {
  max-width: 820px;
  margin: 12px 0 20px;
  color: var(--wcl-white);
  font-family: var(--wcl-font-display);
  font-size: clamp(2.35rem, 10vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.wcl-landing-lead {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.03rem, 2.8vw, 1.28rem);
  line-height: 1.75;
}

.wcl-landing-hero .wcl-button-outline {
  border-color: rgba(255,255,255,.52);
  color: var(--wcl-white);
  background: rgba(255,255,255,.06);
}

.wcl-landing-trust-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.88);
  font-size: .94rem;
  font-weight: 700;
}

.wcl-landing-trust-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.wcl-landing-trust-points li > span {
  display: inline-grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: var(--wcl-accent-deep);
  background: var(--wcl-white);
}

.wcl-landing-hero-card {
  align-self: end;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--wcl-radius);
  background: rgba(255,255,255,.11);
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
  backdrop-filter: blur(15px);
}

.wcl-landing-hero-card h2 {
  margin: 8px 0 12px;
  color: var(--wcl-white);
  font-size: clamp(1.55rem, 5vw, 2.15rem);
  line-height: 1.18;
}

.wcl-landing-hero-card p:not(.wcl-eyebrow) {
  color: rgba(255,255,255,.82);
}

.wcl-landing-hero-card .wcl-inline-link {
  color: var(--wcl-white);
}

.wcl-landing-body {
  padding: 58px 0 78px;
}

.wcl-landing-layout {
  display: grid;
  gap: 40px;
}

.wcl-landing-content {
  min-width: 0;
}

.wcl-landing-content > :first-child {
  margin-top: 0;
}

.wcl-landing-content h2,
.wcl-landing-content h3,
.wcl-landing-sidebar h2 {
  color: var(--wcl-black);
  font-family: var(--wcl-font-display);
  line-height: 1.18;
}

.wcl-landing-content h2 {
  margin: 12px 0 18px;
  font-size: clamp(1.7rem, 5.5vw, 2.65rem);
  letter-spacing: -.025em;
}

.wcl-landing-content h3 {
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 3.5vw, 1.42rem);
}

.wcl-landing-content p,
.wcl-landing-content li {
  font-size: 1rem;
}

.wcl-content-section {
  margin: 0 0 34px;
  padding: 0;
}

.wcl-content-section.is-soft,
.wcl-content-intro,
.wcl-content-callout {
  padding: 26px;
  border: 1px solid var(--wcl-line);
  border-radius: var(--wcl-radius);
  background: linear-gradient(145deg, var(--wcl-off-white), var(--wcl-cream));
}

.wcl-content-intro {
  border-left: 5px solid var(--wcl-accent);
  box-shadow: var(--wcl-shadow-soft);
}

.wcl-content-intro p:first-child {
  margin-top: 0;
  color: var(--wcl-charcoal);
  font-size: clamp(1.08rem, 3vw, 1.24rem);
  line-height: 1.72;
}

.wcl-content-intro p:last-child,
.wcl-content-callout p:last-child {
  margin-bottom: 0;
}

.wcl-content-grid {
  display: grid;
  gap: 18px;
}

.wcl-feature-card,
.wcl-related-page-card,
.wcl-service-area-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--wcl-line);
  border-radius: var(--wcl-radius);
  background: var(--wcl-white);
  box-shadow: 0 14px 36px rgba(46,12,16,.08);
}

.wcl-feature-card::before,
.wcl-related-page-card::before,
.wcl-service-area-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--wcl-accent-bright), var(--wcl-accent-deep));
}

.wcl-feature-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 15px;
  color: var(--wcl-white);
  background: linear-gradient(145deg, var(--wcl-accent), var(--wcl-accent-deep));
  box-shadow: 0 10px 22px rgba(126,21,17,.24);
  font-size: 1.3rem;
}

.wcl-process-list {
  counter-reset: wcl-process;
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.wcl-process-list li {
  counter-increment: wcl-process;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--wcl-line);
  border-radius: 16px;
  background: var(--wcl-white);
}

.wcl-process-list li::before {
  content: counter(wcl-process);
  grid-row: 1 / span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: var(--wcl-white);
  background: var(--wcl-accent-deep);
  font-weight: 900;
}

.wcl-process-list strong {
  color: var(--wcl-black);
  font-size: 1.03rem;
}

.wcl-process-list span {
  display: block;
  color: var(--wcl-muted);
}

.wcl-large-check-list {
  display: grid;
  gap: 13px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.wcl-large-check-list li {
  position: relative;
  padding: 15px 16px 15px 50px;
  border: 1px solid var(--wcl-line);
  border-radius: 14px;
  background: var(--wcl-white);
}

.wcl-large-check-list li::before {
  content: "✓";
  position: absolute;
  top: 14px;
  left: 15px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 999px;
  color: var(--wcl-white);
  background: var(--wcl-success);
  font-size: .8rem;
  font-weight: 900;
}

.wcl-content-callout {
  border-color: color-mix(in srgb, var(--wcl-accent) 26%, transparent);
  background:
    radial-gradient(circle at 100% 0, var(--wcl-accent-soft), transparent 36%),
    var(--wcl-white);
}

.wcl-content-callout.is-dark {
  color: rgba(255,255,255,.84);
  border-color: rgba(255,255,255,.12);
  background: linear-gradient(130deg, var(--wcl-black), var(--wcl-accent-deep));
}

.wcl-content-callout.is-dark h2,
.wcl-content-callout.is-dark h3 {
  color: var(--wcl-white);
}

.wcl-faq-stack {
  display: grid;
  gap: 12px;
}

.wcl-faq-stack details {
  overflow: hidden;
  border: 1px solid var(--wcl-line);
  border-radius: 15px;
  background: var(--wcl-white);
}

.wcl-faq-stack summary {
  position: relative;
  padding: 18px 48px 18px 18px;
  color: var(--wcl-black);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.wcl-faq-stack summary::-webkit-details-marker {
  display: none;
}

.wcl-faq-stack summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--wcl-accent);
  font-size: 1.35rem;
  transform: translateY(-50%);
}

.wcl-faq-stack details[open] summary::after {
  content: "−";
}

.wcl-faq-stack details > :not(summary) {
  margin: 0;
  padding: 0 18px 18px;
}

.wcl-landing-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.wcl-sidebar-card {
  padding: 24px;
  border: 1px solid var(--wcl-line);
  border-radius: var(--wcl-radius);
  background: var(--wcl-white);
  box-shadow: var(--wcl-shadow-soft);
}

.wcl-sidebar-card.is-accent {
  color: rgba(255,255,255,.84);
  border: 0;
  background: linear-gradient(145deg, var(--wcl-accent-dark), var(--wcl-accent-deep));
}

.wcl-sidebar-card h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.wcl-sidebar-card.is-accent h2,
.wcl-sidebar-card.is-accent .wcl-eyebrow {
  color: var(--wcl-white);
}

.wcl-sidebar-links {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wcl-sidebar-links li + li {
  border-top: 1px solid var(--wcl-line);
}

.wcl-sidebar-links a {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 13px 0;
  color: var(--wcl-charcoal);
  font-weight: 800;
  text-decoration: none;
}

.wcl-sidebar-links a:hover,
.wcl-sidebar-links a:focus-visible {
  color: var(--wcl-accent-dark);
}

.wcl-project-gallery-grid,
.wcl-service-area-card-grid,
.wcl-related-page-grid {
  display: grid;
  gap: 18px;
}

.wcl-project-gallery-card {
  overflow: hidden;
  border: 1px solid var(--wcl-line);
  border-radius: var(--wcl-radius);
  background: var(--wcl-white);
  box-shadow: var(--wcl-shadow-soft);
}

.wcl-project-gallery-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--wcl-cream);
}

.wcl-project-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.wcl-project-gallery-card:hover img {
  transform: scale(1.045);
}

.wcl-project-gallery-card > div {
  padding: 22px;
}

.wcl-service-area-card > span,
.wcl-related-page-card > span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 14px;
  color: var(--wcl-white);
  background: var(--wcl-accent);
  font-size: 1.15rem;
}

.wcl-related-pages-section {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--wcl-off-white), var(--wcl-cream));
}

.wcl-related-page-card h3 a {
  color: var(--wcl-black);
  text-decoration: none;
}

.wcl-related-page-card h3 a:hover,
.wcl-related-page-card h3 a:focus-visible {
  color: var(--wcl-accent-dark);
}

.wcl-quote-form-shell {
  min-height: 720px;
  overflow: hidden;
  border: 1px solid var(--wcl-line);
  border-radius: var(--wcl-radius);
  background: var(--wcl-white);
  box-shadow: var(--wcl-shadow);
}

.wcl-quote-form-shell .wcl-form-frame {
  width: 100%;
  min-height: 720px;
  border: 0;
}

.wcl-mobile-sticky-cta {
  position: sticky;
  z-index: 45;
  bottom: 12px;
  display: flex;
  width: calc(100% - 28px);
  max-width: 430px;
  margin: 0 auto 12px;
  padding: 14px 18px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: var(--wcl-white);
  background: linear-gradient(110deg, var(--wcl-accent), var(--wcl-accent-deep));
  box-shadow: 0 16px 38px rgba(71,10,18,.34);
  font-weight: 900;
  text-decoration: none;
}

@media (min-width: 700px) {
  .wcl-landing-hero {
    padding: 38px 0 92px;
  }

  .wcl-content-grid-2,
  .wcl-service-area-card-grid,
  .wcl-project-gallery-grid,
  .wcl-related-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wcl-content-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wcl-content-section.is-soft,
  .wcl-content-intro,
  .wcl-content-callout {
    padding: 34px;
  }

  .wcl-mobile-sticky-cta {
    display: none;
  }
}

@media (min-width: 980px) {
  .wcl-landing-hero-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, .7fr);
    align-items: end;
  }

  .wcl-landing-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 54px;
    align-items: start;
  }

  .wcl-landing-sidebar {
    position: sticky;
    top: 118px;
  }

  .wcl-project-gallery-grid,
  .wcl-related-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wcl-service-area-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 699px) {
  .wcl-landing-hero .wcl-hero-actions,
  .wcl-landing-hero .wcl-button,
  .wcl-content-callout .wcl-button,
  .wcl-sidebar-card .wcl-button {
    width: 100%;
  }

  .wcl-landing-hero .wcl-button {
    justify-content: center;
  }

  .wcl-content-section.is-soft,
  .wcl-content-intro,
  .wcl-content-callout,
  .wcl-feature-card,
  .wcl-related-page-card,
  .wcl-service-area-card,
  .wcl-sidebar-card {
    padding: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wcl-project-gallery-card img {
    transition: none;
  }
}

/* Content-class aliases used by the packaged page library. */
.wcl-callout {
  margin: 30px 0;
  padding: 26px;
  border: 1px solid color-mix(in srgb, var(--wcl-accent) 28%, transparent);
  border-radius: var(--wcl-radius);
  background:
    radial-gradient(circle at 100% 0, var(--wcl-accent-soft), transparent 38%),
    var(--wcl-white);
  box-shadow: var(--wcl-shadow-soft);
}

.wcl-callout h2,
.wcl-callout h3 {
  margin-top: 0;
}

.wcl-callout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}

.wcl-check-list-large {
  display: grid;
  gap: 13px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.wcl-check-list-large li {
  position: relative;
  padding: 15px 16px 15px 50px;
  border: 1px solid var(--wcl-line);
  border-radius: 14px;
  background: var(--wcl-white);
}

.wcl-check-list-large li::before {
  content: "✓";
  position: absolute;
  top: 14px;
  left: 15px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 999px;
  color: var(--wcl-white);
  background: var(--wcl-success);
  font-size: .8rem;
  font-weight: 900;
}

@media (max-width: 699px) {
  .wcl-callout {
    padding: 21px;
  }

  .wcl-callout-actions .wcl-button {
    width: 100%;
    justify-content: center;
  }
}


/* Premium About page layout (v1.5.0). */
.wcl-page-kind-about .wcl-landing-hero {
  min-height: 660px;
  padding-bottom: 108px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,.16), transparent 28%),
    radial-gradient(circle at 84% 72%, color-mix(in srgb, var(--wcl-accent-bright) 24%, transparent), transparent 34%),
    linear-gradient(112deg, rgba(15,7,9,.98) 0%, rgba(60,8,15,.94) 52%, rgba(126,21,17,.76) 100%);
}

.wcl-page-kind-about .wcl-landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.wcl-page-kind-about .wcl-landing-hero-copy {
  max-width: 850px;
}

.wcl-page-kind-about .wcl-landing-hero-card {
  border-color: rgba(255,255,255,.28);
  background: linear-gradient(145deg, rgba(255,255,255,.17), rgba(255,255,255,.07));
}

.wcl-about-visual-band {
  position: relative;
  z-index: 3;
  margin-top: -58px;
  padding: 0 0 38px;
}

.wcl-about-visual-grid {
  display: grid;
  gap: 16px;
}

.wcl-about-visual-card,
.wcl-about-visual-note {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: calc(var(--wcl-radius) + 4px);
  background: var(--wcl-white);
  box-shadow: 0 24px 65px rgba(42,7,13,.17);
}

.wcl-about-visual-card {
  min-height: 290px;
  margin: 0;
}

.wcl-about-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.8,.2,1);
}

.wcl-about-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,6,8,.88), rgba(15,6,8,.02) 62%);
}

.wcl-about-visual-card:hover img {
  transform: scale(1.045);
}

.wcl-about-visual-card figcaption {
  position: absolute;
  z-index: 2;
  inset: auto 22px 22px;
  display: grid;
  gap: 4px;
  color: var(--wcl-white);
}

.wcl-about-visual-card figcaption span {
  color: rgba(255,255,255,.78);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.wcl-about-visual-card figcaption strong {
  font-family: var(--wcl-font-display);
  font-size: clamp(1.25rem, 5vw, 1.8rem);
  line-height: 1.12;
}

.wcl-about-visual-note {
  display: flex;
  min-height: 290px;
  padding: 28px;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 90% 10%, var(--wcl-accent-soft), transparent 42%),
    linear-gradient(145deg, var(--wcl-white), var(--wcl-off-white));
}

.wcl-about-visual-note h2 {
  margin: 4px 0 12px;
  color: var(--wcl-black);
  font-family: var(--wcl-font-display);
  font-size: clamp(1.65rem, 6vw, 2.35rem);
  line-height: 1.12;
}

.wcl-about-visual-note p:last-child {
  margin-bottom: 0;
  color: var(--wcl-muted);
}

.wcl-about-page-body {
  padding-top: 48px;
  background:
    radial-gradient(circle at 8% 14%, color-mix(in srgb, var(--wcl-accent-soft) 48%, transparent), transparent 22%),
    var(--wcl-white);
}

.wcl-about-content-wrap {
  max-width: 1180px;
}

.wcl-about-page-content > .wcl-content-section,
.wcl-about-page-content > .wcl-callout {
  margin-bottom: 46px;
}

.wcl-about-intro {
  max-width: 1040px;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 30px;
  text-align: left;
}

.wcl-about-intro h2 {
  max-width: 780px;
}

.wcl-about-story-grid,
.wcl-about-client-grid {
  display: grid;
  gap: 22px;
}

.wcl-about-story-copy {
  align-self: center;
}

.wcl-about-story-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--wcl-radius);
  color: rgba(255,255,255,.82);
  background:
    radial-gradient(circle at 100% 0, rgba(255,255,255,.13), transparent 34%),
    linear-gradient(145deg, var(--wcl-black), var(--wcl-accent-deep));
  box-shadow: 0 24px 58px rgba(44,7,13,.22);
}

.wcl-about-story-mark {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: var(--wcl-accent-deep);
  background: var(--wcl-white);
  font-size: 1.35rem;
}

.wcl-about-story-card blockquote {
  margin: 22px 0 16px;
  color: var(--wcl-white);
  font-family: var(--wcl-font-display);
  font-size: clamp(1.45rem, 5.6vw, 2.15rem);
  font-weight: 800;
  line-height: 1.25;
}

.wcl-about-story-card p:last-child {
  margin-bottom: 0;
}

.wcl-about-values-section,
.wcl-about-trust-section {
  padding: 30px;
}

.wcl-about-value-grid,
.wcl-about-trust-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.wcl-about-value-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--wcl-line);
  border-radius: 18px;
  background: var(--wcl-white);
  box-shadow: 0 13px 30px rgba(45,8,14,.07);
}

.wcl-about-value-card > span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--wcl-accent);
  font-family: var(--wcl-font-display);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -.04em;
}

.wcl-about-value-card h3 {
  padding-right: 12px;
}

.wcl-about-value-card p:last-child {
  margin-bottom: 0;
  color: var(--wcl-muted);
}

.wcl-about-value-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 110px;
  height: 110px;
  border: 18px solid var(--wcl-accent-soft);
  border-radius: 50%;
  opacity: .7;
}

.wcl-about-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.wcl-about-process-section {
  overflow: hidden;
  padding: 30px;
  border-radius: calc(var(--wcl-radius) + 4px);
  color: rgba(255,255,255,.83);
  background:
    radial-gradient(circle at 92% 8%, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(132deg, var(--wcl-black), var(--wcl-accent-deep));
  box-shadow: 0 30px 70px rgba(39,7,12,.2);
}

.wcl-about-process-section h2,
.wcl-about-process-section .wcl-eyebrow {
  color: var(--wcl-white);
}

.wcl-about-process-section .wcl-process-list li {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(9px);
}

.wcl-about-process-section .wcl-process-list li::before {
  color: var(--wcl-accent-deep);
  background: var(--wcl-white);
}

.wcl-about-process-section .wcl-process-list strong {
  color: var(--wcl-white);
}

.wcl-about-process-section .wcl-process-list span {
  color: rgba(255,255,255,.73);
}

.wcl-about-client-grid > article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--wcl-line);
  border-radius: var(--wcl-radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.97), rgba(255,249,247,.95));
  box-shadow: var(--wcl-shadow-soft);
}

.wcl-about-client-grid > article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--wcl-accent-bright), var(--wcl-accent-deep));
}

.wcl-about-client-grid > article p:last-child {
  margin-bottom: 0;
}

.wcl-about-trust-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--wcl-line);
  border-radius: 17px;
  background: var(--wcl-white);
}

.wcl-about-trust-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: var(--wcl-white);
  background: linear-gradient(145deg, var(--wcl-accent), var(--wcl-accent-deep));
  font-weight: 900;
}

.wcl-about-trust-grid h3 {
  margin-bottom: 6px;
}

.wcl-about-trust-grid p {
  margin: 0;
  color: var(--wcl-muted);
}

.wcl-about-faq-section {
  max-width: 980px;
  margin-right: auto !important;
  margin-left: auto !important;
}

.wcl-about-final-callout {
  padding: 30px;
  color: rgba(255,255,255,.84);
  border: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(255,255,255,.14), transparent 34%),
    linear-gradient(125deg, var(--wcl-accent-dark), var(--wcl-accent-deep));
  box-shadow: 0 28px 65px rgba(48,8,15,.22);
}

.wcl-about-final-callout h2,
.wcl-about-final-callout .wcl-eyebrow,
.wcl-about-final-callout .wcl-inline-link {
  color: var(--wcl-white);
}

.wcl-about-final-callout .wcl-button-outline {
  border-color: rgba(255,255,255,.42);
  color: var(--wcl-white);
  background: rgba(255,255,255,.07);
}

@media (min-width: 700px) {
  .wcl-about-visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wcl-about-visual-note {
    grid-column: 1 / -1;
  }

  .wcl-about-intro,
  .wcl-about-values-section,
  .wcl-about-trust-section,
  .wcl-about-process-section,
  .wcl-about-final-callout {
    padding: 40px;
  }

  .wcl-about-value-grid,
  .wcl-about-trust-grid,
  .wcl-about-client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .wcl-page-kind-about .wcl-landing-hero-grid {
    grid-template-columns: minmax(0, 1.62fr) minmax(320px, .68fr);
  }

  .wcl-about-visual-grid {
    grid-template-columns: 1.2fr .9fr .9fr;
    align-items: stretch;
  }

  .wcl-about-visual-card.is-large {
    min-height: 390px;
  }

  .wcl-about-visual-card.is-large img {
    min-height: 390px;
  }

  .wcl-about-visual-note {
    grid-column: auto;
    min-height: 390px;
  }

  .wcl-about-story-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
    gap: 46px;
    align-items: stretch;
  }

  .wcl-about-value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .wcl-about-process-section .wcl-process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 699px) {
  .wcl-page-kind-about .wcl-landing-hero {
    min-height: auto;
    padding-bottom: 92px;
  }

  .wcl-about-visual-band {
    margin-top: -44px;
  }

  .wcl-about-visual-card,
  .wcl-about-visual-card img,
  .wcl-about-visual-note {
    min-height: 260px;
  }

  .wcl-about-service-links .wcl-button,
  .wcl-about-final-callout .wcl-button {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wcl-about-visual-card img {
    transition: none;
  }
}


/* Quote page conversion layout (v1.4.0). */
.wcl-page-kind-quote .wcl-landing-hero {
  padding-bottom: 86px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,.15), transparent 28%),
    linear-gradient(108deg, rgba(17,7,9,.98) 0%, rgba(80,8,18,.93) 55%, rgba(126,21,17,.80) 100%);
}

.wcl-page-kind-quote .wcl-landing-hero-copy {
  max-width: 820px;
}

.wcl-page-kind-quote .wcl-landing-hero-card {
  border-color: rgba(255,255,255,.30);
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.07));
}

.wcl-quote-page-body {
  padding: 70px 0 84px;
  background:
    radial-gradient(circle at 8% 8%, var(--wcl-accent-soft), transparent 23%),
    linear-gradient(180deg, var(--wcl-white), var(--wcl-off-white));
}

.wcl-quote-content-wrap,
.wcl-quote-page-content {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

.wcl-quote-page-content > .wcl-content-section,
.wcl-quote-page-content > .wcl-content-callout {
  margin-bottom: 46px;
}

.wcl-quote-intro {
  text-align: center;
  border-left: 1px solid var(--wcl-line);
}

.wcl-quote-intro > p:not(.wcl-eyebrow) {
  max-width: 850px;
  margin-inline: auto;
}

.wcl-quote-confidence-row {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.wcl-quote-confidence-row span {
  display: flex;
  min-height: 54px;
  padding: 13px 16px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid color-mix(in srgb, var(--wcl-accent) 18%, var(--wcl-line));
  border-radius: 14px;
  color: var(--wcl-charcoal);
  background: rgba(255,255,255,.84);
  box-shadow: 0 10px 28px rgba(47,10,15,.06);
}

.wcl-quote-confidence-row strong {
  color: var(--wcl-accent-deep);
}

.wcl-quote-estimate-section {
  scroll-margin-top: 118px;
}

.wcl-quote-form-layout {
  display: grid;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--wcl-accent) 18%, var(--wcl-line));
  border-radius: 28px;
  background: var(--wcl-white);
  box-shadow: 0 28px 80px rgba(45,9,15,.14);
}

.wcl-quote-form-panel {
  min-width: 0;
  padding: 26px 18px 18px;
}

.wcl-quote-form-panel > .wcl-eyebrow,
.wcl-quote-form-panel > h2,
.wcl-quote-form-panel > .wcl-quote-form-lead {
  padding-inline: 6px;
}

.wcl-quote-form-panel > h2 {
  margin-top: 8px;
}

.wcl-quote-form-lead {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--wcl-muted);
}

.wcl-quote-prep-panel {
  padding: 28px 22px;
  color: rgba(255,255,255,.86);
  background:
    radial-gradient(circle at 100% 0, rgba(255,255,255,.12), transparent 30%),
    linear-gradient(155deg, var(--wcl-accent-dark), var(--wcl-accent-deep) 72%, #36060d);
}

.wcl-quote-prep-panel h2,
.wcl-quote-prep-panel .wcl-eyebrow {
  color: var(--wcl-white);
}

.wcl-quote-prep-panel h2 {
  margin: 8px 0 22px;
  font-size: clamp(1.55rem, 5vw, 2rem);
}

.wcl-quote-prep-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wcl-quote-prep-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 15px;
  background: rgba(255,255,255,.07);
}

.wcl-quote-prep-list li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--wcl-accent-deep);
  background: var(--wcl-white);
  font-weight: 900;
}

.wcl-quote-prep-list strong,
.wcl-quote-prep-list small {
  display: block;
}

.wcl-quote-prep-list strong {
  color: var(--wcl-white);
  line-height: 1.35;
}

.wcl-quote-prep-list small {
  margin-top: 3px;
  color: rgba(255,255,255,.70);
  font-size: .82rem;
  line-height: 1.55;
}

.wcl-quote-response-note {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  margin-top: 18px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 15px;
  background: rgba(0,0,0,.17);
}

.wcl-quote-response-note > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--wcl-accent-deep);
  background: var(--wcl-white);
  font-weight: 900;
}

.wcl-quote-response-note p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: .86rem;
}

.wcl-quote-response-note strong {
  color: var(--wcl-white);
}

.wcl-quote-page-content .wcl-quote-form-shell {
  min-height: 760px;
  border-color: var(--wcl-line);
  border-radius: 20px;
  box-shadow: none;
}

.wcl-quote-page-content .wcl-quote-form-shell .wcl-form-frame {
  height: 780px;
  min-height: 780px;
}

.wcl-quote-page-content .wcl-form-fallback {
  flex-wrap: wrap;
  gap: 6px 12px;
  border-top: 1px solid var(--wcl-line);
  color: var(--wcl-muted);
  font-size: .84rem;
}

.wcl-quote-scope-section,
.wcl-quote-faq-section {
  padding: 28px;
}

.wcl-quote-scope-grid .wcl-feature-card {
  min-height: 100%;
}

.wcl-quote-final-note {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: 30px;
}

.wcl-quote-final-note .wcl-eyebrow,
.wcl-quote-final-note h2 {
  color: var(--wcl-white);
}

.wcl-quote-final-note h2 {
  margin: 8px 0 10px;
}

.wcl-quote-final-note p:not(.wcl-eyebrow) {
  margin: 0;
  color: rgba(255,255,255,.76);
}

.wcl-button-light {
  border-color: var(--wcl-white);
  color: var(--wcl-accent-deep);
  background: var(--wcl-white);
}

.wcl-button-light:hover,
.wcl-button-light:focus-visible {
  color: var(--wcl-white);
  background: transparent;
}

@media (min-width: 700px) {
  .wcl-quote-confidence-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wcl-quote-form-panel {
    padding: 36px 30px 28px;
  }

  .wcl-quote-prep-panel {
    padding: 38px 30px;
  }

  .wcl-quote-final-note {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 36px;
  }
}

@media (min-width: 1040px) {
  .wcl-quote-form-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(330px, .72fr);
    align-items: stretch;
  }

  .wcl-quote-prep-panel {
    position: relative;
  }
}

@media (max-width: 699px) {
  .wcl-page-kind-quote .wcl-landing-hero {
    padding-bottom: 72px;
  }

  .wcl-quote-page-body {
    padding: 48px 0 68px;
  }

  .wcl-quote-page-content > .wcl-content-section,
  .wcl-quote-page-content > .wcl-content-callout {
    margin-bottom: 34px;
  }

  .wcl-quote-intro,
  .wcl-quote-scope-section,
  .wcl-quote-faq-section,
  .wcl-quote-final-note {
    padding: 22px;
  }

  .wcl-quote-form-layout {
    border-radius: 22px;
  }

  .wcl-quote-page-content .wcl-quote-form-shell,
  .wcl-quote-page-content .wcl-quote-form-shell .wcl-form-frame {
    min-height: 900px;
    height: 900px;
  }

  .wcl-quote-final-note .wcl-button {
    width: 100%;
    justify-content: center;
  }
}


@media (max-width: 640px) {
  .wcl-business-details-grid {
    grid-template-columns: 1fr;
  }

  .wcl-business-details-grid > .is-wide {
    grid-column: auto;
  }
}

/* Native SEO breadcrumbs used on standard posts and pages. */
.wcl-native-breadcrumbs {
  margin: 0 0 24px;
  color: #64748b;
}

.wcl-native-breadcrumbs a {
  color: var(--wcl-accent-dark, #8a1f2d);
}

.wcl-native-breadcrumbs a:hover,
.wcl-native-breadcrumbs a:focus-visible {
  color: var(--wcl-accent, #b62f43);
}

/* Desktop navigation spacing and page-card text flow repair (v2.4.2). */
@media (min-width: 921px) {
  .wcl-app .wcl-nav-links {
    gap: clamp(9px, 0.85vw, 15px);
  }

  .wcl-app .wcl-nav-links > .menu-item-has-children,
  .wcl-app .wcl-nav-links > .page_item_has_children {
    position: relative;
    overflow: visible;
  }

  .wcl-app .wcl-nav-links > .menu-item-has-children > a,
  .wcl-app .wcl-nav-links > .page_item_has_children > a {
    padding-right: 20px;
  }

  .wcl-app .wcl-nav-links > .menu-item-has-children > .wcl-submenu-toggle,
  .wcl-app .wcl-nav-links > .page_item_has_children > .wcl-submenu-toggle {
    position: absolute;
    top: 50%;
    right: -4px;
    z-index: 2;
    width: 28px;
    height: 44px;
    margin: 0;
    border-radius: 7px;
    transform: translateY(-50%);
  }

  .wcl-app .wcl-nav-links > .menu-item-has-children > .wcl-submenu-toggle span,
  .wcl-app .wcl-nav-links > .page_item_has_children > .wcl-submenu-toggle span {
    font-size: 0.94rem;
    transform: translateY(-1px);
  }

  .wcl-app .wcl-nav-links > .menu-item-has-children.is-submenu-open > .wcl-submenu-toggle span,
  .wcl-app .wcl-nav-links > .page_item_has_children.is-submenu-open > .wcl-submenu-toggle span {
    transform: translateY(1px) rotate(180deg);
  }
}

.wcl-app .wcl-about-trust-grid {
  align-items: stretch;
}

.wcl-app .wcl-about-trust-grid > article {
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) !important;
  grid-auto-flow: row;
  grid-auto-rows: min-content;
  align-content: start;
  min-width: 0;
}

.wcl-app .wcl-about-trust-grid > article > span {
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: start;
}

.wcl-app .wcl-about-trust-grid > article > :not(span) {
  grid-column: 2 !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch;
  overflow-wrap: break-word;
  word-break: normal;
  white-space: normal;
}

.wcl-app .wcl-about-trust-grid > article > div > :first-child,
.wcl-app .wcl-about-trust-grid > article > h3 {
  margin-top: 0;
}

.wcl-app .wcl-about-trust-grid h3,
.wcl-app .wcl-about-trust-grid p {
  width: auto !important;
  max-width: none !important;
  overflow-wrap: break-word;
  word-break: normal;
  white-space: normal;
}

.wcl-app .wcl-content-grid > *,
.wcl-app .wcl-about-value-grid > *,
.wcl-app .wcl-about-client-grid > *,
.wcl-app .wcl-about-story-grid > *,
.wcl-app .wcl-related-page-grid > *,
.wcl-app .wcl-service-area-card-grid > * {
  min-width: 0;
}



/* Quote page sidebar text-flow safeguard (v2.4.3). */
.wcl-app .wcl-quote-form-layout,
.wcl-app .wcl-quote-prep-panel,
.wcl-app .wcl-quote-prep-list,
.wcl-app .wcl-quote-prep-list li,
.wcl-app .wcl-quote-response-note {
  min-width: 0;
}

.wcl-app .wcl-quote-prep-list li {
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
}

.wcl-app .wcl-quote-prep-list li > span,
.wcl-app .wcl-quote-response-note > span {
  align-self: start;
}

.wcl-app .wcl-quote-prep-list li > div,
.wcl-app .wcl-quote-response-note > p {
  min-width: 0 !important;
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch;
  overflow-wrap: break-word;
  word-break: normal;
  white-space: normal;
}

.wcl-app .wcl-quote-prep-list li > div > *,
.wcl-app .wcl-quote-response-note p,
.wcl-app .wcl-quote-response-note strong {
  width: auto !important;
  max-width: none !important;
  overflow-wrap: break-word;
  word-break: normal;
  white-space: normal;
}

.wcl-app .wcl-quote-response-note {
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
}


/* Cross-page icon/copy grid placement and text-flow repair (v2.4.4). */
.wcl-app .wcl-quote-prep-list li,
.wcl-app .wcl-quote-response-note,
.wcl-app .wcl-about-trust-grid > article,
.wcl-app .wcl-process-list > li {
  min-width: 0 !important;
}

.wcl-app .wcl-quote-prep-list li {
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  grid-template-rows: auto !important;
  align-items: start !important;
}

.wcl-app .wcl-quote-prep-list li > span {
  grid-column: 1 !important;
  grid-row: 1 !important;
  min-width: 42px !important;
  max-width: 42px !important;
}

.wcl-app .wcl-quote-prep-list li > div {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: start !important;
  justify-self: stretch !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

.wcl-app .wcl-quote-response-note {
  display: grid !important;
  grid-template-columns: 30px minmax(0, 1fr) !important;
  grid-template-rows: auto !important;
  align-items: start !important;
}

.wcl-app .wcl-quote-response-note > span {
  grid-column: 1 !important;
  grid-row: 1 !important;
  min-width: 28px !important;
  max-width: 28px !important;
}

.wcl-app .wcl-quote-response-note > p,
.wcl-app .wcl-quote-response-note > div {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: start !important;
  justify-self: stretch !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.wcl-app .wcl-process-list > li {
  grid-template-columns: 44px minmax(0, 1fr) !important;
}

.wcl-app .wcl-process-list > li::before {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
}

.wcl-app .wcl-process-list > li > strong {
  grid-column: 2 !important;
  grid-row: 1 !important;
  min-width: 0 !important;
}

.wcl-app .wcl-process-list > li > span {
  grid-column: 2 !important;
  grid-row: 2 !important;
  min-width: 0 !important;
}

.wcl-app .wcl-about-trust-grid > article > span {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
}

.wcl-app .wcl-about-trust-grid > article > h3 {
  grid-column: 2 !important;
  grid-row: 1 !important;
  min-width: 0 !important;
}

.wcl-app .wcl-about-trust-grid > article > p,
.wcl-app .wcl-about-trust-grid > article > div {
  grid-column: 2 !important;
  grid-row: 2 !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

.wcl-app .wcl-trust-item > div,
.wcl-app .wcl-design-feature > div,
.wcl-app .wcl-process-step > div,
.wcl-app .wcl-feature-card,
.wcl-app .wcl-related-page-card,
.wcl-app .wcl-service-area-card,
.wcl-app .wcl-local-card,
.wcl-app .wcl-pricing-card {
  min-width: 0 !important;
}

.wcl-app .wcl-quote-prep-list strong,
.wcl-app .wcl-quote-prep-list small,
.wcl-app .wcl-quote-response-note p,
.wcl-app .wcl-quote-response-note strong,
.wcl-app .wcl-process-list strong,
.wcl-app .wcl-process-list span,
.wcl-app .wcl-about-trust-grid h3,
.wcl-app .wcl-about-trust-grid p,
.wcl-app .wcl-feature-card h3,
.wcl-app .wcl-feature-card p,
.wcl-app .wcl-related-page-card h3,
.wcl-app .wcl-related-page-card p,
.wcl-app .wcl-service-area-card h3,
.wcl-app .wcl-service-area-card p {
  max-width: none !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual !important;
  white-space: normal !important;
}
/* v2.5.0: visible lead form at the top of every managed landing-page hero. */
.wcl-landing-hero-grid{align-items:start}
.wcl-landing-hero-form{align-self:start;width:100%;color:var(--wcl-charcoal)}
.wcl-landing-hero-form .wcl-quote-form-shell{min-height:720px;border:0;border-radius:0;box-shadow:none}
.wcl-landing-hero-form .wcl-form-frame{height:720px;min-height:720px}
.wcl-landing-hero-form .wcl-form-fallback{gap:8px;flex-wrap:wrap;border-top:1px solid var(--wcl-line)}
@media(min-width:980px){.wcl-landing-hero-grid{grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);gap:44px;align-items:start}.wcl-landing-hero-copy{padding-top:34px}}
@media(max-width:699px){.wcl-landing-hero-form .wcl-quote-form-shell,.wcl-landing-hero-form .wcl-form-frame{height:850px;min-height:850px}}



/* Modern Contact page conversion layout (v2.5.4). */
.wcl-page-kind-contact .wcl-landing-hero {
  padding-bottom: 92px;
  background:
    radial-gradient(circle at 14% 12%, rgba(255,255,255,.17), transparent 26%),
    radial-gradient(circle at 88% 82%, rgba(224,43,32,.26), transparent 28%),
    linear-gradient(112deg, #13070a 0%, #4b0a14 48%, #86171a 100%);
}

.wcl-page-kind-contact .wcl-landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.wcl-page-kind-contact .wcl-landing-hero-copy {
  position: relative;
  max-width: 820px;
}

.wcl-page-kind-contact .wcl-landing-hero-form {
  position: relative;
  border-color: rgba(255,255,255,.30);
  background: rgba(255,255,255,.96);
  box-shadow: 0 34px 100px rgba(0,0,0,.34);
}

.wcl-contact-channel-band {
  position: relative;
  z-index: 3;
  margin-top: -44px;
  padding-bottom: 24px;
}

.wcl-contact-channel-grid {
  display: grid;
  gap: 14px;
}

.wcl-contact-channel-card {
  position: relative;
  min-width: 0;
  min-height: 198px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--wcl-accent) 15%, var(--wcl-line));
  border-radius: 24px;
  color: var(--wcl-charcoal);
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 60px rgba(51,9,15,.12);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.wcl-contact-channel-card:hover,
.wcl-contact-channel-card:focus-visible {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--wcl-accent) 52%, transparent);
  box-shadow: 0 30px 74px rgba(51,9,15,.18);
  outline: none;
}

.wcl-contact-channel-card > span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 15px;
  color: var(--wcl-white);
  background: linear-gradient(135deg, var(--wcl-accent-bright), var(--wcl-accent-deep));
  box-shadow: 0 12px 26px color-mix(in srgb, var(--wcl-accent) 28%, transparent);
  font-size: 1.15rem;
  font-weight: 900;
}

.wcl-contact-channel-card small {
  color: var(--wcl-accent-deep);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.wcl-contact-channel-card strong {
  margin: 5px 0 8px;
  color: var(--wcl-black);
  font-family: var(--wcl-font-display);
  font-size: 1.08rem;
  line-height: 1.35;
}

.wcl-contact-channel-card p {
  margin: 0;
  color: var(--wcl-muted);
  font-size: .9rem;
  line-height: 1.6;
}

.wcl-contact-channel-card.is-primary {
  color: var(--wcl-white);
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0, rgba(255,255,255,.16), transparent 32%),
    linear-gradient(145deg, var(--wcl-accent-dark), var(--wcl-accent-deep));
}

.wcl-contact-channel-card.is-primary > span {
  color: var(--wcl-accent-deep);
  background: var(--wcl-white);
}

.wcl-contact-channel-card.is-primary small,
.wcl-contact-channel-card.is-primary strong {
  color: var(--wcl-white);
}

.wcl-contact-channel-card.is-primary p {
  color: rgba(255,255,255,.76);
}

.wcl-contact-page-body {
  padding: 76px 0 90px;
  background:
    radial-gradient(circle at 6% 10%, var(--wcl-accent-soft), transparent 20%),
    linear-gradient(180deg, var(--wcl-white), var(--wcl-off-white));
}

.wcl-contact-content-wrap,
.wcl-contact-page-content {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

.wcl-contact-page-content > .wcl-content-section,
.wcl-contact-page-content > .wcl-content-callout {
  margin-bottom: 46px;
}

.wcl-contact-intro {
  padding: clamp(26px, 5vw, 48px);
  text-align: center;
  border-left: 0;
  border-radius: 30px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 24px 70px rgba(51,9,15,.08);
}

.wcl-contact-intro > p:not(.wcl-eyebrow) {
  max-width: 900px;
  margin-inline: auto;
}

.wcl-contact-confidence-row {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.wcl-contact-confidence-row span {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--wcl-accent) 16%, var(--wcl-line));
  border-radius: 16px;
  color: var(--wcl-muted);
  background: var(--wcl-off-white);
  line-height: 1.45;
}

.wcl-contact-confidence-row strong {
  display: block;
  color: var(--wcl-accent-deep);
}

.wcl-contact-reasons-section,
.wcl-contact-faq-section {
  padding: clamp(24px, 4vw, 40px);
  border-radius: 30px;
}

.wcl-contact-reason-grid .wcl-feature-card {
  min-height: 100%;
}

.wcl-contact-detail-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.wcl-contact-detail-grid article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--wcl-line);
  border-radius: 20px;
  background: var(--wcl-white);
  box-shadow: 0 14px 38px rgba(51,9,15,.06);
}

.wcl-contact-detail-grid article > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 17px;
  color: var(--wcl-white);
  background: linear-gradient(135deg, var(--wcl-accent-bright), var(--wcl-accent-deep));
  font-family: var(--wcl-font-display);
  font-weight: 900;
}

.wcl-contact-detail-grid h3 {
  margin: 1px 0 6px;
}

.wcl-contact-detail-grid p {
  margin: 0;
}

.wcl-contact-process-section {
  padding: clamp(26px, 5vw, 48px);
  border-radius: 32px;
  color: rgba(255,255,255,.82);
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.12), transparent 26%),
    linear-gradient(145deg, #25070c, var(--wcl-accent-deep));
  box-shadow: 0 30px 84px rgba(44,6,12,.24);
}

.wcl-contact-process-section .wcl-eyebrow,
.wcl-contact-process-section h2,
.wcl-contact-process-section .wcl-process-list strong {
  color: var(--wcl-white);
}

.wcl-contact-process-section .wcl-process-list li {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
}

.wcl-contact-process-section .wcl-process-list span {
  color: rgba(255,255,255,.72);
}

.wcl-contact-resources-section {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid color-mix(in srgb, var(--wcl-accent) 18%, var(--wcl-line));
  border-radius: 28px;
  background: var(--wcl-white);
}

.wcl-contact-final-callout {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: clamp(26px, 5vw, 44px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 10%, rgba(255,255,255,.14), transparent 30%),
    linear-gradient(135deg, var(--wcl-accent-dark), var(--wcl-accent-deep));
}

.wcl-contact-final-callout .wcl-eyebrow,
.wcl-contact-final-callout h2 {
  color: var(--wcl-white);
}

.wcl-contact-final-callout p:not(.wcl-eyebrow) {
  margin-bottom: 0;
  color: rgba(255,255,255,.76);
}

@media (min-width: 700px) {
  .wcl-contact-channel-grid,
  .wcl-contact-confidence-row,
  .wcl-contact-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wcl-contact-final-callout {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 1080px) {
  .wcl-contact-channel-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .wcl-contact-confidence-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 699px) {
  .wcl-page-kind-contact .wcl-landing-hero {
    padding-bottom: 76px;
  }

  .wcl-contact-channel-band {
    margin-top: -28px;
  }

  .wcl-contact-page-body {
    padding: 52px 0 70px;
  }

  .wcl-contact-page-content > .wcl-content-section,
  .wcl-contact-page-content > .wcl-content-callout {
    margin-bottom: 34px;
  }

  .wcl-contact-detail-grid article {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 17px;
  }

  .wcl-contact-detail-grid article > span {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: .84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wcl-contact-channel-card {
    transition: none;
  }
}

/* Contact detail-card grid placement and text-flow repair (v2.5.5). */
.wcl-app .wcl-contact-detail-grid,
.wcl-app .wcl-contact-detail-grid > article,
.wcl-app .wcl-contact-detail-grid > article > div {
  min-width: 0;
}

.wcl-app .wcl-contact-detail-grid > article {
  display: grid !important;
  grid-template-columns: 54px minmax(0, 1fr) !important;
  grid-template-rows: auto !important;
  grid-auto-flow: row;
  grid-auto-rows: min-content;
  align-content: start;
  align-items: start !important;
}

.wcl-app .wcl-contact-detail-grid > article > span {
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: start;
  min-width: 54px !important;
  max-width: 54px !important;
}

.wcl-app .wcl-contact-detail-grid > article > div {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: start !important;
  justify-self: stretch !important;
  width: 100% !important;
  max-width: none !important;
}

/* wpautop can add a line break between the inline number badge and the copy wrapper. */
.wcl-app .wcl-contact-detail-grid > article > br {
  display: none !important;
}

.wcl-app .wcl-contact-detail-grid h3,
.wcl-app .wcl-contact-detail-grid p {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual !important;
  white-space: normal !important;
}

@media (max-width: 699px) {
  .wcl-app .wcl-contact-detail-grid > article {
    grid-template-columns: 46px minmax(0, 1fr) !important;
    gap: 13px;
  }

  .wcl-app .wcl-contact-detail-grid > article > span {
    min-width: 46px !important;
    max-width: 46px !important;
  }
}
/* Production SEO/support UI additions. */
.wcl-proof-grid{margin-top:2rem}.wcl-proof-card{overflow:hidden}.wcl-proof-card img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:inherit}.wcl-proof-card .wcl-eyebrow{margin-top:1rem}.wcl-proof-credentials{max-width:820px;margin:2rem auto 0}.wcl-business-contact-card{display:grid;gap:.65rem;padding:clamp(1.25rem,3vw,2rem);border:1px solid rgba(20,20,20,.12);border-radius:1rem;background:#fff}.wcl-business-contact-card address{font-style:normal}.wcl-form-privacy-notice{display:block;font-size:.92rem;line-height:1.65}.wcl-404-search,.wcl-search-refine{max-width:720px;margin:1.5rem 0 2rem}.wcl-404-search .search-form,.wcl-search-refine .search-form{display:flex;gap:.75rem;flex-wrap:wrap}.wcl-404-search .search-field,.wcl-search-refine .search-field{min-width:min(100%,420px);padding:.85rem 1rem;border:1px solid rgba(20,20,20,.2);border-radius:.65rem}.wcl-404-search .search-submit,.wcl-search-refine .search-submit{padding:.85rem 1.2rem;border:0;border-radius:.65rem;cursor:pointer}.wcl-404-link-grid{margin:2rem 0}.wcl-post-card img{width:100%;height:auto;border-radius:.75rem}.wcl-seo-json-preview pre{max-height:420px;overflow:auto;white-space:pre-wrap;word-break:break-word;background:#111827;color:#f9fafb;padding:1rem;border-radius:.5rem}
@media (min-width:1080px){.wcl-contact-channel-grid{grid-template-columns:repeat(auto-fit,minmax(190px,1fr))}}

/* Verified first-party project evidence entered by the site owner. */
.wcl-proof-details {
  display: grid;
  gap: 0.75rem;
  margin: 1.15rem 0 0;
}
.wcl-proof-details > div {
  padding-top: 0.75rem;
  border-top: 1px solid var(--wcl-line);
}
.wcl-proof-details dt {
  color: var(--wcl-charcoal);
  font-weight: 800;
}
.wcl-proof-details dd {
  margin: 0.25rem 0 0;
  color: var(--wcl-muted);
}
.wcl-proof-testimonial {
  margin: 1.15rem 0 0;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--wcl-accent);
  border-radius: var(--wcl-radius-sm);
  background: var(--wcl-cream);
}
.wcl-proof-testimonial p {
  margin: 0;
}
.wcl-proof-testimonial cite {
  display: block;
  margin-top: 0.65rem;
  font-style: normal;
}

/* Managed editorial blog architecture (v2.8.0). */
.wcl-blog-main,.wcl-single-blog{background:linear-gradient(180deg,#fff 0%,var(--wcl-cream,#faf7f2) 100%)}
.wcl-blog-hero{padding:clamp(7rem,12vw,10rem) 0 clamp(3.5rem,7vw,5.5rem);background:radial-gradient(circle at 85% 15%,var(--wcl-accent-soft,#fde9e7),transparent 32%),linear-gradient(135deg,#fff 0%,#faf7f2 100%);border-bottom:1px solid var(--wcl-line,rgba(20,20,20,.12))}.wcl-blog-hero.is-compact{padding-bottom:3.5rem}.wcl-blog-hero h1,.wcl-article-hero h1{max-width:920px;margin:.65rem 0 1rem;font-size:clamp(2.35rem,6vw,4.8rem);line-height:1.02;letter-spacing:-.045em}.wcl-blog-hero-lead{max-width:820px;font-size:clamp(1.05rem,2vw,1.28rem);line-height:1.75;color:var(--wcl-muted,#5f6368)}.wcl-blog-hero-lead p{margin:0}.wcl-blog-category-nav{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:2rem}.wcl-blog-category-nav a{display:inline-flex;align-items:center;gap:.55rem;padding:.72rem 1rem;border:1px solid var(--wcl-line,rgba(20,20,20,.14));border-radius:999px;background:#fff;color:var(--wcl-charcoal,#171717);font-weight:750;text-decoration:none;box-shadow:0 8px 24px rgba(20,20,20,.05)}.wcl-blog-category-nav a:hover{border-color:var(--wcl-accent);transform:translateY(-1px)}.wcl-blog-category-nav span{display:inline-grid;place-items:center;min-width:1.65rem;height:1.65rem;padding:0 .35rem;border-radius:999px;background:var(--wcl-accent-soft,#fde9e7);font-size:.78rem}.wcl-blog-feed,.wcl-related-articles,.wcl-helpful-guides-section{padding:clamp(3.5rem,7vw,6rem) 0}.wcl-blog-feed-heading{display:flex;align-items:end;justify-content:space-between;gap:1.5rem;margin-bottom:2rem}.wcl-blog-feed-heading h2{max-width:760px;margin:.35rem 0 0;font-size:clamp(1.8rem,4vw,3rem);line-height:1.12}.wcl-blog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(1rem,2.2vw,1.65rem)}.wcl-blog-card{min-width:0;overflow:hidden;border:1px solid var(--wcl-line,rgba(20,20,20,.12));border-radius:1.15rem;background:#fff;box-shadow:0 16px 45px rgba(20,20,20,.07);transition:transform .2s ease,box-shadow .2s ease}.wcl-blog-card:hover{transform:translateY(-4px);box-shadow:0 22px 55px rgba(20,20,20,.11)}.wcl-blog-card-image{display:block;aspect-ratio:16/9;overflow:hidden;background:var(--wcl-cream,#faf7f2)}.wcl-blog-card-image img{width:100%;height:100%;object-fit:cover}.wcl-blog-card-body{display:flex;flex-direction:column;height:100%;padding:clamp(1.15rem,2.6vw,1.6rem)}.wcl-blog-card-kicker{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:.65rem;margin-bottom:.8rem;color:var(--wcl-muted,#5f6368);font-size:.78rem;font-weight:800;letter-spacing:.045em;text-transform:uppercase}.wcl-blog-card-kicker a{color:var(--wcl-accent-dark);text-decoration:none}.wcl-blog-card h2,.wcl-blog-card h3{margin:0 0 .8rem;font-size:clamp(1.28rem,2.2vw,1.62rem);line-height:1.2;letter-spacing:-.025em}.wcl-blog-card h2 a,.wcl-blog-card h3 a{color:var(--wcl-charcoal,#171717);text-decoration:none}.wcl-blog-card p{margin:0 0 1.1rem;color:var(--wcl-muted,#5f6368);line-height:1.7}.wcl-blog-card .wcl-inline-link{margin-top:auto}.wcl-blog-empty{padding:2rem;border:1px dashed var(--wcl-line,rgba(20,20,20,.2));border-radius:1rem;background:#fff}.wcl-pagination{display:flex;flex-wrap:wrap;gap:.55rem;margin-top:2.5rem}.wcl-pagination .nav-links{display:flex;flex-wrap:wrap;gap:.55rem}.wcl-pagination .page-numbers{display:inline-grid;place-items:center;min-width:2.7rem;height:2.7rem;padding:0 .8rem;border:1px solid var(--wcl-line,rgba(20,20,20,.15));border-radius:.65rem;background:#fff;text-decoration:none}.wcl-pagination .current{background:var(--wcl-accent);color:#fff;border-color:var(--wcl-accent)}
.wcl-article-hero{padding:clamp(7rem,12vw,10rem) 0 clamp(2.5rem,5vw,4rem);background:radial-gradient(circle at 80% 20%,var(--wcl-accent-soft,#fde9e7),transparent 32%),#fff;border-bottom:1px solid var(--wcl-line,rgba(20,20,20,.12))}.wcl-article-hero-inner{max-width:980px}.wcl-article-category{display:inline-flex;margin-top:1.3rem;padding:.55rem .85rem;border-radius:999px;background:var(--wcl-accent-soft,#fde9e7);color:var(--wcl-accent-dark);font-size:.82rem;font-weight:850;text-decoration:none}.wcl-article-meta{display:flex;flex-wrap:wrap;gap:.7rem 1.3rem;color:var(--wcl-muted,#5f6368);font-size:.92rem}.wcl-article-layout{display:grid;grid-template-columns:minmax(0,760px) minmax(260px,340px);gap:clamp(2rem,5vw,5rem);align-items:start;padding-top:clamp(2.5rem,6vw,5rem);padding-bottom:clamp(3.5rem,7vw,6rem)}.wcl-article-featured{margin:0 0 2rem;overflow:hidden;border-radius:1.15rem}.wcl-article-featured img{width:100%;height:auto}.wcl-article-content{font-size:1.06rem;line-height:1.82}.wcl-article-content h2{margin:2.6rem 0 1rem;font-size:clamp(1.6rem,3vw,2.25rem);line-height:1.18;letter-spacing:-.025em}.wcl-article-content h3{margin:2rem 0 .65rem;font-size:1.28rem}.wcl-article-content ul,.wcl-article-content ol{display:grid;gap:.75rem;margin:1rem 0 1.5rem;padding-left:1.35rem}.wcl-article-content li{padding-left:.25rem}.wcl-article-content a{font-weight:750;text-underline-offset:.16em}.wcl-article-sidebar{position:sticky;top:7.5rem;display:grid;gap:1rem}.wcl-article-cta{margin-top:3rem;padding:clamp(1.5rem,4vw,2.35rem);border-radius:1.15rem;background:linear-gradient(135deg,var(--wcl-accent-deep,#7e1511),var(--wcl-accent,#e02b20));color:#fff;box-shadow:0 20px 55px rgba(126,21,17,.2)}.wcl-article-cta h2{margin:.4rem 0 .8rem;color:#fff}.wcl-article-cta p{max-width:660px}.wcl-author-box{display:grid;grid-template-columns:auto 1fr;gap:1.1rem;margin-top:2rem;padding:1.4rem;border:1px solid var(--wcl-line,rgba(20,20,20,.12));border-radius:1rem;background:#fff}.wcl-author-box img{border-radius:999px}.wcl-author-box h2{margin:.2rem 0 .5rem;font-size:1.35rem}.wcl-author-box p{margin:0;color:var(--wcl-muted,#5f6368);line-height:1.65}.wcl-related-articles{background:#fff;border-top:1px solid var(--wcl-line,rgba(20,20,20,.1));border-bottom:1px solid var(--wcl-line,rgba(20,20,20,.1))}.wcl-article-navigation{padding-top:2rem;padding-bottom:3rem}.wcl-article-navigation .nav-links{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}.wcl-article-navigation a{display:block;padding:1rem;border:1px solid var(--wcl-line,rgba(20,20,20,.12));border-radius:.85rem;background:#fff;text-decoration:none}.wcl-helpful-guides-section{background:linear-gradient(180deg,#fff,var(--wcl-cream,#faf7f2));border-top:1px solid var(--wcl-line,rgba(20,20,20,.1))}.wcl-helpful-guides-all{text-align:center;margin:2rem 0 0}
@media(max-width:980px){.wcl-blog-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.wcl-article-layout{grid-template-columns:1fr}.wcl-article-sidebar{position:static;grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:699px){.wcl-blog-hero,.wcl-article-hero{padding-top:6.5rem}.wcl-blog-feed-heading{align-items:flex-start;flex-direction:column}.wcl-blog-grid,.wcl-article-sidebar,.wcl-article-navigation .nav-links{grid-template-columns:1fr}.wcl-blog-category-nav{display:grid}.wcl-blog-category-nav a{justify-content:space-between}.wcl-author-box{grid-template-columns:1fr}.wcl-article-content{font-size:1rem}}
@media(prefers-reduced-motion:reduce){.wcl-blog-card,.wcl-blog-category-nav a{transition:none}.wcl-blog-card:hover,.wcl-blog-category-nav a:hover{transform:none}}
.wcl-blog-hub-content{padding:clamp(3.5rem,7vw,6rem) 0;background:#fff;border-bottom:1px solid var(--wcl-line,rgba(20,20,20,.1))}.wcl-blog-hub-layout{display:grid;grid-template-columns:minmax(0,760px) minmax(260px,340px);gap:clamp(2rem,5vw,5rem);align-items:start}.wcl-blog-hub-copy{font-size:1.04rem;line-height:1.8}.wcl-blog-hub-copy h2{margin:2.3rem 0 .85rem;font-size:clamp(1.55rem,3vw,2.2rem);line-height:1.2}.wcl-blog-hub-copy h2:first-child{margin-top:0}.wcl-blog-hub-layout>.wcl-sidebar-card{position:sticky;top:7.5rem}@media(max-width:980px){.wcl-blog-hub-layout{grid-template-columns:1fr}.wcl-blog-hub-layout>.wcl-sidebar-card{position:static}}

.wcl-gallery-evidence-note {
	max-width: 780px;
	margin: 0.75rem auto 1.5rem;
	color: var(--wcl-muted);
	font-size: 0.92rem;
	line-height: 1.6;
	text-align: center;
}

/* Homepage layout stabilization v2.9.1.
 * The original-content homepage uses a simple image grid, not the interactive
 * carousel component. Keep those classes isolated and constrain all homepage
 * media so images cannot create oversized/tall sections on narrow screens.
 */
.wcl-home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: 2rem;
  align-items: stretch;
}

.wcl-home-gallery-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--wcl-line);
  border-radius: 22px;
  background: #171114;
  box-shadow: var(--wcl-shadow-soft);
}

.wcl-home-gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

#wcl-main-content .wcl-split-media {
  min-height: 0;
}

#wcl-main-content .wcl-split-media img {
  width: 100%;
  height: auto;
  max-height: 460px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 920px) {
  .wcl-home-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #wcl-main-content .wcl-split-media img {
    max-height: 380px;
  }
}

@media (max-width: 640px) {
  .wcl-home-gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wcl-home-gallery-card {
    aspect-ratio: 16 / 10;
    max-height: 320px;
  }

  #wcl-main-content .wcl-split-media::before {
    inset: 14px -6px -8px 14px;
    border-radius: 20px;
  }

  #wcl-main-content .wcl-split-media img {
    max-height: 320px;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
  }
}
@media (min-width: 700px) {
  .wcl-content-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .wcl-content-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* Contact Us photo/layout repair (v2.9.3). */
.wcl-contact-info-section {
  overflow: hidden;
}

.wcl-contact-info-grid {
  align-items: center;
}

.wcl-contact-photo {
  position: relative;
  width: 100%;
  min-width: 0;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.10);
  border-radius: 26px;
  background: #ece7e2;
  box-shadow: 0 24px 64px rgba(52, 18, 18, 0.16);
}

.wcl-contact-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

#wcl-main-content .wcl-contact-photo img,
#wcl-main-content .wcl-contact-photo .wcl-contact-photo-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100% !important;
  max-width: none;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 920px) {
  .wcl-contact-info-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .wcl-contact-photo {
    width: min(100%, 760px);
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .wcl-contact-info-grid {
    gap: 26px;
  }

  .wcl-contact-photo {
    aspect-ratio: 16 / 10;
    border-radius: 20px;
  }
}
