@charset "UTF-8";
:root {
  --color-bg: #ffffff;
  --color-surface: #fafafa;
  --color-border: #eeeeee;
  --color-text: #000000;
  --color-text-muted: #666666;
  --color-accent: #0055ff;
  --color-success: #10b981;
  --font-sans: "Inter", -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 70px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-bg);
  padding-bottom: 100px;
  overflow-x: hidden;
  color: var(--color-text);
  line-height: 1.6;
  font-family: var(--font-sans);
}

/* STICKY HEADER */
.sticky-header {
  display: flex;
  position: fixed;
  top: -100px;
  left: 0;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.95);
  padding: 0 24px;
  width: 100%;
  height: var(--header-height);
}

.sticky-header.visible {
  top: 0;
}

.header-logo {
  font-weight: 800;
  font-size: 14px;
  font-family: var(--font-mono);
}

.header-cta {
  background: var(--color-text);
  padding: 8px 16px;
  color: white;
  font-size: 11px;
  font-family: var(--font-mono);
  text-decoration: none;
  text-transform: uppercase;
}

/* MAIN CONTENT */
.main-wrapper {
  margin: 0 auto;
  padding: 80px 24px 40px;
  max-width: 500px;
  text-align: left;
}

/* AVATAR GROUP */
.profile-section {
  display: flex;
  align-items: flex-end;
  gap: -15px;
  margin-bottom: 32px;
}

.avatar-frame {
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 4px solid white;
  background: #eee;
  width: 120px;
  height: 120px;
  overflow: hidden;
}

.dog-frame {
  position: relative;
  z-index: 1;
  margin-bottom: -10px;
  margin-left: -20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 4px solid white;
  background: #eee;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.frame-img {
  filter: grayscale(100%);
  transition: var(--transition);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-frame:hover .frame-img,
.dog-frame:hover .frame-img {
  filter: grayscale(0%);
}

/* MAINTENANCE CONTENT */
.status-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 85, 255, 0.1);
  background: rgba(0, 85, 255, 0.05);
  padding: 4px 12px;
  color: var(--color-accent);
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 16px;
  font-size: 2.8rem;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.maintenance-text {
  margin-bottom: 32px;
  max-width: 90%;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

/* PROGRESS BAR (MODERN MONO STYLE) */
.progress-box {
  margin-bottom: 48px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--color-text-muted);
  font-size: 10px;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.progress-container {
  position: relative;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  width: 100%;
  height: 8px;
  overflow: hidden;
}

.progress-bar {
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--color-text);
  width: 65%;
  height: 100%;
}

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 400px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  list-style: none;
}

.legal-link-item {
  color: var(--color-text);
  font-size: 14px;
  text-decoration: none;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--color-text);
  background: transparent;
  padding: 16px;
  color: var(--color-text);
  font-weight: 700;
  font-size: 12px;
  font-family: var(--font-mono);
  text-decoration: none;
  text-transform: uppercase;
}

.btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.btn-fill {
  background: var(--color-text);
  color: var(--color-bg);
}

/* CHAT WIDGET */
.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
}

.chat-fab {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  background: var(--color-text);
  width: 60px;
  height: 60px;
  color: white;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 80px;
  transform: translateY(10px) scale(0.95);
  transform-origin: bottom right;
  opacity: 0;
  transition: var(--transition);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-border);
  background: white;
  padding: 24px;
  width: 280px;
  pointer-events: none;
}

.chat-panel.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.direct-link {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  margin-bottom: 8px;
  border: 1px solid var(--color-border);
  padding: 12px;
  color: var(--color-text);
  font-size: 14px;
  text-decoration: none;
}

.direct-link:hover {
  border-color: var(--color-text);
  background: var(--color-surface);
}

