:root {
        --bg-creme: #f6f3ec;
        --bg-paper: #ffffff;
        --ink: #1a1a1a;
        --ink-soft: #3a3a38;
        --ink-mute: #6b6a64;
        --rule: #e6e1d6;
        --accent: #5d8aa8;
        --accent-soft: #dde7ef;
        --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
        --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
        --container: 1180px;
        --radius: 14px;
        --shadow-soft: 0 1px 2px rgba(20, 20, 20, 0.04), 0 6px 24px rgba(20, 20, 20, 0.04);
      }

      * {
        box-sizing: border-box;
      }
      html,
      body {
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
      }
      body {
        font-family: var(--sans);
        font-size: 17px;
        line-height: 1.65;
        color: var(--ink);
        background: var(--bg-creme);
        font-feature-settings: 'ss01', 'ss02', 'cv11';
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }

      a {
        color: inherit;
        text-decoration: none;
        border-bottom: 1px solid var(--rule);
        transition: border-color 0.2s ease;
      }
      a:hover {
        border-color: var(--accent);
      }

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

      /* === LOGO CONTAINERS === */
      .lvo-h img {
        height: 32px;
        width: auto;
        display: block;
      }
      .lvo-hero img {
        height: 60px;
        width: auto;
        display: block;
      }
      .lvo-mark img {
        height: 56px;
        width: auto;
        display: block;
      }
      .lvo-addon img {
        height: 32px;
        width: auto;
        display: block;
      }
      .lvo-footer img {
        height: 22px;
        width: auto;
        display: block;
        opacity: 0.92;
      }

      .lg-light img {
        height: 24px;
        width: auto;
        display: block;
      }
      .lg-mark img {
        height: 28px;
        width: auto;
        display: block;
      }
      .lg-reach img {
        height: 28px;
        width: auto;
        display: block;
      }
      .lg-footer img {
        height: 22px;
        width: auto;
        display: block;
        opacity: 0.92;
      }

      .lg-on-dark img {
        height: 26px;
        width: auto;
        display: block;
      }
      .lbj-shield-dark img {
        height: 56px;
        width: auto;
        display: block;
      }

      .partners-strip {
        display: flex;
        align-items: center;
        gap: 18px;
      }
      .partners-strip .ps-sep {
        width: 1px;
        height: 18px;
        background: var(--rule);
      }
      .topbar-tag {
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--ink-mute);
        font-weight: 500;
      }

      .container {
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 32px;
      }

      /* === TOPBAR === */
      .topbar {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: saturate(140%) blur(8px);
        -webkit-backdrop-filter: saturate(140%) blur(8px);
        border-bottom: 1px solid var(--rule);
      }
      .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 16px 32px;
        max-width: var(--container);
        margin: 0 auto;
      }
      .topbar-inner > * {
        border-bottom: none;
      }

      /* === HERO === */
      .hero {
        padding: 88px 0 120px;
        background: var(--bg-creme);
      }
      .hero-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 64px;
        align-items: center;
      }
      .hero-lockup {
        margin-bottom: 32px;
      }
      .eyebrow {
        font-size: 11px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--accent);
        font-weight: 600;
        margin-bottom: 28px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
      }
      .eyebrow::before {
        content: '';
        width: 28px;
        height: 1px;
        background: var(--accent);
        display: inline-block;
      }
      .eyebrow.center {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
      }
      .hero h1 {
        font-family: var(--serif);
        font-weight: 400;
        font-size: clamp(40px, 6.2vw, 72px);
        line-height: 1.05;
        letter-spacing: -0.025em;
        margin: 0 0 24px;
        color: var(--ink);
      }
      .hero h1 em {
        font-style: italic;
        font-weight: 400;
        color: var(--accent);
      }
      .hero-sub {
        font-family: var(--serif);
        font-size: clamp(20px, 2.1vw, 24px);
        font-weight: 300;
        font-style: italic;
        color: var(--ink-soft);
        line-height: 1.45;
        margin: 0 0 28px;
        letter-spacing: -0.005em;
        max-width: 560px;
      }
      .hero-lead {
        font-size: 17px;
        line-height: 1.7;
        color: var(--ink-soft);
        max-width: 560px;
        margin: 0 0 36px;
      }
      .hero-ctas {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-bottom: 56px;
      }
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 15px 26px;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.02em;
        border-radius: var(--radius);
        text-decoration: none;
        border: 1px solid transparent;
      }
      .btn-primary {
        background: var(--ink);
        color: var(--bg-paper);
        border-color: var(--ink);
      }
      .btn-primary:hover {
        background: var(--accent);
        border-color: var(--accent);
      }
      .btn-ghost {
        background: transparent;
        color: var(--ink);
        border-color: var(--ink);
      }
      .btn-ghost:hover {
        background: var(--ink);
        color: var(--bg-paper);
      }

      .hero-arch {
        margin-top: 12px;
        padding-top: 24px;
        border-top: 1px solid var(--rule);
        display: flex;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
      }
      .hero-arch .ha-label {
        font-size: 10.5px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--ink-mute);
        font-weight: 600;
      }
      .hero-arch .ha-sep {
        width: 1px;
        height: 28px;
        background: var(--rule);
      }

      .hero-figure {
        position: relative;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow-soft);
        border: 1px solid var(--rule);
        aspect-ratio: 4/5;
      }
      .hero-figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      .hero-caption {
        font-size: 12px;
        color: var(--ink-mute);
        margin-top: 14px;
        letter-spacing: 0.02em;
        font-style: italic;
      }

      /* === SECTIONS === */
      section {
        padding: 96px 0;
      }
      .section-creme {
        background: var(--bg-creme);
      }
      .section-paper {
        background: var(--bg-paper);
      }
      .section-dark {
        background: var(--ink);
        color: #e9e8e2;
      }
      .section-dark .eyebrow {
        color: #9fb8c8;
      }
      .section-dark h2 {
        color: #fff;
      }
      .section-dark p {
        color: #cfcdc4;
      }
      .section-dark a {
        color: #cfcdc4;
        border-color: #3a3a38;
      }
      .section-dark .abr-caption {
        color: #9fb8c8;
      }

      .section-header {
        max-width: 780px;
        margin: 0 auto 56px;
        text-align: center;
      }
      .section-header h2 {
        font-family: var(--serif);
        font-weight: 400;
        font-size: clamp(28px, 4vw, 44px);
        line-height: 1.15;
        letter-spacing: -0.02em;
        margin: 14px 0 18px;
        color: var(--ink);
      }
      .section-header p {
        font-size: 17px;
        color: var(--ink-soft);
        line-height: 1.7;
        margin: 0;
      }

      .intro {
        max-width: 820px;
        margin: 0 auto;
      }
      .intro p {
        font-family: var(--serif);
        font-size: clamp(19px, 2vw, 22px);
        font-weight: 300;
        line-height: 1.65;
        color: var(--ink-soft);
        margin: 0 0 26px;
        letter-spacing: -0.005em;
      }
      .intro p strong {
        font-weight: 500;
        color: var(--ink);
      }

      /* === CARDS === */
      .cards-2x2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }
      .card {
        background: var(--bg-paper);
        border: 1px solid var(--rule);
        border-radius: var(--radius);
        padding: 32px;
        box-shadow: var(--shadow-soft);
      }
      .card .card-num {
        font-family: var(--serif);
        font-style: italic;
        font-size: 14px;
        color: var(--accent);
        margin-bottom: 14px;
        font-weight: 500;
      }
      .card h3 {
        font-family: var(--serif);
        font-weight: 500;
        font-size: 24px;
        line-height: 1.25;
        letter-spacing: -0.015em;
        margin: 0 0 14px;
        color: var(--ink);
      }
      .card p {
        font-size: 15.5px;
        line-height: 1.65;
        color: var(--ink-soft);
        margin: 0 0 18px;
      }
      .source-chip {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 11.5px;
        letter-spacing: 0.04em;
        color: var(--ink-mute);
        padding: 6px 11px;
        background: var(--bg-creme);
        border: 1px solid var(--rule);
        border-radius: 99px;
        font-weight: 500;
        border-bottom: 1px solid var(--rule);
      }
      .source-chip::before {
        content: '↗';
        font-size: 10px;
        color: var(--accent);
      }

      /* === HYDRATION === */
      .hyd-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        margin-top: 48px;
      }
      .hyd-col {
        background: var(--bg-paper);
        border: 1px solid var(--rule);
        border-radius: var(--radius);
        padding: 38px;
        box-shadow: var(--shadow-soft);
      }
      .hyd-col.muted {
        background: #efeae0;
      }
      .hyd-col h3 {
        font-family: var(--serif);
        font-weight: 500;
        font-size: 24px;
        margin: 0 0 22px;
        color: var(--ink);
        letter-spacing: -0.01em;
        line-height: 1.3;
      }
      .hyd-col ul {
        list-style: none;
        margin: 0;
        padding: 0;
      }
      .hyd-col ul li {
        font-size: 15.5px;
        line-height: 1.65;
        color: var(--ink-soft);
        padding: 11px 0 11px 24px;
        position: relative;
        border-top: 1px solid var(--rule);
      }
      .hyd-col ul li:first-child {
        border-top: none;
      }
      .hyd-col ul li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 18px;
        width: 10px;
        height: 1px;
        background: var(--accent);
      }
      .hyd-disclaimer {
        text-align: center;
        font-size: 12.5px;
        color: var(--ink-mute);
        font-style: italic;
        margin-top: 28px;
        letter-spacing: 0.01em;
      }
      .hyd-source-mini {
        margin-top: 20px;
        font-size: 12.5px;
        color: var(--ink-mute);
        font-style: italic;
        line-height: 1.55;
      }

      /* === INSTALLATION === */
      .install-lead {
        font-family: var(--serif);
        font-size: clamp(20px, 2vw, 24px);
        color: var(--ink-soft);
        font-weight: 300;
        font-style: italic;
        max-width: 760px;
        margin: 0 auto 48px;
        text-align: center;
        line-height: 1.5;
      }
      .zones {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
      }
      .zone {
        background: var(--bg-paper);
        border: 1px solid var(--rule);
        border-radius: var(--radius);
        padding: 30px;
        box-shadow: var(--shadow-soft);
      }
      .zone-label {
        font-size: 11px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--accent);
        font-weight: 600;
        margin-bottom: 10px;
      }
      .zone h4 {
        font-family: var(--serif);
        font-weight: 500;
        font-size: 20px;
        margin: 0 0 12px;
        letter-spacing: -0.01em;
        color: var(--ink);
      }
      .zone p {
        font-size: 15px;
        line-height: 1.6;
        color: var(--ink-soft);
        margin: 0;
      }

      .setup-figure {
        margin-top: 56px;
        border-radius: var(--radius);
        overflow: hidden;
        border: 1px solid var(--rule);
        box-shadow: var(--shadow-soft);
      }
      .setup-figure img {
        width: 100%;
        height: auto;
        display: block;
      }
      .setup-caption {
        font-size: 13px;
        color: var(--ink-mute);
        margin-top: 14px;
        text-align: center;
        font-style: italic;
        letter-spacing: 0.01em;
      }

      /* === MARKEN-ARCHITEKTUR-BLOCK === */
      .mark-arch {
        margin: 56px auto 0;
        padding: 36px 32px;
        border: 1px solid var(--rule);
        border-radius: var(--radius);
        background: #efeae0;
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 48px;
        align-items: center;
      }
      .mark-arch .ma-primary {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding-right: 40px;
        border-right: 1px solid var(--rule);
      }
      .mark-arch .ma-label {
        font-size: 10.5px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--ink-mute);
        font-weight: 600;
      }
      .mark-arch .ma-note {
        font-size: 13.5px;
        line-height: 1.55;
        color: var(--ink-soft);
        font-style: italic;
        max-width: 360px;
      }
      .mark-arch .ma-secondary {
        display: flex;
        align-items: center;
        gap: 36px;
        justify-content: center;
      }
      .mark-arch .ma-secondary .ma-col {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      /* === STATS === */
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 0;
        border-top: 1px solid var(--rule);
        border-bottom: 1px solid var(--rule);
        margin-top: 32px;
      }
      .stat {
        padding: 36px 18px;
        text-align: center;
        border-right: 1px solid var(--rule);
      }
      .stat:last-child {
        border-right: none;
      }
      .stat .num {
        font-family: var(--serif);
        font-weight: 400;
        font-size: clamp(26px, 2.6vw, 34px);
        letter-spacing: -0.015em;
        color: var(--ink);
        line-height: 1.1;
        display: block;
        margin-bottom: 8px;
      }
      .stat .label {
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--ink-mute);
        font-weight: 500;
        line-height: 1.3;
        display: block;
      }
      .stats-note {
        margin-top: 32px;
        text-align: center;
        font-size: 12.5px;
        color: var(--ink-mute);
        font-style: italic;
        padding: 18px 22px;
        background: rgba(93, 138, 168, 0.06);
        border-left: 2px solid var(--accent);
        border-radius: 6px;
        max-width: 780px;
        margin-left: auto;
        margin-right: auto;
      }

      /* === REACH === */
      .reach-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }
      .reach-card {
        background: var(--bg-paper);
        border: 1px solid var(--rule);
        border-radius: var(--radius);
        padding: 32px;
        box-shadow: var(--shadow-soft);
      }
      .reach-card-head {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 14px;
        padding-bottom: 22px;
        border-bottom: 1px solid var(--rule);
      }
      .reach-card-head .rch-col {
        display: flex;
        flex-direction: column;
        gap: 2px;
      }
      .reach-card-head h3 {
        font-family: var(--serif);
        font-weight: 500;
        font-size: 24px;
        margin: 0;
        letter-spacing: -0.015em;
      }
      .reach-card-head .reach-sub {
        font-size: 13px;
        color: var(--ink-mute);
        font-style: italic;
      }
      .reach-list {
        list-style: none;
        margin: 0;
        padding: 0;
      }
      .reach-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 0;
        border-top: 1px solid var(--rule);
        font-size: 14.5px;
      }
      .reach-list li:first-child {
        border-top: none;
      }
      .reach-list .reach-label {
        font-weight: 500;
        color: var(--ink);
      }
      .reach-list .reach-handle {
        font-size: 12.5px;
        color: var(--ink-mute);
        font-feature-settings: 'tnum';
      }
      .reach-list .reach-fol {
        color: var(--accent);
        font-weight: 500;
        font-size: 12.5px;
        font-feature-settings: 'tnum';
      }

      /* === COMMUNITY === */
      .community {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 48px;
      }
      .community-card {
        border: 1px solid var(--rule);
        border-radius: var(--radius);
        padding: 32px;
        background: var(--bg-paper);
        box-shadow: var(--shadow-soft);
      }
      .community-card .big {
        font-family: var(--serif);
        font-weight: 400;
        font-size: clamp(32px, 3.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--ink);
        line-height: 1.05;
        margin-bottom: 10px;
        display: block;
      }
      .community-card .small {
        font-size: 13px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--accent);
        font-weight: 600;
        margin-bottom: 14px;
        display: block;
      }
      .community-card p {
        font-size: 14.5px;
        line-height: 1.6;
        color: var(--ink-soft);
        margin: 0;
      }
      .community-note {
        text-align: center;
        font-size: 12.5px;
        color: var(--ink-mute);
        margin-top: 28px;
        font-style: italic;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        padding: 18px 22px;
        background: rgba(93, 138, 168, 0.06);
        border-left: 2px solid var(--accent);
        border-radius: 6px;
      }

      /* === ADD-ON === */
      .addon-grid {
        display: grid;
        grid-template-columns: 0.95fr 1.05fr;
        gap: 48px;
        align-items: center;
      }
      .addon-figure {
        border-radius: var(--radius);
        overflow: hidden;
        border: 1px solid #2a2a28;
        aspect-ratio: 4/3;
      }
      .addon-figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      .addon-text p {
        color: #cfcdc4;
        margin-bottom: 18px;
        font-size: 16px;
        line-height: 1.65;
      }
      .addon-text h2 {
        color: #fff;
        font-family: var(--serif);
        font-weight: 400;
        font-size: clamp(28px, 3.6vw, 42px);
        line-height: 1.2;
        letter-spacing: -0.02em;
        margin: 14px 0 22px;
      }
      .addon-text h2 em {
        font-style: italic;
        color: #9fb8c8;
      }
      .addon-text ul {
        list-style: none;
        margin: 24px 0 0;
        padding: 0;
      }
      .addon-text ul li {
        padding: 14px 0 14px 22px;
        border-top: 1px solid #2a2a28;
        font-size: 15px;
        color: #cfcdc4;
        position: relative;
        line-height: 1.55;
      }
      .addon-text ul li:first-child {
        border-top: none;
      }
      .addon-text ul li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 22px;
        width: 10px;
        height: 1px;
        background: #9fb8c8;
      }
      .addon-caption {
        font-size: 12.5px;
        color: #9fb8c8;
        font-style: italic;
        margin-top: 24px;
        letter-spacing: 0.01em;
      }

      .addon-arch {
        margin-top: 48px;
        padding-top: 32px;
        border-top: 1px solid #2a2a28;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 48px;
        align-items: center;
      }
      .addon-arch .aa-primary {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding-right: 36px;
        border-right: 1px solid #2a2a28;
      }
      .addon-arch .aa-label {
        font-size: 10.5px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: #9fb8c8;
        font-weight: 600;
      }
      .addon-arch .aa-note {
        font-size: 13.5px;
        line-height: 1.55;
        color: #cfcdc4;
        font-style: italic;
        max-width: 360px;
      }
      .addon-arch .aa-secondary {
        display: flex;
        align-items: center;
        gap: 36px;
        justify-content: center;
      }
      .addon-arch .aa-secondary .aa-col {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
      }
      .abr-caption {
        font-size: 12px;
        color: #9fb8c8;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        font-weight: 500;
        display: block;
      }

      /* === CTA === */
      .cta-section {
        padding: 120px 0;
        background: var(--ink);
        color: #e9e8e2;
        text-align: center;
      }
      .cta-section h2 {
        font-family: var(--serif);
        font-weight: 400;
        font-size: clamp(28px, 3.6vw, 42px);
        line-height: 1.2;
        letter-spacing: -0.02em;
        margin: 16px auto 24px;
        color: #fff;
        max-width: 760px;
      }
      .cta-section p.lede {
        font-size: 17px;
        color: #cfcdc4;
        max-width: 620px;
        margin: 0 auto 48px;
        line-height: 1.7;
      }
      .contact-box {
        max-width: 520px;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid #2a2a28;
        border-radius: var(--radius);
        padding: 36px 32px;
      }
      .contact-box .name {
        font-family: var(--serif);
        font-weight: 500;
        font-size: 22px;
        color: #fff;
        letter-spacing: -0.01em;
        margin-bottom: 6px;
      }
      .contact-box .role {
        font-size: 13px;
        color: #9fb8c8;
        letter-spacing: 0.04em;
        margin-bottom: 22px;
      }
      .contact-box .line {
        font-size: 15px;
        color: #e9e8e2;
        padding: 12px 0;
        border-top: 1px solid #2a2a28;
        font-feature-settings: 'tnum';
      }
      .contact-box .line:first-of-type {
        border-top: none;
      }
      .contact-box a {
        color: #e9e8e2;
        border-color: #3a3a38;
      }
      .contact-box a:hover {
        border-color: #9fb8c8;
        color: #fff;
      }

      /* === FOOTER === */
      footer {
        background: var(--bg-creme);
        padding: 48px 0;
        border-top: 1px solid var(--rule);
      }
      .footer-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
      }
      .footer-marks {
        display: flex;
        align-items: center;
        gap: 18px;
      }
      .footer-marks .fm-sep {
        width: 1px;
        height: 18px;
        background: var(--rule);
      }
      .footer-meta {
        font-size: 12px;
        color: var(--ink-mute);
        letter-spacing: 0.02em;
        line-height: 1.6;
        text-align: right;
      }
      .footer-meta p {
        margin: 0;
      }

      /* === RESPONSIVE === */
      @media (max-width: 1024px) {
        section {
          padding: 72px 0;
        }
        .hero {
          padding: 64px 0 88px;
        }
        .hero-grid {
          grid-template-columns: 1fr;
          gap: 48px;
        }
        .hero-figure {
          aspect-ratio: 16/10;
          order: -1;
        }
        .cards-2x2,
        .hyd-grid,
        .zones,
        .reach-grid {
          grid-template-columns: 1fr;
        }
        .stats-grid {
          grid-template-columns: repeat(3, 1fr);
        }
        .stat:nth-child(3) {
          border-right: none;
        }
        .stat:nth-child(4) {
          border-top: 1px solid var(--rule);
        }
        .community {
          grid-template-columns: 1fr;
        }
        .addon-grid,
        .mark-arch,
        .addon-arch {
          grid-template-columns: 1fr;
          gap: 32px;
        }
        .mark-arch .ma-primary,
        .addon-arch .aa-primary {
          padding-right: 0;
          border-right: none;
          border-bottom: 1px solid var(--rule);
          padding-bottom: 32px;
        }
        .mark-arch .ma-secondary,
        .addon-arch .aa-secondary {
          justify-content: flex-start;
        }
        .addon-figure {
          aspect-ratio: 16/9;
        }
        .footer-row {
          flex-direction: column;
          text-align: center;
        }
        .footer-meta {
          text-align: center;
        }
        .footer-marks {
          justify-content: center;
        }
      }
      @media (max-width: 640px) {
        .container {
          padding: 0 22px;
        }
        .topbar-inner {
          padding: 12px 22px;
          gap: 14px;
        }
        .topbar-tag {
          display: none;
        }
        section {
          padding: 56px 0;
        }
        .hero {
          padding: 48px 0 64px;
        }
        .hero h1 {
          font-size: 40px;
          line-height: 1.08;
        }
        .hero-sub {
          font-size: 18px;
        }
        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .stat {
          border-right: 1px solid var(--rule) !important;
        }
        .stat:nth-child(2n) {
          border-right: none !important;
        }
        .stat:nth-child(n + 3) {
          border-top: 1px solid var(--rule);
        }
        .card,
        .reach-card,
        .zone,
        .hyd-col,
        .community-card {
          padding: 24px;
        }
        .cta-section {
          padding: 80px 0;
        }
        .contact-box {
          padding: 28px 22px;
        }
      }
