:root {
  --ink: #2d2931;
  --ink-soft: #5e5964;
  --forest: #65477d;
  --forest-dark: #302439;
  --forest-light: #806397;
  --sage: #e1dae7;
  --sage-2: #f1eef3;
  --cream: #efedf0;
  --paper: #fcfbfd;
  --gold: #b6a2c6;
  --gold-light: #e7e0eb;
  --clay: #704f87;
  --orange: #89639f;
  --purple: #65477d;
  --line: #ddd9e1;
  --muted: #77727c;
  --shadow: 0 18px 50px rgba(48, 36, 57, .13);
  --shadow-soft: 0 8px 25px rgba(48, 36, 57, .08);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.5; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img, svg { max-width: 100%; }
[hidden] { display: none !important; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.kicker { margin: 0 0 8px; color: var(--clay); font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.button { min-height: 44px; border: 0; border-radius: 11px; padding: 11px 17px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; font-size: 13px; font-weight: 850; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-1px); }
.button-gold { color: var(--forest-dark); background: var(--gold); box-shadow: 0 9px 24px rgba(48, 36, 57, .18); }
.button-gold:hover { background: #c4b2d1; }
.button-light { color: var(--forest); border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.88); }
.button-dark { color: white; background: var(--forest); }
.button-dark:hover { background: var(--forest-light); }
.button-plain { color: var(--ink-soft); border: 1px solid var(--line); background: transparent; }
.button-block { width: 100%; }
.compact { min-height: 38px; padding: 8px 13px; font-size: 12px; }
.text-link, .text-button { border: 0; padding: 0; color: var(--clay); background: none; cursor: pointer; font-size: 12px; font-weight: 850; text-decoration: none; }
.text-link:hover, .text-button:hover { text-decoration: underline; }

/* Public site */
.public-page { background: var(--paper); }
.public-header { position: sticky; top: 0; z-index: 20; min-height: 78px; padding: 14px clamp(22px, 6vw, 88px); display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid rgba(48,36,57,.09); background: rgba(252,251,253,.94); backdrop-filter: blur(16px); }
.public-brand, .hq-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.public-brand-lockup { display: grid; gap: 2px; }
.public-brand-phone { color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.public-brand-phone:hover { color: var(--clay); }
.public-brand b, .hq-brand b { display: block; font: 700 18px/1.05 Georgia, "Times New Roman", serif; }
.public-brand small, .hq-brand small { display: block; margin-top: 4px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.monogram { width: 43px; height: 43px; border-radius: 13px; display: grid; place-items: center; color: var(--forest-dark); background: var(--gold); font: 800 17px/1 Georgia, serif; }
.brand-logo { display: block; object-fit: contain; }
.brand-logo-horizontal { width: clamp(185px, 17vw, 255px); height: auto; }
.public-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 36px); }
.public-nav a { font-size: 12px; font-weight: 800; text-decoration: none; }
.public-nav a:not(.nav-cta):hover { color: var(--clay); }
.public-nav .nav-cta { padding: 10px 14px; border-radius: 10px; color: white; background: var(--forest); }
.mobile-menu { display: none; }

.public-hero { min-height: calc(100vh - 78px); padding: clamp(55px, 8vw, 110px) clamp(22px, 7vw, 105px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr); gap: clamp(45px, 8vw, 110px); align-items: center; overflow: hidden; color: white; background: radial-gradient(circle at 78% 23%, rgba(193,174,207,.26), transparent 25%), radial-gradient(circle at 12% 89%, rgba(156,148,163,.2), transparent 31%), linear-gradient(135deg, #705188, #493654 62%, #2e2336); }
.hero-copy-block { position: relative; z-index: 2; max-width: 780px; }
.public-hero .kicker { color: #d9cbe3; }
.public-hero h1 { margin: 0; max-width: 790px; font: 700 clamp(48px, 6.7vw, 92px)/.98 Georgia, "Times New Roman", serif; letter-spacing: -.045em; }
.hero-lead { max-width: 720px; margin: 25px 0 0; color: #e6e1e8; font-size: clamp(16px, 1.6vw, 21px); line-height: 1.65; }
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 11px; }
.public-hero .button-plain { color: white; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); }
.public-hero .button-plain:hover { border-color: white; background: rgba(255,255,255,.14); }
.trust-row { margin-top: 50px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.14); }
.trust-row span { color: #d0c8d5; font-size: 10px; line-height: 1.4; }
.trust-row b { display: block; margin-bottom: 4px; color: white; font-size: 12px; }

.hero-art { position: relative; width: min(650px, 100%); min-height: 610px; margin-inline: auto; }
.sun-orbit { position: absolute; width: 520px; height: 520px; right: -120px; top: -70px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 48px rgba(255,255,255,.02), 0 0 0 96px rgba(255,255,255,.018); }
.art-card { position: absolute; border: 1px solid rgba(255,255,255,.28); border-radius: 22px; background: rgba(255,255,255,.94); color: var(--ink); box-shadow: 0 28px 70px rgba(0,0,0,.22); }
.art-card-main { width: min(470px, 100%); right: 0; top: 45px; padding: 22px; transform: rotate(2deg); }
.profile-card { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; background: linear-gradient(145deg, rgba(255,255,255,.98), #e4dfe7); }
.profile-card img { width: 100%; aspect-ratio: 1; border-radius: 16px; display: block; object-fit: cover; filter: saturate(.88) contrast(1.02); }
.profile-card-copy { display: flex; align-items: end; justify-content: space-between; gap: 18px; }
.profile-card-copy b { margin: 0; text-align: right; }
.profile-card.art-card-main { height: 480px; padding: 0; border: 0; display: block; overflow: hidden; background: #302439; }
.profile-card.art-card-main img { width: 100%; height: 100%; aspect-ratio: auto; border-radius: 0; object-fit: cover; object-position: 50% 24%; filter: none; }
.profile-card .profile-card-copy { position: absolute; inset: auto 0 0; padding: 96px 22px 20px; color: white; align-items: end; background: linear-gradient(transparent, rgba(38,29,45,.94)); }
.profile-card .profile-card-copy .art-label { color: #ded0e6; }
.profile-card .profile-card-copy b { max-width: 185px; font-size: 20px; line-height: 1.16; }
.art-label, .art-card span { color: var(--clay); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.art-note { left: -45px; bottom: 78px; width: 215px; padding: 18px; transform: rotate(-3deg); }
.art-stat { right: -22px; bottom: 20px; width: 260px; padding: 18px; transform: rotate(2deg); }
.art-card b { display: block; margin-top: 6px; font: 700 18px/1.25 Georgia, serif; }

.public-section { padding: clamp(75px, 10vw, 145px) clamp(22px, 7vw, 105px); }
.section-label { color: var(--clay); font-size: 10px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.story-section { background: var(--paper); }
.story-grid { margin-top: 25px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .8fr); gap: clamp(45px, 8vw, 120px); }
.story-heading h2, .section-heading h2, .contact-card h2 { margin: 0; font: 700 clamp(37px, 5vw, 66px)/1.04 Georgia, "Times New Roman", serif; letter-spacing: -.035em; }
.story-copy { max-width: 680px; color: var(--ink-soft); font-size: clamp(15px, 1.4vw, 18px); }
.story-copy p:first-child { margin-top: 0; }
.story-copy p { margin: 0 0 20px; }

.approach-section { background: var(--sage-2); }
.section-heading { max-width: 850px; }
.section-heading > p:last-child { max-width: 640px; color: var(--ink-soft); font-size: 17px; }
.service-grid { margin-top: 55px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.service-card { min-height: 320px; padding: 30px; border: 1px solid rgba(48,36,57,.09); border-radius: 20px; background: var(--paper); box-shadow: var(--shadow-soft); }
.service-number { color: var(--clay); font: 700 14px Georgia, serif; }
.service-card h3 { margin: 70px 0 15px; font: 700 27px/1.1 Georgia, serif; }
.service-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.davis-section { background: var(--paper); }
.note-grid { margin-top: 50px; display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 16px; }
.note-card { min-height: 330px; padding: 24px; border: 1px solid var(--line); border-radius: 14px; display: flex; flex-direction: column; background: #f8f6f9; }
.feature-note { color: white; background: linear-gradient(145deg, #72528a, #3e2e48); border-color: transparent; }
.note-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--clay); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.feature-note .note-meta { color: #d9cbe3; }
.note-card h3 { margin: 24px 0 14px; font: 700 clamp(24px, 2.6vw, 38px)/1.08 Georgia, serif; }
.note-card p { margin: 0 0 20px; color: var(--ink-soft); font-size: 14px; }
.feature-note p { color: #e6e0e9; }
.note-card a { font-size: 11px; font-weight: 850; }
.home-note-invite { margin-top: 18px; padding: 30px; border: 1px solid #d7cadf; border-radius: 22px; display: flex; align-items: center; justify-content: space-between; gap: 35px; background: linear-gradient(135deg, #f1eaf5, #fff); }
.home-note-invite > div { max-width: 780px; }
.home-note-invite h3 { margin: 4px 0 7px; font: 700 30px/1.08 Georgia, serif; }
.home-note-invite p:last-child { margin: 0; color: var(--muted); font-size: 13px; }

.proof-section { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; color: white; background: var(--forest-dark); }
.proof-quote p { margin: 0; font: 700 clamp(34px, 4.5vw, 60px)/1.08 Georgia, serif; }
.proof-quote span { display: block; margin-top: 18px; color: #cec5d4; font-size: 12px; }
.proof-facts { display: grid; gap: 22px; }
.proof-facts div { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.proof-facts b { display: block; font: 700 27px Georgia, serif; color: var(--gold); }
.proof-facts span { color: #d9d2dd; font-size: 12px; }

.contact-section { background: var(--gold-light); }
.contact-card { padding: clamp(34px, 6vw, 78px); border-radius: 30px; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; color: white; background: radial-gradient(circle at 90% 10%, rgba(205,188,217,.28), transparent 26%), var(--forest); box-shadow: var(--shadow); }
.contact-card > div:first-child { max-width: 850px; }
.contact-card > div:first-child > p:last-child { max-width: 700px; color: #e3dde7; }
.contact-actions { display: grid; gap: 10px; min-width: 220px; }
.contact-xpert-logo { width: 190px; height: 190px; aspect-ratio: 1; margin: 0 auto 8px; border-radius: 18px; object-fit: contain; background: white; box-shadow: 0 16px 35px rgba(29,20,34,.2); }
.public-footer { padding: 42px clamp(22px, 7vw, 105px); display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; background: #261d2d; color: #d8d1dc; }
.footer-brand b { color: white; }
.footer-brand { padding: 7px 10px; border-radius: 10px; background: white; }
.footer-brand .brand-logo-horizontal { width: 210px; }
.public-footer p { margin: 0; font-size: 10px; }
.public-footer .fine-print { color: #aaa2af; }
.hq-entry { font-size: 10px; font-weight: 850; }
.reveal { opacity: 0; transform: translateY(16px); transition: .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* HQ */
.hq-page { min-height: 100vh; background: #f1eff2; }
.hq-shell { min-height: 100vh; display: grid; grid-template-columns: 278px minmax(0, 1fr); }
.hq-sidebar { position: sticky; top: 0; height: 100vh; z-index: 15; padding: 24px 14px 15px; display: flex; flex-direction: column; color: #f1edf3; background: var(--forest-dark); }
.hq-brand { padding: 0 8px 24px; color: white; }
.hq-brand small { color: #b8acbf; }
.hq-brand-logo { width: 100%; height: auto; padding: 8px; border-radius: 10px; background: white; }
.hq-nav { display: grid; gap: 4px; }
.hq-nav button { width: 100%; min-height: 47px; border: 0; border-radius: 11px; padding: 0 13px; display: grid; grid-template-columns: 25px 1fr auto; align-items: center; gap: 9px; color: #d4cbd9; background: transparent; cursor: pointer; text-align: left; font-weight: 750; }
.hq-nav button:hover { color: white; background: rgba(255,255,255,.06); }
.hq-nav button.active { color: white; background: #5d426f; box-shadow: inset 3px 0 0 var(--gold); }
.hq-nav button > span { color: #bca9c8; text-align: center; }
.nav-badge { min-width: 21px; height: 21px; border-radius: 999px; display: grid; place-items: center; color: white; background: var(--orange); font-size: 10px; font-style: normal; }
.hq-sidebar-bottom { margin-top: auto; display: grid; gap: 8px; }
.signed-in { padding: 12px 9px; display: flex; align-items: center; gap: 10px; }
.signed-in b, .signed-in small { display: block; }
.signed-in b { color: white; font-size: 12px; }
.signed-in small { color: #b4a9ba; font-size: 9px; }
.online-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; background: #6fcf75; box-shadow: 0 0 0 4px rgba(111,207,117,.14); }
.sidebar-action, .view-site-link { border: 0; padding: 6px 10px; color: #b8aebe; background: transparent; cursor: pointer; font-size: 10px; text-align: left; text-decoration: none; }
.edit-site-button { width: 100%; min-height: 42px; border: 0; border-radius: 9px; margin-top: 5px; color: var(--forest-dark); background: var(--gold); cursor: pointer; font-weight: 900; }
.view-site-link { text-align: center; color: #ccb9d6; font-weight: 800; }

.hq-main { min-width: 0; padding: 28px clamp(22px, 4vw, 58px) 70px; }
.hq-topbar { min-height: 64px; margin-bottom: 25px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.hq-topbar h1 { margin: 0; font: 700 clamp(28px, 3vw, 39px)/1.05 Georgia, serif; }
.topbar-actions { display: flex; align-items: center; gap: 12px; }
.system-status { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.75); color: var(--ink-soft); font-size: 10px; font-weight: 850; }
.mobile-sidebar-toggle { display: none; }
.hq-view { display: none; animation: viewIn .25s ease; }
.hq-view.active { display: block; }
@keyframes viewIn { from { opacity: 0; transform: translateY(5px); } }

.hq-hero { min-height: 300px; padding: clamp(28px, 4vw, 48px); border-radius: 25px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 45px; align-items: center; color: white; background: radial-gradient(circle at 85% 20%, rgba(205,188,217,.28), transparent 28%), linear-gradient(135deg, #704f87, #3c2c47); box-shadow: var(--shadow); }
.hq-hero .kicker { color: #d9cbe3; }
.hq-hero h2 { max-width: 780px; margin: 0; font: 700 clamp(31px, 4.2vw, 55px)/1.03 Georgia, serif; }
.hq-hero p:not(.kicker) { max-width: 760px; color: #e4dee7; font-size: 14px; }
.human-attention { margin-top: 18px; padding: 20px 22px; border: 1px solid #e4c79c; border-radius: 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #fff8ed; background: linear-gradient(135deg, #704f35, #4f3525); box-shadow: var(--shadow); }
.human-attention[hidden] { display: none; }
.human-attention .kicker { color: #f4d6aa; }
.human-attention h3 { margin: 2px 0 5px; font: 700 22px/1.15 Georgia, serif; }
.human-attention p:last-child { margin: 0; color: #f0dfca; font-size: 13px; }
.request-status-guide { margin: 0 0 16px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; display: flex; flex-wrap: wrap; gap: 10px 20px; color: var(--muted); background: rgba(255,255,255,.68); font-size: 12px; }
.request-status-guide span { display: inline-flex; align-items: center; gap: 6px; }
.request-status-guide strong { color: var(--ink); }
.status-dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.status-dot.queued { background: #d79a39; }
.status-dot.working { background: #875ba5; }
.status-dot.needed { background: #c95e4f; }
.status-dot.done { background: #5d955f; }
.request-view-link { color: var(--purple); font-weight: 850; }
.hero-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 8px; align-items: center; }
.hero-flow div { min-height: 145px; padding: 16px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; display: flex; flex-direction: column; justify-content: center; background: rgba(255,255,255,.07); }
.hero-flow span { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; color: var(--forest-dark); background: var(--gold); font-size: 10px; font-weight: 900; }
.hero-flow b { margin-top: 15px; font-size: 12px; }
.hero-flow small { margin-top: 4px; color: #d0c5d6; font-size: 9px; }
.hero-flow i { color: #c0b1c9; font-style: normal; }

.metric-grid { margin: 16px 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.metric-card { min-height: 120px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-soft); }
.metric-card span, .metric-card small { display: block; color: var(--muted); font-size: 10px; }
.metric-card span { font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.metric-card b { display: block; margin: 10px 0 5px; font: 700 30px/1 Georgia, serif; }

.hq-panel { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: var(--paper); box-shadow: var(--shadow-soft); }
.dashboard-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 14px; }
.panel-heading { margin-bottom: 15px; display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.panel-heading h3 { margin: 0; font: 700 22px/1.12 Georgia, serif; }
.panel-actions { display: flex; gap: 14px; }
.suggestion-panel { background: linear-gradient(145deg, #fcfbfd, #f0ebf3); }
.suggestion-panel > p { color: var(--ink-soft); font-size: 13px; }
.compact-list { display: grid; }
.compact-request { padding: 13px 0; display: grid; grid-template-columns: 1fr auto; gap: 12px; border-bottom: 1px solid var(--line); cursor: pointer; }
.compact-request:last-child { border: 0; }
.compact-request b { font-size: 12px; }
.compact-request small { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; }
.dashboard-preview-panel { margin-top: 14px; }
.mini-site-preview { height: 340px; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; background: white; }
.mini-site-preview iframe { width: 160%; height: 160%; border: 0; transform: scale(.625); transform-origin: top left; }

.section-toolbar { margin-bottom: 20px; display: flex; align-items: flex-end; justify-content: space-between; gap: 26px; }
.section-toolbar h2 { margin: 0; font: 700 clamp(28px, 3vw, 40px)/1.05 Georgia, serif; }
.section-toolbar p { max-width: 760px; margin: 8px 0 0; color: var(--muted); font-size: 13px; }
.toolbar-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.page-preview-controls { margin-bottom: 10px; display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.page-preview-controls > span { margin-right: 6px; color: var(--muted); font-size: 10px; }
.page-preview-controls button { min-height: 34px; border: 1px solid var(--line); border-radius: 999px; padding: 7px 12px; color: var(--muted); background: white; cursor: pointer; font-size: 10px; font-weight: 850; }
.page-preview-controls button.active { color: white; border-color: var(--forest); background: var(--forest); }
.browser-frame { position: relative; border: 1px solid #cfd8d0; border-radius: 18px; overflow: hidden; background: white; box-shadow: var(--shadow); }
.browser-bar { height: 44px; padding: 0 15px; display: flex; align-items: center; gap: 7px; background: #e8ece8; }
.browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: #c9d0ca; }
.browser-bar i:first-child { background: #df8a77; }
.browser-bar i:nth-child(2) { background: #e3bd62; }
.browser-bar i:nth-child(3) { background: #7dbd83; }
.browser-bar span { margin-left: 10px; color: var(--muted); font-size: 10px; }
.browser-frame iframe { width: 100%; height: calc(100vh - 190px); min-height: 620px; border: 0; }
.frame-edit-button { position: absolute; right: 18px; bottom: 18px; z-index: 4; min-height: 44px; border: 0; border-radius: 999px; padding: 10px 17px; color: white; background: #6f4c85; box-shadow: 0 10px 30px rgba(48,36,57,.28); cursor: pointer; font-size: 11px; font-weight: 900; }
.frame-edit-button:hover { background: #50385f; transform: translateY(-1px); }

.request-tabs { margin-bottom: 10px; display: flex; gap: 8px; }
.request-tabs button { border: 0; border-radius: 9px; padding: 8px 13px; color: var(--muted); background: transparent; cursor: pointer; font-size: 11px; font-weight: 850; }
.request-tabs button.active { color: var(--forest); background: var(--sage); }
.request-table-wrap { padding: 0; overflow: hidden; }
.request-table { width: 100%; border-collapse: collapse; }
.request-table th { padding: 13px 16px; color: var(--muted); background: #f1f3ed; font-size: 9px; letter-spacing: .09em; text-align: left; text-transform: uppercase; }
.request-table td { padding: 15px 16px; border-top: 1px solid var(--line); font-size: 11px; vertical-align: top; }
.request-table tbody tr { cursor: pointer; }
.request-table tbody tr:hover { background: #fafbf7; }
.request-title-cell b { display: block; max-width: 700px; font-size: 13px; }
.request-title-cell small { display: block; margin-top: 4px; color: var(--muted); }
.status-chip { display: inline-flex; padding: 5px 8px; border-radius: 999px; color: #7b532a; background: #f7e4c8; font-size: 9px; font-weight: 900; white-space: nowrap; }
.status-chip.green { color: #24583f; background: #dcebdc; }
.status-chip.red { color: #813f36; background: #f4d9d2; }
.status-chip.gray { color: #5f6d68; background: #e8ece8; }
.status-chip.amber { color: #7b532a; background: #f7e4c8; }
.status-chip.purple { color: #4d2f63; background: #e6d9ee; }

.inline-form { margin-bottom: 16px; display: grid; grid-template-columns: .8fr 1.2fr auto; gap: 14px; align-items: end; }
.inline-form textarea { min-height: 44px; max-height: 100px; }
.inline-form-actions { display: flex; align-items: center; gap: 10px; padding-bottom: 1px; }
.punch-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.punch-card { display: flex; flex-direction: column; }
.punch-card-top { display: flex; justify-content: space-between; gap: 12px; }
.punch-card h3 { margin: 0; font: 700 23px/1.15 Georgia, serif; }
.punch-details { color: var(--muted); font-size: 12px; }
.suggestion-box { margin: 16px 0; padding: 15px; border-radius: 13px; background: var(--sage-2); }
.suggestion-box span { color: var(--clay); font-size: 9px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.suggestion-box p { margin: 6px 0 0; color: var(--ink-soft); font-size: 12px; }
.custom-solution { min-height: 82px; }
.punch-actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; }
.chosen-solution { margin-top: auto; padding-top: 13px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 11px; }

.content-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.content-card { min-height: 285px; display: flex; flex-direction: column; }
.content-meta, .content-footer { display: flex; justify-content: space-between; gap: 12px; }
.content-meta { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.content-card h3 { margin: 45px 0 12px; font: 700 26px/1.12 Georgia, serif; }
.content-card p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.content-footer { margin-top: auto; padding-top: 17px; align-items: center; border-top: 1px solid var(--line); }
.content-studio-heading p { max-width: 760px; }
.studio-stats { margin-bottom: 18px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.studio-stats article { min-height: 105px; padding: 18px; border: 1px solid var(--line); border-radius: 15px; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(145deg, #fff, #f3eef6); box-shadow: 0 8px 20px rgba(55,39,65,.06); }
.studio-stats b { color: var(--purple); font: 700 33px/1 Georgia, serif; }
.studio-stats span { margin-top: 6px; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.content-filters { margin: 0 0 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.content-filters button { min-height: 37px; border: 1px solid var(--line); border-radius: 999px; padding: 8px 13px; color: var(--ink-soft); background: white; cursor: pointer; font-size: 10px; font-weight: 850; }
.content-filters button:hover, .content-filters button.active { color: white; border-color: var(--purple); background: var(--purple); }
.content-library { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.studio-card { min-width: 0; padding: 0; overflow: hidden; }
.studio-card-image { position: relative; height: 245px; margin: 0; overflow: hidden; background: #d8cedd; }
.studio-card-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .35s ease; }
.studio-card[data-content-pillar="personal"] .studio-card-image img { object-position: 50% 22%; }
.studio-card:hover .studio-card-image img { transform: scale(1.025); }
.studio-card-image figcaption { position: absolute; inset: auto 0 0; padding: 45px 17px 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: white; background: linear-gradient(transparent, rgba(35,24,42,.92)); }
.studio-card-image figcaption span { font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.studio-card-image figcaption b { border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: 5px 8px; background: rgba(255,255,255,.12); font-size: 8px; letter-spacing: .06em; text-transform: uppercase; }
.studio-card-body { position: relative; padding: 20px; }
.studio-card-number { position: absolute; top: 20px; right: 20px; color: #c9b9d1; font: 700 28px/1 Georgia, serif; }
.studio-card h3 { max-width: calc(100% - 55px); margin: 0; font: 700 28px/1.08 Georgia, serif; letter-spacing: -.02em; }
.studio-dek { min-height: 42px; margin: 8px 0 16px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.quick-copy-row { display: flex; flex-wrap: wrap; gap: 7px; }
.quick-copy-row button, .channel-copy button, .package-footer button { border: 1px solid #cdbed5; border-radius: 8px; padding: 7px 9px; color: var(--purple); background: #fbf8fc; cursor: pointer; font-size: 9px; font-weight: 850; }
.quick-copy-row button:hover, .channel-copy button:hover, .package-footer button:hover { color: white; border-color: var(--purple); background: var(--purple); }
.content-package { margin-top: 15px; border-top: 1px solid var(--line); }
.content-package summary { padding: 14px 0 0; cursor: pointer; color: var(--ink); font-size: 10px; font-weight: 900; }
.content-package[open] summary { padding-bottom: 5px; }
.channel-copy { margin-top: 10px; padding: 13px; border-radius: 11px; background: #f7f3f8; }
.channel-copy > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.channel-copy h4 { margin: 0; color: var(--purple); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.channel-copy p { max-height: 230px; margin: 9px 0 0; overflow: auto; white-space: pre-line; color: var(--ink-soft); font-size: 10px; line-height: 1.6; }
.package-footer { margin-top: 11px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.package-footer a { color: var(--forest-light); font-size: 9px; font-weight: 850; text-align: right; }
.package-sources { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.source-note { margin: 9px 0 0; padding-top: 9px; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; line-height: 1.55; }
.hashtag-line { margin: 10px 0 0; color: #76518d; font-size: 9px; line-height: 1.5; }
.newsletter-workbench { margin-top: 18px; padding: 0; display: grid; grid-template-columns: minmax(0, .9fr) minmax(330px, 1.1fr); overflow: hidden; background: #302439; }
.newsletter-workbench-copy { padding: clamp(25px, 4vw, 44px); color: white; }
.newsletter-workbench-copy .kicker { color: #d8c5e3; }
.newsletter-workbench-copy h2 { margin: 7px 0 11px; font: 700 37px/1.04 Georgia, serif; letter-spacing: -.025em; }
.newsletter-workbench-copy > p:not(.kicker) { color: #d8d1dc; font-size: 12px; line-height: 1.7; }
.newsletter-actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 9px; }
.newsletter-preview { margin: 18px; padding: 30px; border-radius: 13px; color: #302439; background: #fcfbf8; box-shadow: 0 15px 40px rgba(0,0,0,.22); }
.newsletter-preview > span { color: var(--purple); font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.newsletter-preview h3 { margin: 7px 0 9px; font: 700 26px/1.08 Georgia, serif; }
.newsletter-preview > p { color: var(--muted); font-size: 10px; }
.newsletter-preview > div { padding: 10px 0; border-top: 1px solid var(--line); }
.newsletter-preview b, .newsletter-preview small { display: block; }
.newsletter-preview b { font: 700 16px Georgia, serif; }
.newsletter-preview small { margin-top: 2px; color: var(--muted); font-size: 9px; }
.newsletter-preview em { display: block; margin-top: 18px; color: var(--purple); font: italic 700 17px Georgia, serif; }
.newsletter-readiness { margin-bottom: 16px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.newsletter-readiness article { min-height: 112px; padding: 17px; border: 1px solid var(--line); border-radius: 15px; display: flex; flex-direction: column; background: white; box-shadow: var(--shadow-soft); }
.newsletter-readiness article::before { content: ''; width: 9px; height: 9px; margin-bottom: 12px; border-radius: 50%; background: #b7a1c6; box-shadow: 0 0 0 5px rgba(183,161,198,.17); }
.newsletter-readiness article.ready::before { background: #5e8f68; box-shadow: 0 0 0 5px rgba(94,143,104,.14); }
.newsletter-readiness span { color: var(--clay); font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.newsletter-readiness b { margin-top: 7px; font: 700 17px Georgia, serif; }
.newsletter-readiness small { margin-top: auto; padding-top: 7px; color: var(--muted); font-size: 9px; }
.newsletter-studio-grid { display: grid; grid-template-columns: minmax(390px, .88fr) minmax(420px, 1.12fr); gap: 16px; align-items: start; }
.newsletter-builder { padding: 24px; }
.newsletter-builder h3, .newsletter-safety h3, .newsletter-launch-gate h3 { margin: 0; font: 700 25px/1.12 Georgia, serif; }
.autosave-note { color: var(--muted); font-size: 9px; font-weight: 750; }
.newsletter-module-picker { margin: 19px 0 4px; padding: 0; border: 0; }
.newsletter-module-picker legend { margin-bottom: 8px; color: var(--ink-soft); font-size: 10px; font-weight: 850; }
.newsletter-module-picker label { margin: 0 0 8px; padding: 11px; border: 1px solid var(--line); border-radius: 11px; display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; background: #faf8fb; cursor: pointer; }
.newsletter-module-picker input { width: 17px; min-height: 17px; margin: 2px 0 0; accent-color: var(--purple); }
.newsletter-module-picker b, .newsletter-module-picker small { display: block; }
.newsletter-module-picker b { font-size: 11px; }
.newsletter-module-picker small { margin-top: 3px; color: var(--muted); font-size: 9px; line-height: 1.45; }
.newsletter-builder-actions { margin-top: 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.newsletter-builder-actions > span { color: var(--muted); font-size: 10px; }
.newsletter-preview-column { display: grid; gap: 14px; }
.newsletter-live-preview { overflow: hidden; border: 1px solid #d8cedd; border-radius: 18px; background: #efedf0; box-shadow: var(--shadow); }
.email-preview-head { padding: 12px 16px; border-bottom: 1px solid var(--line); background: white; font-size: 10px; }
.email-preview-head b, .email-preview-head span { display: block; }
.email-preview-head span { margin-top: 3px; color: var(--muted); }
.email-preview-paper { max-width: 600px; margin: 20px auto; overflow: hidden; background: #fcfbfd; box-shadow: 0 10px 25px rgba(48,36,57,.12); }
.email-preview-brand { padding: 26px 28px; color: white; background: #302439; }
.email-preview-brand span { color: #cbb9d7; font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.email-preview-brand h3 { margin: 6px 0 0; font: 700 27px Georgia, serif; }
.email-preview-body { padding: 28px; color: #2d2931; font-size: 12px; line-height: 1.65; }
.email-preview-body > h2 { margin: 0 0 16px; font: 700 29px/1.12 Georgia, serif; }
.email-preview-body > p { white-space: pre-line; }
.email-preview-module { margin-top: 24px; padding-top: 18px; border-top: 1px solid #ddd9e1; }
.email-preview-module img { width: 100%; height: 170px; border-radius: 10px; object-fit: cover; }
.email-preview-module h4 { margin: 12px 0 7px; color: #65477d; font: 700 19px/1.2 Georgia, serif; }
.email-preview-module p { margin: 0; white-space: pre-line; }
.email-preview-module a { display: inline-block; margin-top: 9px; color: #65477d; font-size: 10px; font-weight: 850; }
.email-preview-signoff { margin-top: 25px; white-space: pre-line; }
.email-preview-footer { padding: 22px 28px; border-top: 4px solid #b6a2c6; color: #5e5964; background: #f1eef3; font-size: 9px; line-height: 1.6; }
.email-preview-footer b { color: #302439; }
.newsletter-safety { color: white; background: #65477d; }
.newsletter-safety .kicker { color: #ded0e6; }
.newsletter-safety p:last-child { margin-bottom: 0; color: #eee8f1; font-size: 11px; }
.newsletter-launch-gate { margin-top: 16px; display: grid; grid-template-columns: minmax(240px, .72fr) minmax(420px, 1.28fr); gap: 24px; align-items: start; }
.newsletter-launch-gate ol { margin: 0; padding: 0; list-style: none; counter-reset: setup-step; }
.newsletter-launch-gate li { position: relative; min-height: 48px; padding: 2px 0 12px 39px; counter-increment: setup-step; border-bottom: 1px solid var(--line); }
.newsletter-launch-gate li + li { padding-top: 12px; }
.newsletter-launch-gate li::before { content: counter(setup-step); position: absolute; left: 0; top: 0; width: 25px; height: 25px; border-radius: 50%; display: grid; place-items: center; color: white; background: var(--purple); font-size: 9px; font-weight: 900; }
.newsletter-launch-gate li + li::before { top: 10px; }
.newsletter-launch-gate b, .newsletter-launch-gate span { display: block; }
.newsletter-launch-gate b { font-size: 11px; }
.newsletter-launch-gate span { margin-top: 3px; color: var(--muted); font-size: 10px; }
.newsletter-launch-gate .newsletter-builder-actions { grid-column: 1 / -1; margin-top: 0; padding-top: 15px; border-top: 1px solid var(--line); }
.operating-note { margin-top: 14px; color: white; background: var(--forest); }
.operating-note .kicker { color: #d9cbe3; }
.operating-note h3 { margin: 0; font: 700 27px Georgia, serif; }
.operating-note p:last-child { margin-bottom: 0; color: #ddd4e1; }
.research-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.research-card > span { color: var(--clay); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.research-card h3 { margin: 22px 0 10px; font: 700 26px/1.1 Georgia, serif; }
.research-card p { color: var(--ink-soft); font-size: 12px; }
.research-card a { color: var(--forest-light); font-size: 11px; font-weight: 850; }
.activity-list { padding: 0 22px; }
.activity-row { padding: 15px 0; display: grid; grid-template-columns: 170px 1fr auto; gap: 14px; border-bottom: 1px solid var(--line); font-size: 11px; }
.activity-row:last-child { border: 0; }
.activity-row b { font-size: 11px; }
.activity-row span, .activity-row time { color: var(--muted); }
.loading-row, .empty-row { padding: 35px 15px; color: var(--muted); font-size: 12px; text-align: center; }

label { display: block; margin: 13px 0 6px; color: var(--ink-soft); font-size: 10px; font-weight: 850; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: white; outline: none; }
input, select { min-height: 42px; padding: 0 11px; }
textarea { min-height: 115px; padding: 10px 11px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: #8c6ca1; box-shadow: 0 0 0 3px rgba(140,108,161,.16); }
.form-error { min-height: 18px; margin: 9px 0 0; color: #a44539; font-size: 10px; font-weight: 750; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.request-context { margin: 2px 0 4px; padding: 10px 12px; border: 1px solid #d9cde0; border-radius: 10px; background: #f5f0f7; }
.request-context span, .request-context b { display: block; }
.request-context span { color: var(--muted); font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.request-context b { margin-top: 3px; font-size: 11px; }
.request-priority { max-width: 220px; }
.file-drop { min-height: 78px; padding: 15px; border: 1px dashed #9eb0a5; border-radius: 11px; cursor: pointer; background: #f5f7f2; }
.file-drop b, .file-drop span { display: block; }
.file-drop span { margin-top: 3px; color: var(--muted); font-size: 9px; }
.file-drop input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.file-list { margin-top: 7px; display: grid; gap: 5px; }
.file-list span { padding: 6px 8px; border-radius: 7px; color: var(--ink-soft); background: var(--sage-2); font-size: 9px; }

.login-screen { position: fixed; inset: 0; z-index: 100; padding: 24px; display: grid; place-items: center; background: radial-gradient(circle at 70% 10%, rgba(205,188,217,.28), transparent 25%), linear-gradient(145deg, #694a7f, #2b2032); }
.login-card { width: min(470px, 100%); padding: 38px; border-radius: 24px; background: var(--paper); box-shadow: 0 35px 90px rgba(0,0,0,.35); }
.login-mark { width: 64px; height: 64px; margin-bottom: 20px; border: 3px solid var(--gold); border-radius: 50%; overflow: hidden; display: grid; place-items: center; background: var(--gold); }
.login-mark img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.login-card h1 { margin: 0; font: 700 37px/1.05 Georgia, serif; }
.login-card > p:not(.kicker):not(.form-error) { color: var(--muted); font-size: 13px; }
.login-card .text-link { display: block; margin-top: 18px; text-align: center; }

dialog { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; border: 0; padding: 0; background: transparent; }
dialog::backdrop { background: rgba(37,27,43,.68); backdrop-filter: blur(4px); }
.dialog-shell { width: min(620px, calc(100% - 28px)); max-height: calc(100vh - 36px); margin: 18px auto; padding: 28px; border-radius: 22px; overflow-y: auto; background: var(--paper); box-shadow: 0 32px 90px rgba(0,0,0,.32); }
.dialog-heading { display: flex; justify-content: space-between; gap: 16px; }
.dialog-heading h2 { margin: 0; font: 700 31px/1.05 Georgia, serif; }
.dialog-close { width: 36px; height: 36px; border: 0; border-radius: 50%; color: var(--ink-soft); background: var(--sage-2); cursor: pointer; font-size: 24px; }
.dialog-help { color: var(--muted); font-size: 11px; }
.dialog-actions { margin-top: 18px; display: flex; gap: 9px; }
.detail-shell section { margin: 18px 0; }
.detail-shell section h3 { margin: 0 0 7px; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.detail-shell section p { margin: 0; white-space: pre-wrap; color: var(--ink-soft); font-size: 12px; }
.detail-meta { margin: 14px 0; display: flex; flex-wrap: wrap; gap: 7px; }
.understanding-box { padding: 16px; border-radius: 13px; background: var(--sage-2); }
.attachment-list { display: flex; flex-wrap: wrap; gap: 7px; }
.attachment-list a { padding: 7px 9px; border-radius: 8px; color: var(--forest); background: var(--sage); font-size: 10px; font-weight: 800; text-decoration: none; }
.reply-panel { margin: 20px 0; padding: 18px; border: 1px solid #cfb3aa; border-radius: 15px; background: #fff4ef; }
.reply-panel h3 { margin: 2px 0 5px; font: 700 21px/1.15 Georgia, serif; text-transform: none; letter-spacing: 0; }
.reply-panel > p:not(.kicker):not(.form-error) { margin: 0 0 13px; color: var(--ink-soft); font-size: 11px; }
.reply-panel label { display: block; margin: 0 0 6px; font-size: 10px; font-weight: 850; }
.reply-panel textarea { min-height: 105px; }
.request-conversation { display: grid; gap: 9px; }
.conversation-message { padding: 12px 13px; border: 1px solid var(--line); border-radius: 11px; background: white; }
.conversation-message.question { border-left: 4px solid #a25d4f; background: #fff8f5; }
.conversation-message.answer { border-left: 4px solid #76518d; background: #faf7fc; }
.conversation-message > div { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 5px; color: var(--ink); font-size: 10px; }
.conversation-message time { color: var(--muted); font-weight: 650; }
.conversation-message p { white-space: pre-wrap; }
.help-bubble { position: fixed; right: 24px; bottom: 23px; z-index: 30; width: 53px; height: 53px; border: 0; border-radius: 50%; color: var(--forest-dark); background: var(--gold); box-shadow: var(--shadow); cursor: pointer; font-size: 22px; font-weight: 900; }
.toast { position: fixed; right: 25px; bottom: 90px; z-index: 120; max-width: min(360px, calc(100% - 40px)); padding: 12px 15px; border-radius: 11px; color: white; background: var(--forest); box-shadow: var(--shadow); opacity: 0; transform: translateY(12px); pointer-events: none; transition: .2s ease; font-size: 11px; font-weight: 800; }
.toast.show { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .public-hero { grid-template-columns: 1fr; }
  .hero-art { min-height: 560px; width: min(650px, 100%); }
  .note-grid { grid-template-columns: 1fr 1fr; }
  .feature-note { grid-column: 1 / -1; }
  .hq-shell { grid-template-columns: 238px minmax(0, 1fr); }
  .hq-hero { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr 1fr; }
  .content-library { grid-template-columns: 1fr; }
  .inline-form { grid-template-columns: 1fr 1fr; }
  .inline-form-actions { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .public-header { min-height: 68px; }
  .mobile-menu { display: block; border: 0; border-radius: 8px; padding: 8px 10px; color: white; background: var(--forest); font-size: 11px; font-weight: 800; }
  .public-nav { position: absolute; top: 100%; left: 0; right: 0; padding: 18px 24px; display: none; align-items: stretch; background: var(--paper); box-shadow: var(--shadow); }
  .public-nav.open { display: grid; }
  .home-note-invite { align-items: flex-start; flex-direction: column; }
  .public-nav a { padding: 10px; }
  .public-hero { min-height: auto; padding-top: 80px; }
  .public-hero h1 { font-size: clamp(46px, 13vw, 70px); }
  .trust-row { grid-template-columns: 1fr; }
  .hero-art { min-height: 460px; }
  .art-card-main { max-width: 430px; }
  .art-note { left: 0; bottom: 50px; }
  .art-stat { right: 0; }
  .story-grid, .proof-section, .contact-card { grid-template-columns: 1fr; }
  .service-grid, .note-grid { grid-template-columns: 1fr; }
  .feature-note { grid-column: auto; }
  .public-footer { grid-template-columns: 1fr; }
  .hq-shell { grid-template-columns: 1fr; }
  .hq-sidebar { position: fixed; left: 0; top: 0; width: 272px; transform: translateX(-105%); transition: .22s ease; box-shadow: var(--shadow); }
  .hq-sidebar.open { transform: none; }
  .mobile-sidebar-toggle { display: block; width: 39px; height: 39px; border: 0; border-radius: 9px; background: var(--sage); cursor: pointer; }
  .hq-main { padding: 20px 15px 60px; }
  .system-status { display: none; }
  .punch-grid, .research-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .studio-stats, .newsletter-readiness { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .newsletter-workbench, .newsletter-studio-grid, .newsletter-launch-gate { grid-template-columns: 1fr; }
  .newsletter-launch-gate .newsletter-builder-actions { grid-column: auto; }
  .browser-frame iframe { height: 680px; }
  .activity-row { grid-template-columns: 1fr; gap: 3px; }
}

@media (max-width: 580px) {
  .human-attention { align-items: flex-start; flex-direction: column; }
  .public-section { padding: 70px 20px; }
  .public-hero { padding-left: 20px; padding-right: 20px; }
  .hero-art { min-height: 380px; }
  .art-card-main { top: 20px; }
  .art-note { width: 170px; bottom: 10px; }
  .art-stat { width: 190px; bottom: -35px; }
  .art-card b { font-size: 14px; }
  .contact-card { padding: 30px 23px; }
  .contact-actions { min-width: 0; }
  .hq-topbar { align-items: flex-start; }
  .topbar-actions .button { display: none; }
  .hq-hero { padding: 27px 20px; }
  .hero-flow { grid-template-columns: 1fr; }
  .hero-flow i { transform: rotate(90deg); text-align: center; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .mini-site-preview { height: 260px; }
  .section-toolbar { align-items: flex-start; flex-direction: column; }
  .request-table th:nth-child(2), .request-table td:nth-child(2), .request-table th:nth-child(4), .request-table td:nth-child(4) { display: none; }
  .inline-form, .form-row { grid-template-columns: 1fr; }
  .inline-form-actions { grid-column: auto; }
  .dialog-shell { padding: 22px 18px; }
  .dialog-actions { flex-direction: column; }
  .studio-card-image { height: 210px; }
  .studio-card h3 { font-size: 24px; }
  .quick-copy-row button { flex: 1 1 120px; }
  .newsletter-preview { margin: 0 14px 14px; padding: 22px; }
  .newsletter-readiness { grid-template-columns: 1fr 1fr; }
  .newsletter-studio-grid { grid-template-columns: 1fr; }
  .newsletter-builder { padding: 19px; }
  .email-preview-paper { margin: 10px; }
  .email-preview-body, .email-preview-brand, .email-preview-footer { padding-left: 20px; padding-right: 20px; }
  .login-card { padding: 29px 22px; }
}

/* Davis visual story */
.davis-hero-art { min-height: 650px; }
.hero-photo-card { position: absolute; margin: 0; border: 1px solid rgba(255,255,255,.24); border-radius: 18px; overflow: hidden; background: #302439; box-shadow: 0 24px 55px rgba(0,0,0,.3); }
.hero-photo-card img { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-photo-card figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 13px 10px; color: white; background: linear-gradient(transparent, rgba(27,19,31,.9)); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.hero-bike-card { width: 265px; height: 185px; left: -28px; bottom: 62px; transform: rotate(-4deg); }
.hero-greenbelt-card { width: 278px; height: 185px; right: -18px; bottom: 0; transform: rotate(3deg); }
.story-links { display: flex; flex-wrap: wrap; gap: 10px 20px; padding-top: 7px; }

.davis-life-section { color: white; background: #2f2437; }
.davis-life-section .kicker { color: #d7c7e1; }
.davis-life-section .section-heading > p:last-child { color: #d9d3dc; }
.story-filters { margin: 32px 0 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.story-filters button { min-height: 38px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 8px 14px; color: #e5dfe8; background: transparent; cursor: pointer; font-size: 11px; font-weight: 800; }
.story-filters button:hover, .story-filters button.active { color: #302439; border-color: var(--gold); background: var(--gold); }
.davis-photo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 230px; gap: 11px; }
.photo-story { position: relative; min-width: 0; border: 0; border-radius: 17px; padding: 0; overflow: hidden; cursor: zoom-in; color: white; background: #493654; box-shadow: 0 12px 28px rgba(0,0,0,.2); text-align: left; }
.photo-story-wide { grid-column: span 2; }
.photo-story-tall { grid-row: span 2; }
.photo-story img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.photo-story:hover img { transform: scale(1.035); filter: saturate(1.08); }
.photo-story-overlay { position: absolute; inset: auto 0 0; padding: 48px 18px 16px; background: linear-gradient(transparent, rgba(29,21,34,.92)); }
.photo-story-overlay small, .photo-story-overlay b { display: block; }
.photo-story-overlay small { margin-bottom: 4px; color: #d7cadf; font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.photo-story-overlay b { max-width: 470px; font: 700 17px/1.22 Georgia, serif; }
.photo-story-overlay::after { content: "Photo + local guide →"; display: block; margin-top: 9px; color: #eadcf1; font-size: 10px; font-weight: 750; letter-spacing: .025em; }
.gallery-note { max-width: 860px; margin: 18px 0 0; color: #bfb6c4; font-size: 9px; }
.map-invite { margin-top: 34px; padding: clamp(24px, 4vw, 42px); border: 1px solid rgba(255,255,255,.14); border-radius: 24px; display: flex; align-items: center; justify-content: space-between; gap: 30px; background: linear-gradient(135deg, rgba(122,82,150,.38), rgba(255,255,255,.06)); }
.map-invite > div { max-width: 760px; }
.map-invite h3 { margin: 5px 0 10px; font: 700 clamp(25px, 3vw, 39px)/1.08 Georgia, serif; }
.map-invite p:last-child { margin: 0; color: #d7cfda; }
.wild-davis-strip { position: relative; margin-top: 12px; padding: clamp(24px, 4vw, 38px); border: 1px solid rgba(255,255,255,.15); border-radius: 18px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px 30px; align-items: end; overflow: hidden; background: linear-gradient(120deg, rgba(255,255,255,.09), rgba(157,116,183,.2)); }
.wild-davis-strip > div:not(.wild-davis-motion) { position: relative; z-index: 2; max-width: 760px; }
.wild-davis-strip h3 { margin: 5px 0 10px; font: 700 clamp(24px, 3vw, 38px)/1.08 Georgia, serif; }
.wild-davis-strip p:last-child { margin: 0; color: #d7cfda; }
.wild-davis-strip .button { position: relative; z-index: 2; }
.pond-story { padding: 20px 4px 0; max-width: 900px; color: #e1d7e7; }
.pond-story summary { cursor: pointer; font-weight: 750; }
.pond-story p { font-size: 13px; }
.pond-story a { color: #e1d7e7; }
.wild-davis-motion { position: absolute; inset: 0; pointer-events: none; opacity: .16; }
.wild-turkey-mark, .wild-bike-mark { position: absolute; bottom: 14px; width: 85px; height: 60px; animation: wild-crossing 4s linear 1 both; animation-play-state: paused; }
.wild-bike-mark { bottom: 48px; width: 70px; animation-delay: .5s; }
.wild-davis-strip.visible .wild-turkey-mark, .wild-davis-strip.visible .wild-bike-mark { animation-play-state: running; }
@keyframes wild-crossing { from { transform: translateX(-120px); } to { transform: translateX(calc(100vw + 120px)); } }

.community-section { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: stretch; gap: clamp(35px, 7vw, 95px); background: #f1eef3; }
.community-photo { min-height: 590px; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); }
.community-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.community-copy { align-self: center; }
.community-copy h2 { margin: 0; font: 700 clamp(38px, 5vw, 66px)/1.03 Georgia, serif; letter-spacing: -.035em; }
.community-copy > p:not(.kicker) { max-width: 680px; color: var(--ink-soft); font-size: 16px; }
.community-points { margin-top: 30px; display: grid; gap: 0; }
.community-points div { padding: 18px 0; border-top: 1px solid var(--line); }
.community-points b, .community-points span { display: block; }
.community-points b { margin-bottom: 4px; font: 700 21px Georgia, serif; }
.community-points span { color: var(--muted); font-size: 12px; }
.photo-note { overflow: hidden; }
.photo-note > img { width: calc(100% + 48px); height: 180px; margin: -24px -24px 0; object-fit: cover; }
.feature-note.photo-note > img { height: 145px; opacity: .78; filter: saturate(.75) contrast(1.08); }

.public-footer { grid-template-columns: auto minmax(0, 1fr) auto; align-items: start; }
.footer-copy { display: grid; gap: 8px; }
.photo-credits { color: #aaa2af; font-size: 9px; }
.photo-credits summary { cursor: pointer; color: #cfc6d4; font-weight: 800; }
.photo-credits p { margin-top: 8px; line-height: 1.65; }
.photo-credits a { color: #ddd2e3; }

.photo-dialog { padding: 22px; }
.photo-dialog-shell { position: relative; width: min(1120px, 100%); max-height: calc(100vh - 44px); margin: 0 auto; border-radius: 22px; overflow: auto; color: white; background: #2b2032; box-shadow: 0 35px 90px rgba(0,0,0,.5); }
.photo-dialog-shell img { width: 100%; max-height: calc(100vh - 190px); display: block; object-fit: contain; background: #211827; }
.photo-dialog-shell > div { padding: 20px 24px 24px; }
.photo-dialog-shell h2 { margin: 0; font: 700 28px/1.15 Georgia, serif; }
.photo-dialog-story-link { display: inline-block; margin-top: 12px; color: #dbc7e7; font-size: 11px; font-weight: 850; text-decoration: none; }
.photo-dialog-story-link:hover { color: white; text-decoration: underline; }
.photo-dialog-close { position: absolute; top: 13px; right: 13px; z-index: 2; color: white; background: rgba(37,27,43,.78); }

/* HQ media library and testing guide */
.media-intro { margin-bottom: 18px; padding: 18px; border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0; background: #f8f5fa; color: var(--ink-soft); font-size: 12px; }
.media-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.media-card { min-width: 0; padding: 0; overflow: hidden; }
.media-card img { width: 100%; aspect-ratio: 4 / 3; display: block; object-fit: cover; }
.media-card-copy { padding: 15px; }
.media-card-copy h3 { margin: 0 0 6px; font: 700 20px/1.1 Georgia, serif; }
.media-card-copy p { margin: 0; color: var(--muted); font-size: 10px; }
.test-paths { margin-top: 16px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
.test-paths div { padding: 13px; border: 1px solid var(--line); border-radius: 11px; background: rgba(255,255,255,.7); }
.test-paths b, .test-paths span { display: block; }
.test-paths b { font-size: 11px; }
.test-paths span { margin-top: 4px; color: var(--muted); font-size: 9px; }

@media (max-width: 1120px) {
  .davis-photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .map-invite { align-items: flex-start; flex-direction: column; }
  .wild-davis-strip { grid-template-columns: 1fr; align-items: start; }
  .community-section { grid-template-columns: 1fr; }
  .community-photo { min-height: 420px; }
  .davis-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 220px; }
  .test-paths { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .public-brand-phone { display: block; font-size: 8px; letter-spacing: .025em; }
  .davis-hero-art { min-height: 500px; }
  .profile-card.art-card-main { height: 410px; }
  .profile-card .profile-card-copy { inset: auto 0 0; padding: 74px 16px 15px; }
  .profile-card .profile-card-copy b { max-width: 150px; font-size: 15px; }
  .hero-bike-card { width: 52%; height: 140px; left: -8px; bottom: 52px; }
  .hero-greenbelt-card { width: 54%; height: 140px; right: -7px; bottom: -15px; }
  .davis-photo-grid { grid-template-columns: 1fr; grid-auto-rows: 245px; }
  .photo-story-wide, .photo-story-tall { grid-column: auto; grid-row: auto; }
  .community-photo { min-height: 340px; }
  .public-footer { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .wild-turkey-mark, .wild-bike-mark { animation: none; right: 20px; }
}
/* Recommendation-first HQ */
.hq-more {margin-top:18px;width:100%}
.hq-more summary {padding:12px 16px;cursor:pointer;font-size:13px;color:#ddd}
.hq-more button {width:100%}
.calm-hero {grid-template-columns:1.5fr 1fr!important;gap:40px!important}
.calm-hero h2 {font-size:clamp(30px,3.5vw,48px);line-height:1.12;letter-spacing:-1.2px}
.calm-note {align-self:center;background:#ffffff12;border:1px solid #ffffff25;border-radius:18px;padding:26px;color:#fff}
.calm-note p {font-size:17px!important}
.calm-note small {color:#eee}
.decision-lanes {display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;margin:30px 0}
.lane-heading {display:flex;gap:16px;justify-content:space-between;align-items:center;margin-bottom:16px}
.lane-heading h2 {font-size:24px;margin:3px 0}
.lane-heading>span {font-size:12px;color:#665d70;white-space:nowrap}
.recommendation-card {padding:26px!important;display:block!important;height:auto!important}
.recommendation-card h3 {font-size:22px;line-height:1.3;margin:10px 0 18px}
.recommendation-card .suggestion-box {margin:0 0 18px;background:#f4effa;border-left:3px solid #8e5ca9;padding:18px}
.recommendation-card .suggestion-box p {line-height:1.65;margin:8px 0 0}
.decision-context,.alternate-route {margin:16px 0;font-size:14px}
.decision-context summary,.alternate-route summary {cursor:pointer;color:#64467f;font-weight:600;padding:6px 0}
.alternate-route label {display:block;margin-top:12px}
.alternate-route textarea {width:100%;margin:8px 0}
.hq-history {margin:24px 0;grid-column:1/-1}
.hq-history>summary {cursor:pointer;padding:18px;background:#f3f0f5;border-radius:10px;font-weight:600;margin-bottom:18px}
.history-item {padding:18px;border-bottom:1px solid #e5dfeb}
.owner-tabs {display:flex;gap:8px;margin:22px 0}
.owner-tabs button {border:1px solid #d8cce2;border-radius:30px;padding:13px 22px;background:white;cursor:pointer;font:inherit}
.owner-tabs button.active {background:#5d397a;color:white;border-color:#5d397a}
.rhythm-panel {padding:26px}
.rhythm-grid {display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.rhythm-grid b {display:block;margin-bottom:6px}
.rhythm-grid p {font-size:14px;line-height:1.6}
.review-grid {display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px;margin:28px 0}
.review-card {margin:0;padding:26px;border:1px solid #e4dcea;border-radius:18px;background:#fff}
.review-card blockquote {margin:18px 0;font-size:21px;line-height:1.5}
.review-card figcaption {font-size:14px;line-height:1.7}
.review-stars {color:#78519d;letter-spacing:3px}
.review-section .fine-print {max-width:850px}
@media(max-width:1050px){.review-grid{grid-template-columns:repeat(2,1fr)}.decision-lanes{grid-template-columns:1fr}.calm-hero{grid-template-columns:1fr!important}.calm-note{display:none}}
@media(max-width:600px){.review-grid,.rhythm-grid{grid-template-columns:1fr}.owner-tabs button{padding:12px 15px}.recommendation-card{padding:20px!important}.lane-heading h2{font-size:22px}}

/* Client contact tools */
.public-hero h1 { font-size:clamp(42px,4.3vw,66px); line-height:1.06; }
.consultation-layout { display:grid; grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr); gap:clamp(28px,5vw,72px); margin-top:65px; scroll-margin-top:115px; }
.consultation-intro h2 { font:700 clamp(32px,3.4vw,48px)/1.12 Georgia,serif; margin:0 0 24px; }
.consultation-intro p { line-height:1.7; }
.conversation-steps { padding-left:24px; }
.conversation-steps li { padding:0 0 20px 8px; line-height:1.6; }
.conversation-steps b { display:block; }
.consultation-form { padding:clamp(22px,3vw,40px); border:1px solid #d8cce2; border-radius:22px; background:white; color:#302439; box-shadow:0 14px 40px #30243909; min-width:0; }
.consultation-form h3 { font:700 25px/1.3 Georgia,serif; margin:0 0 24px; }
.consultation-form label,.consultation-form legend { display:block; font-size:14px; font-weight:700; margin-bottom:7px; }
.consultation-form label span {font-weight:400; font-size:12px;}
.consultation-form input:not([type=radio]),.consultation-form select,.consultation-form textarea { width:100%; box-sizing:border-box; padding:13px; border:1px solid #bfb4c7; border-radius:8px; background:#fff; color:#302439; font:inherit; margin-bottom:19px; }
.consultation-form textarea {resize:vertical;}
.consultation-form fieldset { padding:0; border:0; margin:0 0 18px; display:flex; flex-wrap:wrap; gap:20px; }
.consultation-form fieldset label {display:flex;gap:8px;align-items:center;min-height:38px;margin:0;}
.consultation-form input[type=radio] {accent-color:#654276;width:19px;height:19px;}
.consultation-fields {display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.consultation-fields>div {min-width:0;}
.consultation-form .fine-print {line-height:1.65;font-size:13px;}
.consultation-form .button {width:100%;}
.consultation-form .button:disabled {opacity:.65;cursor:wait;}
.form-trap {position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden;}
.form-feedback {font-size:15px;line-height:1.6;color:#32533c;}
.form-feedback:empty {margin:0;}
.form-error {color:#952b2b;}
.consultation-form :focus-visible,.client-inquiries :focus-visible {outline:3px solid #8962a2;outline-offset:3px;}
.privacy-copy {max-width:940px;margin:auto;line-height:1.8;}
.client-inquiries {padding:26px;margin:24px 0;}
.crm-teaser {display:flex;align-items:center;justify-content:space-between;gap:24px;padding:24px;margin:24px 0;}
.crm-teaser h3,.crm-practice h3 {margin:4px 0 8px;font:700 26px/1.15 Georgia,serif;}
.crm-teaser p {margin:0;max-width:720px;color:var(--muted);}
.crm-summary {display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin:24px 0;}
.crm-summary article {padding:20px;border:1px solid var(--line);border-radius:14px;background:white;box-shadow:var(--shadow);}
.crm-summary span,.crm-summary b {display:block;}
.crm-summary span {color:var(--muted);font-size:10px;font-weight:850;text-transform:uppercase;letter-spacing:.12em;}
.crm-summary b {margin-top:8px;font:700 34px/1 Georgia,serif;color:var(--purple);}
.crm-filter {display:flex;align-items:center;gap:8px;color:var(--muted);font-size:10px;font-weight:800;}
.crm-filter select {min-height:40px;border:1px solid #bfb4c7;border-radius:8px;padding:8px;background:white;font:inherit;color:var(--ink);}
.crm-practice {padding:24px;border-left:5px solid var(--sage);border-radius:0 14px 14px 0;background:#f6f3f8;}
.crm-practice p:last-child {max-width:800px;color:var(--muted);line-height:1.6;}
.inquiry-card {padding:20px 0;border-top:1px solid #e4dcea;overflow-wrap:anywhere;}
.inquiry-card-heading {display:flex;align-items:flex-start;justify-content:space-between;gap:14px;}
.inquiry-card h4 {margin:0 0 8px;font-size:18px;}
.inquiry-card p {white-space:pre-wrap;line-height:1.6;}
.inquiry-actions {display:flex;flex-wrap:wrap;gap:12px;align-items:center;}
.inquiry-actions select {font:inherit;min-height:42px;border:1px solid #bfb4c7;border-radius:8px;padding:8px;}
@media(max-width:800px){.consultation-layout{grid-template-columns:1fr}.consultation-fields{grid-template-columns:1fr}.consultation-layout{scroll-margin-top:85px}.crm-teaser{align-items:flex-start;flex-direction:column}.crm-summary{grid-template-columns:1fr}.inquiry-card-heading{flex-direction:column;gap:6px}}
/* Home-note collection and source-aware content studio */
.note-page-nav{max-width:1200px;margin:auto;padding:24px;display:flex;justify-content:space-between;align-items:center;gap:24px;border-bottom:1px solid #ddd5e3}
.note-page-nav>a{font-family:Georgia,serif;font-size:26px;font-weight:bold;color:#513866;text-decoration:none}
.note-page-nav nav{display:flex;gap:22px;flex-wrap:wrap}
.note-page-footer{padding:32px 24px;text-align:center;font-size:14px;color:#62596b;background:#f0ecf3;line-height:1.8}
.home-note-article{max-width:820px;margin:auto;padding:58px 24px}
.home-note-article h1,.notes-collection>h1{font:clamp(36px,5vw,60px)/1.08 Georgia,serif;letter-spacing:-.025em;color:#302439;margin:16px 0 24px}
.note-standfirst{font-size:21px;line-height:1.6;max-width:760px;color:#62596b}
.note-dateline{font-size:14px;color:#716779;margin:24px 0}
.note-article-image{width:100%;max-height:420px;object-fit:cover;object-position:center 32%;border-radius:14px}
.note-article-body{font-size:19px;line-height:1.85;margin-top:32px}
.note-article-body p{margin:0 0 24px}
.note-source{background:#f2edf5;border-left:3px solid #8c6c9f;padding:16px 22px;font-size:14px;line-height:1.6;margin:32px 0}
.notes-collection .note-card h2{font:26px/1.2 Georgia,serif;margin:16px 0}
.notes-collection .note-card h2 a{color:inherit;text-decoration:none;font:inherit}
.notes-collection .note-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.notes-collection .photo-note>img{max-width:none;object-position:center 30%}
.notes-collection .note-meta{margin-top:18px}
.content-search-row{display:grid;grid-template-columns:2fr 1fr;gap:18px;margin:24px 0 12px}
.content-search-row label{font-size:14px;font-weight:700;display:grid;gap:8px}
.content-search-row input,.content-search-row select{width:100%;padding:12px;border:1px solid #cfc5d7;border-radius:9px;background:white;color:#302439;font:inherit}
.content-provenance{font-size:12px;line-height:1.6;color:#756a7e}
.content-copy-controls{border:0;padding:0;margin:0;min-width:0}
.content-copy-controls:disabled button{opacity:.4;cursor:not-allowed}
.content-review-warning{padding:12px;background:#fff3d9;color:#725115;font-size:13px;line-height:1.5;border-radius:8px}
.content-holds{margin:28px 0;padding:24px}
.content-holds summary{cursor:pointer;font-weight:bold}
.content-holds>p{line-height:1.6;color:#62596b}
#contentHeldArchive{display:grid;grid-template-columns:1fr 1fr;gap:20px}
#contentHeldArchive article{border-top:1px solid #ddd5e3;padding-top:18px}
#contentHeldArchive h3{font-size:16px;margin:0 0 8px}
#contentHeldArchive p{font-size:14px;line-height:1.6}
@media(max-width:620px){.note-page-nav{align-items:flex-start;flex-direction:column;gap:15px}.note-page-nav nav{gap:18px;font-size:14px}.home-note-article{padding-top:36px}.note-article-body{font-size:18px}.content-search-row,#contentHeldArchive{grid-template-columns:1fr}.home-note-article .home-note-invite{flex-direction:column;align-items:flex-start}}
@media(max-width:900px){.notes-collection .note-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:620px){.notes-collection .note-grid{grid-template-columns:1fr}}