.icon {
  fill: currentColor;
  width: 18px;
  height: 18px;
}

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --vsg-paper: #F6F4EE;
  --vsg-paper-2: #EFEDE5;
  --vsg-ink: #0E0E0E;
  --vsg-ink-2: #2A2A28;
  --vsg-mute: #6F6E68;
  --vsg-mute-2: #9A9890;
  --vsg-rule: #D9D6CB;
  --vsg-rule-2: #C9C6BA;
  --vsg-accent: #0E5934;
  --vsg-accent-2: #0A4327;
  --vsg-live: #10B981;
  --vsg-live-bg: #E8F6EE;
  --vsg-shadow-1: 0 1px 2px rgba(14, 14, 14, .04);
  --vsg-shadow-2: 0 2px 4px rgba(14, 14, 14, .05);
  --vsg-shadow-frame: 0 2px 6px rgba(14, 14, 14, .06), 0 0 0 1px rgba(14, 14, 14, .04);
  --vsg-shadow-pop: 0 6px 18px -6px rgba(14, 14, 14, .10), 0 0 0 1px rgba(14, 14, 14, .04);
  --vsg-shadow-sheet: 0 -2px 12px -2px rgba(14, 14, 14, .06);
  --vsg-r-lg: 14px;
  --vsg-r: 10px;
  --vsg-r-sm: 6px;
  --vsg-r-pill: 999px;
  --vsg-col: 540px;
  --vsg-pad: 20px;
  --vsg-serif: "Instrument Serif", ui-serif, Georgia, serif;
  --vsg-sans: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  --vsg-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --vsg-ease: cubic-bezier(.2, .8, .2, 1);
  --vsg-header-h: 56px;
}

