:root {
  --color-background: #f8f7f2;
  --color-background-soft: #f2f4ee;
  --color-surface: #ffffff;
  --color-text-primary: #173a35;
  --color-text-secondary: #60716c;
  --color-leaflink-teal: #129b91;
  --color-leaflink-deep-teal: #0d625c;
  --color-gold: #a9863f;
  --color-gold-soft: #e7ddc4;
  --color-earth-green: #355e3b;
  --color-navy: #172e49;
  --color-border: #d9e0d9;
  --color-shadow: rgba(20, 55, 49, .1);
  --font-display: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --font-body: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { margin: 0; overflow-x: clip; background: var(--color-background); color: var(--color-text-primary); font-family: var(--font-body); font-size: 17px; line-height: 1.68; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; letter-spacing: -.03em; line-height: 1.03; }
h1 { font-size: clamp(3.6rem, 7.2vw, 6.4rem); max-width: 13ch; }
h2 { font-size: clamp(2.7rem, 5vw, 4.5rem); max-width: 18ch; }
h3 { font-size: clamp(1.65rem, 2.5vw, 2.2rem); }
p { color: var(--color-text-secondary); max-width: 68ch; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--color-gold); outline-offset: 4px; }

.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; background: var(--color-text-primary); color: #fff; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(1280px, calc(100% - 96px)); margin-inline: auto; }
.narrow { max-width: 820px; }
.centered { text-align: center; margin-inline: auto; }
.centered h1, .centered h2, .centered p, .centered .eyebrow { margin-inline: auto; }
.section { padding: clamp(88px, 10vw, 144px) 0; position: relative; overflow: hidden; }
.section-heading { margin-bottom: 64px; }
.section-heading > p:not(.eyebrow) { font-size: 1.14rem; max-width: 62ch; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--color-leaflink-deep-teal); font-size: .77rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 24px; }
.centered .eyebrow { justify-content: center; }
.eyebrow span { width: 34px; height: 1px; background: var(--color-gold); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 22px; border: 1px solid var(--color-leaflink-teal); border-radius: 6px; background: var(--color-leaflink-teal); color: #fff; font-weight: 650; transition: background .18s ease, border-color .18s ease, transform .18s ease; }
.button:hover { background: var(--color-leaflink-deep-teal); border-color: var(--color-leaflink-deep-teal); transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 8px 18px; }
.button-secondary { background: transparent; color: var(--color-leaflink-deep-teal); }
.button-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.text-link { display: inline-block; color: var(--color-leaflink-deep-teal); font-weight: 700; border-bottom: 1px solid currentColor; padding-bottom: 3px; }

.site-header { position: sticky; z-index: 100; top: 0; background: rgba(248, 247, 242, .94); border-bottom: 1px solid rgba(23, 58, 53, .1); backdrop-filter: blur(12px); }
.header-inner { width: min(1400px, calc(100% - 80px)); min-height: 84px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.header-logo-link { display: inline-flex; align-items: center; flex: 0 0 auto; }
.header-brand-logo { display: block; width: 200px; height: auto; object-fit: contain; image-rendering: auto; }
.wordmark { display: inline-flex; align-items: center; gap: 12px; line-height: 1; }
.wordmark-icon { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 6px; background: var(--color-leaflink-teal); color: #fff; font-family: var(--font-display); font-size: 1.5rem; }
.wordmark strong { display: block; letter-spacing: .24em; font-size: .88rem; }
.wordmark small { display: block; letter-spacing: .26em; font-size: .52rem; margin-top: 6px; }
.desktop-nav { display: flex; align-items: center; gap: 30px; font-size: .92rem; font-weight: 600; }
.desktop-nav li, .site-footer nav li { display: contents; }
.desktop-nav > a:not(.button), .desktop-nav > li > a:not(.button) { position: relative; padding: 10px 0; }
.desktop-nav > a:not(.button)::after, .desktop-nav > li > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 1px; background: var(--color-leaflink-teal); transition: right .18s ease; }
.desktop-nav > a:not(.button):hover::after, .desktop-nav > li > a:not(.button):hover::after { right: 0; }
.desktop-nav > li:last-child > a { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 8px 18px; border: 1px solid var(--color-leaflink-teal); border-radius: 6px; background: var(--color-leaflink-teal); color: #fff; font-weight: 650; transition: background .18s ease, border-color .18s ease, transform .18s ease; }
.desktop-nav > li:last-child > a::after { display: none; }
.desktop-nav > li:last-child > a:hover { background: var(--color-leaflink-deep-teal); border-color: var(--color-leaflink-deep-teal); transform: translateY(-2px); }
.menu-toggle, .mobile-menu { display: none; }

.corporate-intro { position: relative; overflow: hidden; padding: clamp(92px, 12vw, 172px) 0 112px; background: radial-gradient(circle at 78% 15%, rgba(18,155,145,.1), transparent 28%), linear-gradient(180deg, #fffefa, var(--color-background)); }
.intro-orbit { position: absolute; width: 720px; height: 720px; border: 1px solid rgba(169,134,63,.2); border-radius: 50%; right: -290px; top: -340px; }
.intro-orbit::before, .intro-orbit::after { content: ""; position: absolute; border: 1px solid rgba(18,155,145,.13); border-radius: 50%; inset: 90px; }
.intro-orbit::after { inset: 180px; }
.intro-grid { display: grid; grid-template-columns: 8fr 4fr; gap: 80px; align-items: end; position: relative; }
.intro-main > p { font-size: clamp(1.08rem, 1.7vw, 1.28rem); max-width: 65ch; }
.status-panels { display: grid; gap: 16px; }
.stat { min-height: 150px; padding: 28px 32px; border: 1px solid var(--color-border); background: #fff; box-shadow: 0 16px 42px var(--color-shadow); display: flex; align-items: baseline; gap: 16px; }
.stat-live { background: #effaf7; border-color: #b9ddd7; }
.stat-development { background: #fbf6eb; border-color: #e8d8b7; transform: translateX(24px); }
.stat strong { font-family: var(--font-display); font-weight: 400; font-size: 4.4rem; color: var(--color-leaflink-deep-teal); line-height: 1; }
.stat-development strong { color: var(--color-gold); }
.stat span { font-size: 1rem; font-weight: 650; color: var(--color-text-primary); }

/* WordPress-managed home hero: the only intentional departure from the source build. */
.hero-intro { min-height: calc(100vh - 84px); padding: clamp(72px, 8vw, 124px) 0; display: grid; align-items: center; background: #fffefa; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 55fr) minmax(380px, 40fr); gap: clamp(54px, 7vw, 108px); align-items: center; }
.hero-copy h1 { max-width: 9ch; margin-bottom: 28px; font-size: clamp(4.2rem, 7vw, 7rem); line-height: 1.06; }
.hero-copy > p:not(.eyebrow) { max-width: 66ch; margin-bottom: 34px; font-size: clamp(1.02rem, 1.35vw, 1.2rem); line-height: 1.7; }
.hero-copy .eyebrow { white-space: nowrap; }
.hero-cta { min-width: 172px; }
.hero-slider { position: relative; width: 100%; aspect-ratio: 4 / 5; max-height: 680px; min-height: 470px; overflow: hidden; touch-action: pan-y; border: 1px solid var(--color-gold-soft); border-radius: 24px; background: #f8f7f2; box-shadow: 0 20px 54px rgba(20,55,49,.13); }
.hero-slides, .hero-slide, .hero-slide > a { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }
.hero-slide { opacity: 0; pointer-events: none; transition: opacity 460ms ease-out; }
.hero-slide.is-active { z-index: 1; opacity: 1; pointer-events: auto; }
.hero-slide img { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-slide.is-fallback img { object-fit: contain; padding: clamp(46px, 8vw, 96px); background: #fffdf8; }
.hero-slide.is-fallback:nth-child(1) img { background: #effaf7; }
.hero-slide.is-fallback:nth-child(2) img { background: #fbf6eb; }
.hero-slide.is-fallback:nth-child(3) img { background: #f4f6ef; }
.hero-slide.is-fallback:nth-child(4) img { background: #eef3f8; }
.hero-caption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; width: fit-content; max-width: calc(100% - 48px); padding: 14px 17px; border-radius: 8px; background: rgba(12,31,29,.78); color: #fff; backdrop-filter: blur(8px); }
.hero-caption strong, .hero-caption span { display: block; color: #fff; }
.hero-caption strong { margin-bottom: 3px; font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; line-height: 1.1; }
.hero-caption span { font-size: .85rem; line-height: 1.45; }
.hero-arrow { position: absolute; z-index: 3; top: 50%; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(23,58,53,.78); color: #fff; font-size: 2rem; line-height: 1; opacity: 0; transform: translateY(-50%); transition: opacity .18s ease, background .18s ease, scale .18s ease; cursor: pointer; }
.hero-slider:hover .hero-arrow, .hero-arrow:focus-visible { opacity: 1; }
.hero-arrow:hover { background: var(--color-leaflink-deep-teal); scale: 1.02; }
.hero-arrow:active { scale: .98; }
.hero-arrow-prev { left: 18px; }
.hero-arrow-next { right: 18px; }
.hero-dots { position: absolute; z-index: 4; left: 50%; bottom: 18px; display: flex; gap: 4px; transform: translateX(-50%); }
.hero-dots button { width: 44px; height: 44px; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; }
.hero-dots button::before { content: ""; width: 9px; height: 9px; border: 1px solid rgba(255,255,255,.92); border-radius: 50%; background: rgba(23,58,53,.55); box-shadow: 0 1px 4px rgba(0,0,0,.28); transition: background .18s ease, transform .18s ease; }
.hero-dots button.is-active::before, .hero-dots button:hover::before { background: #fff; transform: scale(1.25); }
.hero-dots button:active::before { transform: scale(.96); }

.ecosystem-section { background: radial-gradient(circle at 50% 48%, rgba(255,255,255,.98) 0 25%, rgba(250,247,240,.76) 58%, #faf7f0 100%); }
.ecosystem-section::before, .ecosystem-section::after { content: ""; position: absolute; z-index: 0; width: 350px; height: 350px; opacity: .18; pointer-events: none; background: radial-gradient(ellipse at 15% 60%, #82977f 0 7%, transparent 8%), radial-gradient(ellipse at 38% 40%, #9cab8e 0 8%, transparent 9%), radial-gradient(ellipse at 60% 22%, #c3b47c 0 7%, transparent 8%), linear-gradient(40deg, transparent 48%, #81947f 49% 50%, transparent 51%); transform: rotate(-14deg); }
.ecosystem-section::before { left: -110px; top: -80px; }
.ecosystem-section::after { left: -125px; bottom: 10px; transform: rotate(26deg); }
.ecosystem-circuit { position: absolute; z-index: 0; right: -38px; top: 18px; width: 270px; height: 190px; opacity: .22; background: repeating-linear-gradient(90deg, transparent 0 26px, rgba(169,134,63,.7) 27px 28px, transparent 29px 52px), repeating-linear-gradient(0deg, transparent 0 30px, rgba(169,134,63,.48) 31px 32px, transparent 33px 58px); clip-path: polygon(36% 0,100% 0,100% 100%,0 100%,0 42%); }
.ecosystem-heading { position: relative; z-index: 2; margin-bottom: 42px; }
.ecosystem-heading h2 { max-width: 21ch; }
.ecosystem-heading > p:not(.eyebrow) { max-width: 58ch; }
.ecosystem-leaf { display: block; color: var(--color-gold); font-family: var(--font-display); font-size: 1.8rem; line-height: 1; margin-top: 12px; }
.ecosystem-board { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(390px,1fr) 270px minmax(390px,1fr); grid-template-rows: repeat(2, 190px); gap: 48px 42px; align-items: stretch; margin-top: 16px; }
.parent-orbit { position: absolute; z-index: 0; width: 370px; height: 370px; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 1px dashed rgba(169,134,63,.45); border-radius: 50%; }
.parent-orbit::after { content: ""; position: absolute; inset: 34px; border-radius: 50%; background: radial-gradient(circle, rgba(231,221,196,.34), transparent 68%); }
.parent-orbit span { position: absolute; z-index: 1; left: 50%; transform: translateX(-50%); color: var(--color-gold); font-size: 1.35rem; line-height: 1; }
.parent-orbit span:first-child { top: -14px; }
.parent-orbit span:last-child { bottom: -14px; transform: translateX(-50%) rotate(180deg); }
.parent-card, .ecosystem-brand { border: 1px solid rgba(255,255,255,.72); background: rgba(255,255,255,.68); box-shadow: 0 14px 34px rgba(53,73,65,.11), inset 0 1px 0 rgba(255,255,255,.9); backdrop-filter: blur(18px) saturate(118%); }
.parent-card { grid-column: 2; grid-row: 1 / 3; align-self: center; z-index: 3; width: 270px; height: 310px; padding: 28px 25px 24px; text-align: center; border-color: rgba(221,227,220,.9); border-bottom: 4px solid var(--color-leaflink-teal); border-radius: 18px; }
.parent-card strong { display: block; font-family: var(--font-display); font-size: 1.35rem; line-height: 1.15; margin-top: 7px; }
.parent-card p { margin: 10px auto 0; font-size: .82rem; line-height: 1.5; }
.parent-logo-frame { position: relative; height: 130px; overflow: hidden; }
.parent-logo-frame img { width: 100%; height: 100%; object-fit: contain; transform: scale(1.7); }
.ecosystem-brand { position: relative; z-index: 2; min-width: 0; height: 190px; display: block; padding: 24px 28px 22px; overflow: visible; border-radius: 18px; transition: transform .2s ease, box-shadow .2s ease; }
.ecosystem-brand:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(20,55,49,.15), inset 0 1px 0 rgba(255,255,255,.92); }
.ecosystem-brand::after { content: ""; position: absolute; top: 50%; width: 43px; height: 1px; background: var(--color-gold); opacity: .7; }
.ecosystem-brand::before { content: ""; position: absolute; z-index: 2; top: calc(50% - 5px); width: 10px; height: 10px; border: 2px solid var(--color-gold); background: #faf7f0; border-radius: 50%; }
.ecosystem-brand-1 { grid-column: 1; grid-row: 1; }
.ecosystem-brand-2 { grid-column: 3; grid-row: 1; }
.ecosystem-brand-3 { grid-column: 1; grid-row: 2; }
.ecosystem-brand-4 { grid-column: 3; grid-row: 2; }
.ecosystem-brand-1::after, .ecosystem-brand-3::after { right: -43px; }
.ecosystem-brand-1::before, .ecosystem-brand-3::before { right: -6px; }
.ecosystem-brand-2::after, .ecosystem-brand-4::after { left: -43px; }
.ecosystem-brand-2::before, .ecosystem-brand-4::before { left: -6px; }
.ecosystem-status-tab { position: absolute; z-index: 3; top: -18px; left: 22px; min-height: 36px; display: inline-flex; align-items: center; padding: 6px 15px; border-radius: 8px 8px 5px 5px; color: #fff; box-shadow: 0 7px 15px rgba(30,54,48,.16); font-size: .82rem; font-weight: 700; letter-spacing: .02em; }
.ecosystem-brand-2 .ecosystem-status-tab, .ecosystem-brand-4 .ecosystem-status-tab { left: auto; right: 22px; }
.ecosystem-ecophoria { border-color: rgba(83,180,170,.58); background: linear-gradient(135deg, rgba(255,255,255,.76), rgba(226,247,243,.66)); }
.ecosystem-vinewallet { border-color: rgba(184,154,85,.65); background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(249,239,218,.7)); }
.ecosystem-rawgreens { border-color: rgba(105,132,91,.55); background: linear-gradient(135deg, rgba(255,255,255,.76), rgba(237,243,229,.7)); }
.ecosystem-leafdigital { border-color: rgba(57,111,164,.56); background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(228,239,250,.7)); }
.ecosystem-ecophoria .ecosystem-status-tab { background: #0b877e; }
.ecosystem-vinewallet .ecosystem-status-tab { background: #b78318; }
.ecosystem-rawgreens .ecosystem-status-tab { background: #71876b; }
.ecosystem-leafdigital .ecosystem-status-tab { background: #1d6696; }
.ecosystem-logo-box { position: absolute; top: 38px; left: 32px; min-width: 0; display: flex; align-items: center; gap: 18px; flex-wrap: nowrap; overflow: visible; }
.brand-logo-icon { width: 64px; height: 64px; flex: 0 0 64px; display: flex; align-items: center; justify-content: center; }
.brand-logo-icon img { display: block; width: 100%; height: 100%; object-fit: contain; opacity: 1; }
.ecosystem-brand-name { flex: 0 0 auto; min-width: max-content; color: var(--color-leaflink-deep-teal); white-space: nowrap; overflow: visible; }
.ecosystem-ecophoria .ecosystem-brand-name { color: #087d77; font-family: var(--font-sans); font-size: 1.35rem; font-weight: 700; letter-spacing: .035em; text-transform: uppercase; }
.ecosystem-vinewallet .ecosystem-brand-name { color: #9a6a16; font-family: var(--font-display); font-size: 1.72rem; }
.rawgreens-wordmark { width: 180px; height: 64px; display: flex; align-items: center; justify-content: center; }
.rawgreens-wordmark img { display: block; width: 100%; height: 100%; object-fit: contain; opacity: 1; transform: scale(4.5); transform-origin: center; }
.ecosystem-rawgreens .ecosystem-card-copy { width: 38%; }
.ecosystem-leafdigital .ecosystem-brand-name { color: #0c1741; font-family: var(--font-sans); font-size: 1.08rem; letter-spacing: .18em; text-transform: uppercase; }
.parent-brand-row { min-height: 118px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.parent-wordmark { display: grid; gap: 3px; text-align: left; color: #101517; font-family: var(--font-sans); }
.parent-wordmark > span { font-size: .92rem; font-weight: 700; letter-spacing: .22em; }
.parent-wordmark small { font-size: .52rem; letter-spacing: .28em; }
.ecosystem-card-copy { position: absolute; right: 28px; bottom: 24px; width: 43%; min-width: 0; padding-left: 0; }
.ecosystem-rule { display: block; width: 38px; height: 2px; margin-bottom: 15px; background: var(--color-gold); }
.ecosystem-card-copy p { margin: 0; color: #566762; font-size: .83rem; line-height: 1.42; }
.ecosystem-values { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); margin-top: 38px; border: 1px solid rgba(231,221,196,.9); border-radius: 18px; background: rgba(255,255,255,.64); box-shadow: 0 12px 34px rgba(63,77,69,.07), inset 0 1px 0 rgba(255,255,255,.9); backdrop-filter: blur(18px); }
.ecosystem-values article { display: grid; grid-template-columns: 82px 1fr; gap: 20px; align-items: center; padding: 26px 30px; }
.ecosystem-values article + article { border-left: 1px solid var(--color-gold-soft); }
.value-icon { width: 68px; height: 68px; display: grid; place-items: center; border: 1px solid rgba(61,133,128,.28); border-radius: 50%; background: rgba(242,249,247,.82); color: var(--color-leaflink-deep-teal); font-family: var(--font-display); font-size: 2rem; }
.ecosystem-values h3 { margin: 0; font-size: 1.35rem; letter-spacing: -.02em; }
.value-rule { display: block; width: 34px; height: 2px; margin: 9px 0 11px; background: var(--color-gold); }
.ecosystem-values p { margin: 0; font-size: .82rem; line-height: 1.45; }
.status { display: inline-flex; min-height: 27px; align-items: center; padding: 4px 10px; border: 1px solid currentColor; font-size: .67rem; font-weight: 800; letter-spacing: .12em; }
.status-live { color: #087269; background: #e8f8f4; }
.status-soon { color: #52684c; background: #f4f6ef; }
.principles-grid article > span { color: var(--color-gold); font-size: .72rem; letter-spacing: .18em; }

.about-section { background: var(--color-background-soft); }
.about-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 96px; align-items: center; }
.about-grid > div:first-child > p { font-size: 1.05rem; }
.descriptor-list { margin: 40px 0 0; display: grid; gap: 0; }
.descriptor-list div { display: grid; grid-template-columns: 125px 1fr; gap: 24px; padding: 17px 0; border-top: 1px solid var(--color-border); }
.descriptor-list dt { font-weight: 750; color: var(--color-leaflink-deep-teal); }
.descriptor-list dd { margin: 0; color: var(--color-text-secondary); }
.about-mark { min-height: 520px; position: relative; display: grid; align-content: center; padding: 48px; border: 1px solid var(--color-gold-soft); background: #fff; box-shadow: 0 18px 50px var(--color-shadow); text-align: center; }
.about-rings { position: absolute; width: 430px; height: 430px; border: 1px solid rgba(169,134,63,.25); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.about-rings::after { content: ""; position: absolute; inset: 54px; border: 1px solid rgba(18,155,145,.17); border-radius: 50%; }
.parent-logo-frame.large { height: 190px; z-index: 1; }
.about-mark p { position: relative; color: var(--color-gold); font-family: var(--font-display); font-size: 1.25rem; margin: 0 auto; }

.brands-section { background: radial-gradient(circle at 9% 10%, rgba(147,171,144,.09), transparent 25%), radial-gradient(circle at 92% 86%, rgba(169,134,63,.07), transparent 24%), #fffefa; }
.section-leaf { display: block; color: var(--color-gold); font-family: var(--font-display); font-size: 1.7rem; line-height: 1; margin-top: 18px; }
.live-grid, .development-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; }
.brand-card { min-width: 0; position: relative; border: 1px solid var(--color-border); border-radius: 24px; box-shadow: 0 16px 42px var(--color-shadow); transition: transform .2s ease, box-shadow .2s ease; }
.brand-card:hover { transform: translateY(-4px); box-shadow: 0 22px 54px rgba(20,55,49,.14); }
.brand-card-live { min-height: 600px; padding: 52px 68px 54px; overflow: hidden; }
.brand-card-live.brand-ecophoria { background: radial-gradient(circle at 5% 92%, rgba(18,155,145,.12), transparent 24%), radial-gradient(ellipse at 80% 100%, rgba(18,155,145,.09), transparent 37%), linear-gradient(145deg, rgba(255,255,255,.97), rgba(231,249,246,.94)); border-color: #74c8be; }
.brand-card-live.brand-vinewallet { background: radial-gradient(circle at 7% 94%, rgba(183,131,24,.10), transparent 24%), repeating-radial-gradient(ellipse at 75% 112%, transparent 0 18px, rgba(183,131,24,.08) 19px 20px), linear-gradient(145deg, rgba(255,255,255,.98), rgba(251,243,229,.95)); border-color: #d0a44d; }
.logo-window { position: relative; height: 170px; margin: 0; overflow: visible; }
.card-brand-lockup { height: 100%; display: flex; align-items: center; justify-content: center; gap: 30px; }
.card-logo-mark { width: 132px; height: 132px; flex: 0 0 132px; display: flex; align-items: center; justify-content: center; }
.card-logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; opacity: 1; }
.card-logo-wordmark { min-width: max-content; white-space: nowrap; }
.logo-ecophoria .card-logo-wordmark { color: #087d77; font-family: var(--font-sans); font-size: 2.2rem; font-weight: 500; letter-spacing: .035em; text-transform: uppercase; }
.logo-vinewallet .card-logo-wordmark { color: #9a6a16; font-family: var(--font-display); font-size: 2.7rem; }
.logo-leafdigital .card-logo-wordmark { color: #0c1741; font-family: var(--font-sans); font-size: 2rem; letter-spacing: .22em; text-transform: uppercase; }
.card-wordmark-image { width: 100%; height: 100%; object-fit: contain; display: block; opacity: 1; }
.logo-rawgreens .card-wordmark-image { transform: scale(4.5); transform-origin: center; }
.brand-copy { position: relative; z-index: 1; text-align: left; }
.brand-copy h3 { margin: 4px 0 16px; font-size: 2.25rem; }
.brand-divider { display: block; width: 48px; height: 2px; margin: 4px 0 24px; background: var(--color-gold); }
.brand-copy p { min-height: 104px; margin-bottom: 30px; font-size: 1rem; line-height: 1.62; }
.brand-card-live .button { min-width: 205px; min-height: 54px; font-size: 1rem; }
.brand-card-compact { min-height: 548px; padding: 42px 56px 36px; overflow: visible; background-color: #fff; background-repeat: no-repeat; background-size: cover, 200% 100%; box-shadow: 0 16px 36px rgba(20,55,49,.10); }
.brand-card-compact.brand-rawgreens { border-color: #819a76; background-image: linear-gradient(rgba(255,255,255,.11), rgba(255,255,255,.11)), url('../images/images/development-card-backgrounds.png'); background-position: center, left center; }
.brand-card-compact.brand-leafdigital { border-color: #76a9d4; background-image: linear-gradient(rgba(255,255,255,.10), rgba(255,255,255,.10)), url('../images/images/development-card-backgrounds.png'); background-position: center, right center; }
.brand-status-tab { position: absolute; z-index: 3; top: -20px; left: 34px; display: inline-flex; align-items: center; min-height: 42px; padding: 7px 18px; border-radius: 8px; color: #fff; font-size: .95rem; font-weight: 650; box-shadow: 0 8px 18px rgba(29,55,47,.18); }
.brand-status-rawgreens { background: #758b70; }
.brand-status-leafdigital { background: #236f9f; }
.brand-card-compact .logo-window { height: 210px; }
.brand-card-compact .card-brand-lockup { gap: 26px; }
.brand-card-compact .card-logo-mark { width: 138px; height: 138px; flex-basis: 138px; }
.brand-card-compact .brand-copy { text-align: center; }
.brand-card-compact .brand-divider { width: 230px; height: 1px; margin: 0 auto 28px; background: linear-gradient(90deg, transparent, var(--color-gold), transparent); }
.brand-card-compact .brand-copy p { min-height: 92px; max-width: 36ch; margin: 0 auto 28px; color: #424f52; font-size: 1.08rem; line-height: 1.55; }
.brand-concept-icon { display: grid; place-items: center; width: 66px; height: 66px; margin: 0 auto; border: 1px solid rgba(13,98,92,.28); border-radius: 50%; background: rgba(255,255,255,.68); color: var(--color-leaflink-deep-teal); font-size: 1.7rem; box-shadow: 0 8px 18px rgba(30,55,49,.08); }
.development-section { background: radial-gradient(circle at 12% 16%, rgba(153,173,145,.10), transparent 26%), radial-gradient(circle at 90% 10%, rgba(169,134,63,.07), transparent 24%), #fffefa; }

.standards-section { background: #fff; }
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--color-border); }
.principles-grid article { padding: 44px 28px 28px; min-height: 310px; border-bottom: 1px solid var(--color-border); }
.principles-grid article + article { border-left: 1px solid var(--color-border); }
.principles-grid article:nth-child(even) { padding-top: 76px; }
.principles-grid h3 { font-size: 1.75rem; margin: 18px 0; }
.principles-grid p { font-size: .95rem; }

.newsroom-section { background: #f6f4ee; }
.coming-state { display: inline-block; width: auto; padding: 8px 12px; border: 1px solid var(--color-gold-soft); color: #7c6737 !important; font-size: .82rem !important; text-transform: uppercase; letter-spacing: .1em; }
.editorial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.editorial-card { border: 1px solid var(--color-border); background: #fff; box-shadow: 0 12px 32px rgba(20,55,49,.07); }
.editorial-card > div:last-child { padding: 30px; }
.editorial-card h3, .editorial-card h2 { font-size: 1.8rem; margin: 12px 0; }
.editorial-card p { font-size: .94rem; }
.editorial-2 { margin-top: 36px; }
.editorial-art { height: 210px; position: relative; overflow: hidden; background: linear-gradient(135deg, #e4ebe1, #f6efe0); }
.editorial-art::before, .editorial-art::after { content: ""; position: absolute; border: 1px solid rgba(13,98,92,.23); border-radius: 50%; width: 260px; height: 260px; right: -70px; bottom: -150px; }
.editorial-art::after { width: 170px; height: 170px; right: -24px; bottom: -108px; }
.editorial-2 .editorial-art { background: repeating-linear-gradient(110deg, #eef4f2 0, #eef4f2 18px, #e1ece9 19px, #e1ece9 20px); }
.editorial-3 .editorial-art { background: linear-gradient(145deg, #f6eee2, #e6ece6); }
.editorial-art span { position: absolute; left: 26px; bottom: 20px; font-family: var(--font-display); font-size: 3rem; color: rgba(23,58,53,.55); }
.draft-label { color: var(--color-gold); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }

.final-cta { padding: clamp(100px, 12vw, 160px) 0; background: #fff; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; left: 50%; top: 50%; width: 850px; height: 850px; border: 1px solid rgba(169,134,63,.18); border-radius: 50%; transform: translate(-50%,-50%); }
.final-cta .container { position: relative; }
.final-cta .button-row { justify-content: center; }
.site-footer { padding: 64px 0 30px; background: #173a35; color: #f7f4eb; }
.site-footer p, .site-footer span { color: #c9d3cf; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 70px; align-items: start; }
.footer-grid nav { display: grid; gap: 10px; }
.footer-contact { display: grid; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 24px; margin-top: 48px; font-size: .8rem; color: #b7c2be; }

.page-intro { padding: clamp(92px, 10vw, 150px) 0; background: radial-gradient(circle at 75% 0, rgba(18,155,145,.09), transparent 30%), #fffdfa; border-bottom: 1px solid var(--color-border); }
.page-intro h1 { max-width: 14ch; }
.intro-copy { font-size: 1.16rem; }
.directory-section, .contact-section { padding: 96px 0 128px; }
.directory-section > .container > h2 { font-size: 3rem; margin-bottom: 40px; }
.directory-heading { margin-top: 112px; }
.split-copy { display: grid; grid-template-columns: 5fr 7fr; gap: 96px; }
.split-copy > div:last-child { padding-top: 10px; font-size: 1.08rem; }
.about-principles { margin-top: 88px; }
.contact-grid { display: grid; grid-template-columns: 4fr 7fr; gap: 110px; align-items: start; }
.email-link { color: var(--color-leaflink-deep-teal); font-weight: 700; border-bottom: 1px solid currentColor; }
.contact-form { padding: 42px; border: 1px solid var(--color-border); background: #fff; box-shadow: 0 18px 48px var(--color-shadow); }
.contact-form label { display: grid; gap: 8px; margin-bottom: 20px; color: var(--color-text-primary); font-weight: 650; font-size: .91rem; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid #bfc9c2; border-radius: 3px; background: #fcfcf9; color: var(--color-text-primary); padding: 12px 13px; font-weight: 400; }
.contact-form textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.contact-form .check { display: grid; grid-template-columns: 20px 1fr; align-items: start; font-weight: 400; }
.check input { width: 18px; height: 18px; margin-top: 4px; }
.form-note { font-size: .82rem; line-height: 1.5; margin: 16px 0 0; }
.brand-profile-hero { padding: 110px 0 130px; }
.brand-profile-grid { display: grid; grid-template-columns: 6fr 6fr; gap: 96px; align-items: center; }
.brand-profile-grid h1 { margin: 24px 0; }
.brand-profile-grid > div:first-child > p { font-size: 1.17rem; }
.profile-logo-card { min-height: 520px; border: 1px solid var(--color-border); background: rgba(255,255,255,.82); box-shadow: 0 20px 56px var(--color-shadow); display: grid; align-items: center; padding: 42px; }
.profile-logo-card .logo-window { height: 360px; }
.profile-context { background: #fff; padding: 100px 0; }

@media (max-width: 1100px) {
  .container { width: min(100% - 56px, 960px); }
  .header-inner { width: calc(100% - 48px); }
  .intro-grid, .about-grid { gap: 52px; }
  .ecosystem-board { grid-template-columns: minmax(0,1fr) 230px minmax(0,1fr); gap: 44px 32px; }
  .parent-card { width: 230px; padding-inline: 18px; }
  .parent-orbit { width: 330px; height: 330px; }
  .ecosystem-brand { grid-template-columns: 46% 54%; padding-inline: 18px; }
  .ecosystem-logo-box { top: 24px; left: 20px; gap: 14px; }
  .ecosystem-ecophoria .ecosystem-brand-name { font-size: 1rem; }
  .ecosystem-vinewallet .ecosystem-brand-name { font-size: 1.3rem; }
  .ecosystem-leafdigital .ecosystem-brand-name { font-size: .82rem; letter-spacing: .13em; }
  .ecosystem-rawgreens .ecosystem-logo-box { left: 42px; }
  .rawgreens-wordmark { width: 160px; }
  .ecosystem-brand::after { width: 33px; }
  .ecosystem-brand-1::after, .ecosystem-brand-3::after { right: -33px; }
  .ecosystem-brand-2::after, .ecosystem-brand-4::after { left: -33px; }
  .ecosystem-card-copy { right: 18px; bottom: 22px; width: 47%; padding-left: 0; }
  .ecosystem-values article { grid-template-columns: 62px 1fr; gap: 14px; padding: 24px 20px; }
  .value-icon { width: 56px; height: 56px; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-grid article:nth-child(even) { padding-top: 44px; }
  .principles-grid article:nth-child(3) { border-left: 0; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 44px); }
  .header-inner { min-height: 72px; width: calc(100% - 40px); }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; gap: 6px; width: 48px; height: 48px; place-content: center; border: 0; background: transparent; }
  .menu-toggle span { width: 24px; height: 2px; background: var(--color-text-primary); }
  .mobile-menu { display: block; position: fixed; z-index: 200; inset: 0; background: #f8f7f2; opacity: 0; pointer-events: none; transition: opacity .22s ease; visibility: hidden; }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; visibility: visible; }
  .menu-close { position: absolute; right: 22px; top: 20px; min-height: 48px; padding: 8px 12px; border: 1px solid var(--color-border); background: #fff; }
  .mobile-menu nav { height: 100%; display: grid; align-content: center; gap: 20px; padding: 40px; }
  .mobile-menu nav a { font-family: var(--font-display); font-size: 2.2rem; }
  .intro-grid, .about-grid, .brand-profile-grid, .split-copy, .contact-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 56px; }
  .hero-intro { min-height: auto; padding: 72px 0 84px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy h1 { max-width: 10ch; }
  .hero-copy .eyebrow { white-space: normal; }
  .hero-slider { width: 100%; max-height: none; min-height: 0; aspect-ratio: 16 / 10; }
  .hero-arrow { opacity: 1; }
  .corporate-intro { padding-top: 82px; }
  .stat-development { transform: none; }
  .ecosystem-heading { margin-bottom: 32px; }
  .ecosystem-board { height: auto; display: grid; grid-template-columns: 1fr; grid-template-rows: auto; gap: 28px; }
  .parent-card, .ecosystem-brand { position: relative; inset: auto; transform: none; width: 100%; }
  .parent-card { grid-column: 1; grid-row: auto; order: 0; height: 260px; max-width: 360px; justify-self: center; }
  .ecosystem-brand { grid-column: 1; grid-row: auto; height: 190px; }
  .ecosystem-brand-1 { order: 1; }
  .ecosystem-brand-2 { order: 2; }
  .ecosystem-brand-3 { order: 3; }
  .ecosystem-brand-4 { order: 4; }
  .ecosystem-brand:hover { transform: translateY(-4px); }
  .ecosystem-brand::before, .ecosystem-brand::after, .parent-orbit { display: none; }
  .ecosystem-values, .editorial-grid { grid-template-columns: 1fr; }
  .ecosystem-values article + article { border-left: 0; border-top: 1px solid var(--color-gold-soft); }
  .about-mark { min-height: 430px; }
  .live-grid, .development-grid { grid-template-columns: 1fr; }
  .brand-copy p, .brand-card-compact .brand-copy p { min-height: 0; }
  .editorial-2 { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .brand-profile-grid { gap: 56px; }
  .profile-logo-card { min-height: 390px; }
  .split-copy { gap: 24px; }
}

@media (max-width: 520px) {
  h1 { font-size: clamp(3rem, 15vw, 4.3rem); }
  h2 { font-size: clamp(2.35rem, 12vw, 3.4rem); }
  .container { width: calc(100% - 40px); }
  .wordmark strong { font-size: .75rem; }
  .wordmark small { font-size: .46rem; }
  .header-brand-logo { width: 170px; }
  .section { padding: 76px 0; }
  .hero-intro { min-height: calc(100svh - 72px); padding: 48px 0 64px; align-items: start; }
  .hero-grid { gap: 34px; }
  .hero-copy h1 { margin-bottom: 20px; font-size: clamp(3.4rem, 16vw, 4.6rem); }
  .hero-copy > p:not(.eyebrow) { margin-bottom: 24px; font-size: .98rem; line-height: 1.58; }
  .hero-cta { width: 100%; }
  .hero-slider { aspect-ratio: 4 / 3; border-radius: 18px; }
  .hero-caption { left: 14px; right: 14px; bottom: 54px; max-width: calc(100% - 28px); }
  .hero-caption strong { font-size: 1.25rem; }
  .hero-arrow { width: 42px; height: 42px; }
  .hero-arrow-prev { left: 10px; }
  .hero-arrow-next { right: 10px; }
  .section-heading { margin-bottom: 42px; }
  .stat { min-height: 128px; padding: 22px; }
  .stat strong { font-size: 3.6rem; }
  .brand-card, .contact-form { padding-left: 24px; padding-right: 24px; }
  .ecosystem-brand { height: 230px; padding: 22px 18px; }
  .ecosystem-logo-box { top: 18px; left: 18px; }
  .ecosystem-ecophoria .ecosystem-brand-name { font-size: .82rem; }
  .ecosystem-vinewallet .ecosystem-brand-name { font-size: 1.05rem; }
  .ecosystem-leafdigital .ecosystem-brand-name { font-size: .7rem; letter-spacing: .14em; }
  .ecosystem-card-copy { left: 18px; right: 18px; bottom: 18px; width: auto; }
  .ecosystem-rule { margin-bottom: 10px; }
  .ecosystem-status-tab { left: 14px; }
  .ecosystem-brand-2 .ecosystem-status-tab, .ecosystem-brand-4 .ecosystem-status-tab { right: 14px; }
  .ecosystem-values article { grid-template-columns: 56px 1fr; padding: 22px 18px; }
  .value-icon { width: 50px; height: 50px; font-size: 1.6rem; }
  .logo-window { height: 200px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-grid article + article { border-left: 0; }
  .button-row { display: grid; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-contact { overflow-wrap: anywhere; }
  .about-rings { width: 330px; height: 330px; }
  .profile-logo-card { min-height: 330px; padding: 20px; }
  .profile-logo-card .logo-window { height: 250px; }
}

@media (max-width: 820px) {
  html, body { max-width: 100%; overflow-x: clip; }
  img, svg { max-width: 100%; height: auto; }
  .container, .header-inner, .hero-copy, .hero-slider, .brand-card, .logo-window, .card-brand-lockup, .brand-copy { min-width: 0; }

  .mobile-menu { display: block; position: fixed; z-index: 10000; inset: 0; width: 100%; height: 100dvh; min-height: 100svh; overflow-y: auto; overscroll-behavior: contain; background: #f8f7f2; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .22s ease, visibility 0s linear .22s; }
  .mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
  .mobile-menu nav { min-height: 100%; height: auto; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: clamp(24px, 5vh, 36px); padding: calc(96px + env(safe-area-inset-top)) max(28px, env(safe-area-inset-right)) calc(48px + env(safe-area-inset-bottom)) max(28px, env(safe-area-inset-left)); }
  .mobile-menu nav li { display: contents; }
  .mobile-menu nav a { width: 100%; min-height: 48px; display: flex; align-items: center; padding: 4px 0; font-family: var(--font-display); font-size: clamp(2.2rem, 10vw, 3.35rem); line-height: 1.08; white-space: normal; }
  .mobile-menu nav a::before { content: "•"; flex: 0 0 auto; margin-right: 16px; font-family: var(--font-body); font-size: .7em; }
  .menu-close { position: absolute; z-index: 2; top: calc(18px + env(safe-area-inset-top)); right: max(20px, env(safe-area-inset-right)); min-width: 48px; min-height: 48px; padding: 8px 14px; border: 1px solid var(--color-gold); border-radius: 4px; background: #fffefa; color: var(--color-text-primary); box-shadow: none; line-height: 1; }

  .hero-intro { min-height: auto; padding: 56px 0 76px; align-items: start; }
  .hero-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 64px; }
  .hero-copy { position: relative; display: block; }
  .hero-copy .eyebrow { position: static; width: 100%; margin: 0 0 24px; white-space: normal; line-height: 1.5; }
  .hero-copy h1 { position: static; width: 100%; max-width: 9ch; margin: 0 0 28px; font-size: clamp(3.35rem, 15vw, 4.7rem); line-height: 1.05; overflow-wrap: normal; }
  .hero-copy > p:not(.eyebrow) { position: static; width: 100%; margin: 0 0 32px; font-size: clamp(.98rem, 4.3vw, 1.08rem); line-height: 1.62; }
  .hero-cta { width: 100%; min-height: 54px; margin: 0; }

  .hero-slider { width: 100%; max-width: 100%; min-height: 0; max-height: none; aspect-ratio: 4 / 5; border-radius: 18px; isolation: isolate; }
  .hero-slide img, .hero-slide.is-fallback img { width: 100%; height: 100%; padding: 0; object-fit: cover; object-position: center; background: transparent; }
  .hero-arrow { z-index: 3; top: 22px; width: 48px; height: 48px; opacity: 1; transform: none; }
  .hero-arrow-prev { left: 20px; }
  .hero-arrow-next { right: 20px; }
  .hero-caption { z-index: 2; left: 20px; right: 20px; bottom: 76px; width: auto; max-width: none; min-height: 0; padding: 10px 16px; }
  .hero-caption strong { font-size: clamp(1.3rem, 6vw, 1.6rem); }
  .hero-caption span { font-size: clamp(.78rem, 3.6vw, .92rem); }
  .hero-dots { z-index: 4; bottom: 14px; gap: 0; }
  .hero-dots button { width: 44px; height: 44px; }
  .hero-dots button.is-active::before { border-color: rgba(23,58,53,.45); box-shadow: 0 0 0 2px rgba(255,255,255,.9), 0 2px 6px rgba(0,0,0,.28); }

  .section-heading, .ecosystem-heading { margin-bottom: 44px; }
  .section-heading h2, .ecosystem-heading h2 { width: 100%; max-width: 100%; font-size: clamp(2.55rem, 12vw, 4rem); line-height: 1.05; overflow-wrap: break-word; }
  .section-heading .eyebrow, .ecosystem-heading .eyebrow { position: static; white-space: normal; line-height: 1.5; }

  .brand-card { width: 100%; max-width: 100%; transform: none; }
  .brand-card:hover { transform: none; }
  .brand-card-live, .brand-card-compact { min-height: 0; padding: 44px 24px 34px; }
  .brand-card-compact { padding-top: 52px; overflow: visible; }
  .logo-window, .brand-card-compact .logo-window { width: 100%; height: 164px; margin: 0 0 12px; overflow: hidden; }
  .card-brand-lockup, .brand-card-compact .card-brand-lockup { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; gap: 16px; padding: 8px 6px; overflow: hidden; }
  .card-logo-mark, .brand-card-compact .card-logo-mark { width: clamp(78px, 25vw, 104px); height: clamp(78px, 25vw, 104px); flex: 0 0 clamp(78px, 25vw, 104px); }
  .card-logo-wordmark { min-width: 0; max-width: calc(100% - 120px); white-space: nowrap; }
  .logo-ecophoria .card-logo-wordmark { font-size: clamp(1.2rem, 6vw, 1.65rem); }
  .logo-vinewallet .card-logo-wordmark { font-size: clamp(1.55rem, 7vw, 2rem); }
  .logo-leafdigital .card-logo-wordmark { font-size: clamp(.92rem, 4.8vw, 1.25rem); letter-spacing: .14em; }
  .logo-rawgreens .card-wordmark-image { width: 100%; max-width: none; height: auto; object-fit: initial; transform: scale(1.35); transform-origin: center; }
  .brand-copy { width: 100%; text-align: left; }
  .brand-copy h3 { margin: 0 0 16px; font-size: clamp(2rem, 10vw, 2.8rem); }
  .brand-copy p, .brand-card-compact .brand-copy p { min-height: 0; margin-bottom: 28px; overflow-wrap: break-word; }
  .brand-card-live .button { width: 100%; min-width: 0; }
  .brand-card-compact .brand-copy { text-align: center; }
  .brand-card-compact .brand-divider { width: min(230px, 75%); }
  .brand-status-tab { top: -18px; left: 24px; max-width: calc(100% - 48px); min-height: 44px; padding: 8px 16px; white-space: nowrap; }
}

@media (max-width: 420px) {
  .container { width: calc(100% - 32px); }
  .hero-intro { padding-top: 44px; }
  .hero-grid { gap: 58px; }
  .hero-copy h1 { font-size: clamp(3.1rem, 15vw, 4.1rem); }
  .hero-caption { left: 14px; right: 14px; bottom: 76px; padding: 10px 14px; }
  .hero-arrow-prev { left: 14px; }
  .hero-arrow-next { right: 14px; }
  .card-brand-lockup, .brand-card-compact .card-brand-lockup { gap: 12px; padding-inline: 0; }
  .card-logo-mark, .brand-card-compact .card-logo-mark { width: 82px; height: 82px; flex-basis: 82px; }
  .card-logo-wordmark { max-width: calc(100% - 94px); }
  .logo-ecophoria .card-logo-wordmark { font-size: 1.16rem; }
  .logo-vinewallet .card-logo-wordmark { font-size: 1.48rem; }
  .logo-leafdigital .card-logo-wordmark { font-size: .86rem; letter-spacing: .12em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