@media (min-width: 720px) {
  :root {
    --vsg-col: 580px;
    --vsg-pad: 24px;
  }
}
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--vsg-paper);
  color: var(--vsg-ink);
  font-size: 16px;
  line-height: 1.55;
  font-family: var(--vsg-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.vsg-is-locked {
  overflow: hidden;
}

::selection {
  background: var(--vsg-ink);
  color: var(--vsg-paper);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
  font: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

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

.vsg-skip {
  position: absolute;
  top: 0;
  left: -9999px;
}

.vsg-skip:focus {
  top: 12px;
  left: 12px;
  z-index: 9999;
  border-radius: 6px;
  background: var(--vsg-ink);
  padding: 10px 14px;
  color: var(--vsg-paper);
}

.vsg-col {
  margin-inline: auto;
  padding-inline: var(--vsg-pad);
  max-width: var(--vsg-col);
}

@media (min-width: 760px) {
  body {
    background: radial-gradient(1200px 600px at 50% -10%, color-mix(in srgb, var(--vsg-paper-2) 70%, var(--vsg-paper)) 0%, var(--vsg-paper) 60%);
  }
}
.vsg-eyebrow {
  color: var(--vsg-mute);
  font-weight: 500;
  font-size: 11px;
  font-family: var(--vsg-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vsg-mono {
  font-family: var(--vsg-mono);
  font-feature-settings: "tnum";
  letter-spacing: 0.01em;
}

.vsg-serif-it {
  font-style: italic;
  font-weight: 400;
  font-family: var(--vsg-serif);
}

/* ============================================================
   STICKY HEADER
   ============================================================ */
.vsg-sticky-h {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  backdrop-filter: saturate(150%) blur(12px);
  background: color-mix(in srgb, var(--vsg-paper) 88%, transparent);
  height: var(--vsg-header-h);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  transform: translateY(-100%);
  transition: transform 0.45s var(--vsg-ease);
  border-bottom: 1px solid color-mix(in srgb, var(--vsg-rule) 60%, transparent);
}

.vsg-sticky-h.vsg-is-visible {
  transform: translateY(0);
}

.vsg-sticky-h__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.vsg-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
}

.vsg-brand__mark {
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--vsg-ink);
  width: 26px;
  height: 26px;
  color: var(--vsg-paper);
  font-weight: 500;
  font-size: 9.5px;
  font-family: var(--vsg-mono);
  letter-spacing: 0.04em;
}

.vsg-sticky-h__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s var(--vsg-ease), transform 0.25s var(--vsg-ease);
  border-radius: var(--vsg-r-pill);
  background: var(--vsg-accent);
  padding: 0 14px;
  height: 36px;
  color: #F1FBF6;
  font-weight: 500;
  font-size: 11.5px;
  font-family: var(--vsg-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vsg-sticky-h__cta:hover,
.vsg-sticky-h__cta:focus-visible {
  transform: translateY(-1px);
  background: var(--vsg-accent-2);
}

/* ============================================================
   HERO
   ============================================================ */
.vsg-hero {
  padding: clamp(40px, 9vw, 60px) 0 clamp(24px, 5vw, 36px);
}

.vsg-avatars {
  display: flex;
  align-items: flex-end;
  margin-bottom: 26px;
  height: clamp(104px, 28vw, 124px);
}

.vsg-frame {
  display: block;
  position: relative;
  transition: transform 0.35s var(--vsg-ease);
  cursor: pointer;
  box-shadow: var(--vsg-shadow-frame);
  border: 3px solid #fff;
  background: var(--vsg-paper-2);
  padding: 0;
  overflow: hidden;
}

.vsg-frame .vsg-frame__media {
  filter: grayscale(85%) contrast(0.95);
  transition: filter 0.5s var(--vsg-ease), transform 0.5s var(--vsg-ease);
  width: 100%;
  height: 100%;
}

.vsg-frame:hover .vsg-frame__media,
.vsg-frame:focus-visible .vsg-frame__media {
  filter: grayscale(0%) contrast(1);
}

.vsg-frame--main {
  z-index: 2;
  border-radius: var(--vsg-r-sm);
  width: clamp(96px, 26vw, 116px);
  height: clamp(96px, 26vw, 116px);
}

.vsg-frame--dog {
  z-index: 1;
  margin-bottom: -6px;
  margin-left: -18px;
  border-radius: 50%;
  width: clamp(68px, 18vw, 80px);
  height: clamp(68px, 18vw, 80px);
}

.vsg-frame--dog:hover,
.vsg-frame--dog:focus-visible {
  transform: translateY(-3px) rotate(-4deg);
}

.vsg-ph-mono {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2A2A28 0%, #0E0E0E 100%);
  width: 100%;
  height: 100%;
}

.vsg-ph-mono__t {
  color: var(--vsg-paper);
  font-style: italic;
  font-size: 42px;
  line-height: 1;
  font-family: var(--vsg-serif);
  letter-spacing: -0.02em;
}

.vsg-ph-paw {
  display: grid;
  place-items: center;
  background: var(--vsg-paper-2);
  width: 100%;
  height: 100%;
}

.vsg-ph-paw svg {
  width: 46%;
  height: 46%;
  color: var(--vsg-ink-2);
}

.vsg-dot {
  flex: 0 0 auto;
  animation: vsg-pulse 2.4s var(--vsg-ease) infinite;
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--vsg-live) 60%, transparent);
  border-radius: 50%;
  background: var(--vsg-live);
  width: 7px;
  height: 7px;
}

@keyframes vsg-pulse {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--vsg-live) 60%, transparent);
  }
  70% {
    box-shadow: 0 0 0 8px color-mix(in srgb, var(--vsg-live) 0%, transparent);
  }
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--vsg-live) 0%, transparent);
  }
}
.vsg-hero__name {
  font-weight: 600;
  font-size: clamp(46px, 12vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.vsg-hero__name .vsg-serif-it {
  color: var(--vsg-ink-2);
  letter-spacing: -0.02em;
}

.vsg-hero__role {
  margin-top: 14px;
  color: var(--vsg-ink-2);
  font-size: 15.5px;
  letter-spacing: -0.005em;
}

.vsg-hero__role .vsg-sep {
  margin: 0 4px;
  color: var(--vsg-mute-2);
}

.vsg-hero__lede {
  margin-top: 16px;
  margin-bottom: 28px;
  max-width: 38ch;
  color: var(--vsg-ink-2);
  font-size: 16px;
  line-height: 1.5;
}

.vsg-hero__lede em {
  font-style: italic;
  font-family: var(--vsg-serif);
}

.vsg-pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  transition: transform 0.25s var(--vsg-ease), background 0.25s var(--vsg-ease), border-color 0.25s var(--vsg-ease);
  border: 1px solid var(--vsg-ink);
  border-radius: var(--vsg-r-pill);
  background: var(--vsg-ink);
  padding: 0 22px;
  width: 100%;
  height: 50px;
  color: var(--vsg-paper);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
}

.vsg-pill:hover {
  transform: translateY(-1px);
}

.vsg-pill--live {
  border-color: var(--vsg-accent);
  background: var(--vsg-accent);
  color: #F1FBF6;
}

.vsg-pill--live:hover {
  background: var(--vsg-accent-2);
}

.vsg-pill--ghost {
  background: transparent;
  color: var(--vsg-ink);
}

.vsg-pill--ghost:hover {
  background: var(--vsg-ink);
  color: var(--vsg-paper);
}

.vsg-pill .vsg-arrow {
  display: inline-block;
  transition: transform 0.25s var(--vsg-ease);
}

.vsg-pill:hover .vsg-arrow {
  transform: translateX(3px);
}

/* ============================================================
   CARD STACK — 5 blocks, two clean lines
   ============================================================ */
.vsg-cards {
  display: grid;
  gap: 8px;
}

.vsg-card {
  display: block;
  transition: transform 0.25s var(--vsg-ease), border-color 0.25s var(--vsg-ease), box-shadow 0.25s var(--vsg-ease), background 0.25s var(--vsg-ease);
  border: 1px solid var(--vsg-rule);
  border-radius: var(--vsg-r-lg);
  background: var(--vsg-paper);
  padding: 18px 18px;
  width: 100%;
  text-align: left;
}

.vsg-card:hover,
.vsg-card:focus-visible {
  transform: translateX(3px);
  box-shadow: var(--vsg-shadow-2);
  border-color: var(--vsg-ink);
}

.vsg-card__t {
  display: block;
  color: var(--vsg-ink);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.vsg-card__s {
  display: block;
  margin-top: 6px;
  color: var(--vsg-mute);
  font-size: 12px;
  line-height: 1.45;
  font-family: var(--vsg-mono);
  letter-spacing: 0.04em;
}

/* primary card — accent treatment */
.vsg-card--live {
  border-color: var(--vsg-accent);
  background: var(--vsg-accent);
}

.vsg-card--live .vsg-card__t {
  color: #F1FBF6;
}

.vsg-card--live .vsg-card__s {
  color: rgba(255, 255, 255, 0.72);
}

.vsg-card--live:hover,
.vsg-card--live:focus-visible {
  border-color: var(--vsg-accent-2);
  background: var(--vsg-accent-2);
}

/* ============================================================
   CONTACT BLOCK (replaces now-card)
   ============================================================ */
.vsg-contact-block {
  margin-top: 24px;
  border: 1px solid var(--vsg-rule);
  border-radius: var(--vsg-r-lg);
  background: var(--vsg-paper);
  overflow: hidden;
}

.vsg-contact-block__h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--vsg-rule);
  background: var(--vsg-paper-2);
  padding: 11px 16px;
}

.vsg-contact-block__h .vsg-eyebrow {
  color: var(--vsg-ink-2);
}

.vsg-contact-block__h span {
  color: var(--vsg-mute);
  font-size: 11px;
  font-family: var(--vsg-mono);
  letter-spacing: 0.06em;
}

.vsg-c-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s var(--vsg-ease), padding 0.25s var(--vsg-ease);
  border-bottom: 1px solid var(--vsg-rule);
  padding: 13px 16px;
}

.vsg-c-row:last-child {
  border-bottom: 0;
}

.vsg-c-row:hover,
.vsg-c-row:focus-visible {
  background: var(--vsg-paper-2);
  padding-left: 20px;
}

.vsg-c-row__k {
  flex: 0 0 auto;
  color: var(--vsg-mute);
  font-size: 11px;
  font-family: var(--vsg-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vsg-c-row__v {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  color: var(--vsg-ink);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vsg-c-row__v.vsg-is-mute {
  color: var(--vsg-mute);
  font-weight: 400;
}

.vsg-c-row__v svg {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  color: var(--vsg-mute);
}

/* ============================================================
   FOOTER
   ============================================================ */
.vsg-footer {
  padding: 24px 0 96px;
  color: var(--vsg-mute);
  font-size: 12px;
}

.vsg-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-family: var(--vsg-mono);
  letter-spacing: 0.04em;
}

.vsg-foot__line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   FAB + POPOVER
   ============================================================ */
.vsg-fab-wrap {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
}

.vsg-fab {
  display: grid;
  position: relative;
  place-items: center;
  transition: transform 0.25s var(--vsg-ease), background 0.25s var(--vsg-ease);
  box-shadow: 0 4px 12px rgba(14, 14, 14, 0.18), 0 0 0 1px rgba(14, 14, 14, 0.04);
  border-radius: 50%;
  background: var(--vsg-ink);
  width: 52px;
  height: 52px;
  color: var(--vsg-paper);
}

.vsg-fab:hover,
.vsg-fab:focus-visible {
  transform: translateY(-2px) scale(1.04);
  background: var(--vsg-accent);
}

.vsg-fab svg {
  position: absolute;
  transition: transform 0.35s var(--vsg-ease), opacity 0.25s var(--vsg-ease);
  width: 20px;
  height: 20px;
}

.vsg-fab .vsg-icon-close {
  transform: rotate(-45deg);
  opacity: 0;
}

.vsg-fab[aria-expanded=true] .vsg-icon-chat {
  transform: rotate(45deg);
  opacity: 0;
}

.vsg-fab[aria-expanded=true] .vsg-icon-close {
  transform: rotate(0);
  opacity: 1;
}

.vsg-fab[aria-expanded=true] {
  background: var(--vsg-accent);
}

.vsg-popover {
  position: absolute;
  right: 0;
  bottom: 64px;
  transform: scale(0.96) translateY(4px);
  transform-origin: bottom right;
  opacity: 0;
  transition: opacity 0.25s var(--vsg-ease), transform 0.25s var(--vsg-ease);
  box-shadow: var(--vsg-shadow-pop);
  border: 1px solid var(--vsg-rule);
  border-radius: var(--vsg-r-lg);
  background: var(--vsg-paper);
  padding: 16px;
  width: 280px;
  max-width: calc(100vw - 32px);
  pointer-events: none;
}

.vsg-popover.vsg-is-open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.vsg-popover__h {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
  color: var(--vsg-mute);
  font-size: 10.5px;
  font-family: var(--vsg-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vsg-popover__t {
  margin-bottom: 3px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.015em;
}

.vsg-popover__sub {
  margin-bottom: 12px;
  color: var(--vsg-mute);
  font-size: 12px;
  line-height: 1.45;
}

.vsg-popover__list {
  display: grid;
  gap: 6px;
}

.vsg-qa {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.25s var(--vsg-ease), background 0.25s var(--vsg-ease), transform 0.25s var(--vsg-ease);
  border: 1px solid var(--vsg-rule);
  border-radius: var(--vsg-r);
  padding: 10px 12px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.005em;
}

.vsg-qa:hover,
.vsg-qa:focus-visible {
  transform: translateX(2px);
  border-color: var(--vsg-ink);
  background: var(--vsg-paper-2);
}

.vsg-qa svg {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  width: 14px;
  height: 14px;
  color: var(--vsg-ink-2);
}

.vsg-qa--accent {
  border-color: var(--vsg-accent);
  background: var(--vsg-accent);
  color: #F1FBF6;
}

.vsg-qa--accent svg {
  color: #F1FBF6;
}

.vsg-qa--accent:hover,
.vsg-qa--accent:focus-visible {
  border-color: var(--vsg-accent-2);
  background: var(--vsg-accent-2);
  color: #fff;
}

/* ============================================================
   BOTTOM SHEETS
   ============================================================ */
.vsg-backdrop {
  position: fixed;
  opacity: 0;
  z-index: 80;
  backdrop-filter: blur(2px);
  transition: opacity 0.3s var(--vsg-ease);
  inset: 0;
  background: rgba(14, 14, 14, 0.4);
  pointer-events: none;
}

.vsg-backdrop.vsg-is-active {
  opacity: 1;
  pointer-events: auto;
}

.vsg-sheet {
  display: flex;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  flex-direction: column;
  transform: translateY(100%);
  z-index: 90;
  transition: transform 0.42s var(--vsg-ease);
  box-shadow: var(--vsg-shadow-sheet);
  border-top: 1px solid var(--vsg-rule);
  border-radius: 16px 16px 0 0;
  background: var(--vsg-paper);
  max-height: 92vh;
  overflow: hidden;
}

.vsg-sheet.vsg-is-open {
  transform: translateY(0);
}

@media (min-width: 760px) {
  .vsg-sheet {
    right: auto;
    left: 50%;
    transform: translate(-50%, 100%);
    width: min(640px, 100% - 32px);
  }
  .vsg-sheet.vsg-is-open {
    transform: translate(-50%, 0);
  }
}
.vsg-sheet__handle {
  flex: 0 0 auto;
  margin: 8px auto 0;
  border-radius: 2px;
  background: var(--vsg-rule);
  width: 38px;
  height: 3px;
}

.vsg-sheet__head {
  display: flex;
  flex: 0 0 auto;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--vsg-rule);
  padding: 10px 18px 12px;
}

.vsg-sheet__close {
  display: grid;
  place-items: center;
  transition: background 0.25s var(--vsg-ease), border-color 0.25s var(--vsg-ease), color 0.25s var(--vsg-ease);
  border: 1px solid var(--vsg-rule);
  border-radius: 50%;
  background: var(--vsg-paper);
  width: 32px;
  height: 32px;
}

.vsg-sheet__close:hover,
.vsg-sheet__close:focus-visible {
  border-color: var(--vsg-ink);
  background: var(--vsg-ink);
  color: var(--vsg-paper);
}

.vsg-sheet__close svg {
  width: 13px;
  height: 13px;
}

.vsg-sheet__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 22px var(--vsg-pad) calc(36px + env(safe-area-inset-bottom, 0px));
}

.vsg-sheet__title {
  margin-bottom: 8px;
  font-size: clamp(26px, 6vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.vsg-sheet__title em {
  color: var(--vsg-ink-2);
  font-style: italic;
  font-weight: 400;
  font-family: var(--vsg-serif);
}

.vsg-sheet__sub {
  margin-bottom: 20px;
  color: var(--vsg-mute);
  font-size: 14px;
  line-height: 1.5;
}

.vsg-sheet__section {
  border-top: 1px solid var(--vsg-rule);
  padding: 18px 0;
}

.vsg-sheet__section h4 {
  margin-bottom: 12px;
  color: var(--vsg-mute);
  font-weight: 500;
  font-size: 11px;
  font-family: var(--vsg-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vsg-sheet__list {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.vsg-sheet__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  color: var(--vsg-ink-2);
}

.vsg-sheet__list li b {
  color: var(--vsg-ink);
  font-weight: 500;
}

.vsg-sheet__cta {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.vsg-sheet__prose p {
  margin-bottom: 12px;
  color: var(--vsg-ink-2);
  font-size: 14.5px;
  line-height: 1.6;
}

.vsg-sheet__prose p:last-child {
  margin-bottom: 0;
}

.vsg-sheet__prose b {
  color: var(--vsg-ink);
  font-weight: 600;
}

.vsg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vsg-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--vsg-rule);
  border-radius: var(--vsg-r-pill);
  padding: 4px 10px;
  color: var(--vsg-ink-2);
  font-size: 11px;
  font-family: var(--vsg-mono);
  letter-spacing: 0.04em;
}

/* dog drawer specifics */
.vsg-dog-hero {
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.vsg-dog-portrait {
  display: grid;
  place-items: center;
  box-shadow: var(--vsg-shadow-frame);
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--vsg-paper-2);
  width: 140px;
  height: 140px;
  overflow: hidden;
}

.vsg-dog-portrait .vsg-ph-paw svg {
  width: 54%;
  height: 54%;
}

/* shared row pattern (work, writing, etc) */
.vsg-s-row {
  display: block;
  transition: transform 0.25s var(--vsg-ease), border-color 0.25s var(--vsg-ease), box-shadow 0.25s var(--vsg-ease);
  margin-bottom: 8px;
  border: 1px solid var(--vsg-rule);
  border-radius: var(--vsg-r);
  background: var(--vsg-paper);
  padding: 14px 16px;
  width: 100%;
  text-align: left;
}

.vsg-s-row:hover,
.vsg-s-row:focus-visible {
  transform: translateX(3px);
  box-shadow: var(--vsg-shadow-2);
  border-color: var(--vsg-ink);
}

.vsg-s-row__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
}

.vsg-s-row__t {
  color: var(--vsg-ink);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.vsg-s-row__t em {
  color: var(--vsg-mute-2);
  font-style: italic;
  font-weight: 400;
  font-family: var(--vsg-serif);
}

.vsg-s-row__y {
  flex: 0 0 auto;
  color: var(--vsg-mute-2);
  font-size: 11px;
  font-family: var(--vsg-mono);
  letter-spacing: 0.04em;
}

.vsg-s-row__s {
  display: block;
  margin-top: 6px;
  color: var(--vsg-mute);
  font-size: 11.5px;
  line-height: 1.4;
  font-family: var(--vsg-mono);
  letter-spacing: 0.04em;
}

/* services */
.vsg-s-svc {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
  border: 1px solid var(--vsg-rule);
  border-radius: var(--vsg-r);
  background: var(--vsg-paper);
  padding: 16px;
}

.vsg-s-svc__h {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 8px;
}

.vsg-s-svc__t {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.015em;
}

.vsg-s-svc__price {
  flex: 0 0 auto;
  color: var(--vsg-mute);
  font-size: 11px;
  line-height: 1.3;
  font-family: var(--vsg-mono);
  letter-spacing: 0.06em;
  text-align: right;
}

.vsg-s-svc__price b {
  display: block;
  margin-top: 2px;
  color: var(--vsg-ink);
  font-weight: 600;
  font-size: 13px;
  font-family: var(--vsg-sans);
  letter-spacing: -0.005em;
}

.vsg-s-svc__d {
  margin-bottom: 10px;
  color: var(--vsg-ink-2);
  font-size: 13.5px;
  line-height: 1.55;
}

.vsg-s-svc__list {
  display: grid;
  gap: 5px;
  color: var(--vsg-mute);
  font-size: 11.5px;
  font-family: var(--vsg-mono);
}

.vsg-s-svc__list li {
  display: flex;
  gap: 8px;
  line-height: 1.4;
}

.vsg-s-svc__list li::before {
  flex: 0 0 auto;
  content: "›";
  color: var(--vsg-accent);
}

/* stack groups */
.vsg-s-stack {
  margin-bottom: 10px;
  border: 1px solid var(--vsg-rule);
  border-radius: var(--vsg-r);
  background: var(--vsg-paper);
  overflow: hidden;
}

.vsg-s-stack__h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--vsg-rule);
  background: var(--vsg-paper-2);
  padding: 10px 14px;
}

.vsg-s-stack__h .vsg-eyebrow {
  color: var(--vsg-ink-2);
}

.vsg-s-stack__h span {
  color: var(--vsg-mute);
  font-size: 11px;
  font-family: var(--vsg-mono);
  letter-spacing: 0.06em;
}

.vsg-s-stack ul li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed var(--vsg-rule);
  padding: 9px 14px;
  font-size: 13.5px;
}

.vsg-s-stack ul li:last-child {
  border-bottom: 0;
}

.vsg-s-stack__lvl {
  color: var(--vsg-mute);
  font-size: 11px;
  font-family: var(--vsg-mono);
  letter-spacing: 0.04em;
}

/* timeline */
.vsg-s-tl {
  position: relative;
  padding-left: 18px;
}

.vsg-s-tl::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 5px;
  background: var(--vsg-rule);
  width: 1px;
  content: "";
}

.vsg-s-tl__item {
  position: relative;
  border-bottom: 1px solid var(--vsg-rule);
  padding: 12px 0;
}

.vsg-s-tl__item:last-child {
  border-bottom: 0;
}

.vsg-s-tl__item::before {
  position: absolute;
  top: 18px;
  left: -18px;
  border: 1.5px solid var(--vsg-ink);
  border-radius: 50%;
  background: var(--vsg-paper);
  width: 11px;
  height: 11px;
  content: "";
}

.vsg-s-tl__when {
  margin-bottom: 3px;
  color: var(--vsg-mute);
  font-size: 11px;
  font-family: var(--vsg-mono);
  letter-spacing: 0.06em;
}

.vsg-s-tl__role {
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.01em;
}

.vsg-s-tl__role em {
  color: var(--vsg-mute);
  font-style: italic;
  font-weight: 400;
  font-family: var(--vsg-serif);
}

.vsg-s-tl__where {
  margin-top: 2px;
  color: var(--vsg-mute);
  font-size: 11px;
  font-family: var(--vsg-mono);
  letter-spacing: 0.04em;
}

/* signals (in about sheet) */
.vsg-signals {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.vsg-signal {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--vsg-rule);
  border-radius: var(--vsg-r);
  background: var(--vsg-paper);
  padding: 12px;
}

.vsg-signal__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--vsg-paper-2);
  width: 32px;
  height: 32px;
}

.vsg-signal__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  width: 14px;
  height: 14px;
  color: var(--vsg-ink-2);
}

.vsg-signal__t {
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: -0.005em;
}

.vsg-signal__s {
  color: var(--vsg-mute);
  font-size: 11px;
  font-family: var(--vsg-mono);
  letter-spacing: 0.04em;
}

/* quotes */
.vsg-s-quote {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
  border: 1px solid var(--vsg-rule);
  border-radius: var(--vsg-r);
  background: var(--vsg-paper);
  padding: 18px;
}

.vsg-s-quote blockquote {
  margin: 0;
  color: var(--vsg-ink);
  font-size: 18px;
  line-height: 1.35;
  font-family: var(--vsg-serif);
  letter-spacing: -0.005em;
}

.vsg-s-quote__cite {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--vsg-mute);
  font-size: 11px;
  font-family: var(--vsg-mono);
}

.vsg-s-quote__avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--vsg-rule);
  border-radius: 50%;
  background: var(--vsg-paper-2);
  width: 28px;
  height: 28px;
  color: var(--vsg-ink);
  font-weight: 600;
  font-size: 11px;
}

/* contact list inside contact sheet */
.vsg-contact-list {
  border: 1px solid var(--vsg-rule);
  border-radius: var(--vsg-r);
  background: var(--vsg-paper);
  overflow: hidden;
}

.vsg-contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.25s var(--vsg-ease);
  border-bottom: 1px solid var(--vsg-rule);
  padding: 12px 14px;
}

.vsg-contact-row:last-child {
  border-bottom: 0;
}

.vsg-contact-row:hover {
  background: var(--vsg-paper-2);
}

.vsg-contact-row__k {
  color: var(--vsg-mute);
  font-size: 11px;
  font-family: var(--vsg-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vsg-contact-row__v {
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: -0.005em;
}

.vsg-contact-row__v.vsg-is-mute {
  color: var(--vsg-mute);
  font-weight: 400;
}

/* reveal */
.vsg-reveal {
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.6s var(--vsg-ease), transform 0.6s var(--vsg-ease);
}

.vsg-reveal.vsg-in {
  transform: none;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .vsg-reveal {
    transform: none;
    opacity: 1;
    transition: none;
  }
  .vsg-dot {
    animation: none;
  }
}