/* landing.css — shared structural styles for Karolina Młyńczak landing.
   Theme colors and fonts come from CSS variables set per-variant on .theme.
   ─────────────────────────────────────────────────────────────────────── */

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

.theme {
  /* defaults overridden per-variant */
  --bg: #efe7d7;
  --surface: #f4ecdd;
  --surface-2: #e7ddc9;
  --surface-3: #d9cdb4;
  --ink: #2e2a22;
  --ink-soft: #5a5247;
  --ink-mute: #8a8170;
  --accent: #7e947a;
  --accent-soft: #b8c3b0;
  --accent-2: #a88b6f;
  --line: rgba(46, 42, 34, 0.12);
  --line-strong: rgba(46, 42, 34, 0.22);
  --shadow-card: 0 1px 0 rgba(255,255,255,0.5) inset, 0 24px 48px -28px rgba(46,42,34,0.18);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', ui-sans-serif, system-ui, sans-serif;

  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'kern', 'liga', 'calt';
  /* width contained — page max 1280, padded */
}

.theme em { font-style: italic; color: var(--accent); font-feature-settings: 'kern', 'liga', 'calt'; }

/* ─── TYPOGRAPHY ──────────────────────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 7.4vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--ink);
  text-wrap: balance;
}
.name-display {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: clamp(64px, 9.5vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
}
.name-display .name-first {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.name-display .name-last {
  display: block;
  font-weight: 500;
  color: var(--ink);
}
.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 22px;
  white-space: nowrap;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
}
.eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.lead {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.45;
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 400;
}
.hero-sub {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 36ch;
  line-height: 1.55;
}
.prose {
  color: var(--ink-soft);
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.7;
  max-width: 56ch;
  text-wrap: pretty;
}
.prose:last-child { margin-bottom: 0; }
.section-lead {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0;
}

/* ─── BUTTONS ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  padding: 14px 26px;
  transition: transform 0.18s cubic-bezier(.2,.7,.3,1), background 0.18s, color 0.18s, box-shadow 0.18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 12px 30px -16px rgba(46,42,34,0.5);
}
.btn-primary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary[disabled] { opacity: 0.6; cursor: progress; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 14px 18px;
}
.btn-ghost:hover {
  color: var(--accent);
  gap: 14px;
}

/* ─── NAV ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 0.5px solid var(--line);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.nav-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex: 0 0 auto;
}
.nav-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-first {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.nav-last {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover { color: var(--ink); background: var(--surface); }
.nav-links a.is-active { color: var(--ink); background: var(--surface); }
.nav-cta { padding: 11px 20px; font-size: 14px; }

/* ─── HERO ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 140px) clamp(20px, 5vw, 64px) clamp(90px, 12vw, 180px);
  overflow: hidden;
}
.hero-decor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-copy { min-width: 0; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  min-width: 0;
}
.hero-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
  padding: 10px 18px 10px 14px;
  background: var(--surface);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--ink-soft);
  border: 0.5px solid var(--line);
}
.hero-tag-line {
  width: 24px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.hero-scroll {
  position: absolute;
  bottom: clamp(30px, 5vw, 60px);
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  text-decoration: none;
  z-index: 2;
}
.hero-scroll span {
  width: 2px;
  height: 8px;
  background: var(--ink-soft);
  border-radius: 1px;
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(6px); }
}

/* Portrait slot — deprecated; replaced by .organic. Kept for legacy. */
.portrait-slot {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}
.portrait-mask {
  position: absolute;
  width: 0;
  height: 0;
}
.portrait-inner {
  position: absolute;
  inset: 0;
  background: var(--surface-2);
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.portrait-inner svg { display: block; }

/* Organic composition replacing the portrait. Tall flexible SVG canvas. */
.organic {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  aspect-ratio: 4 / 5;
}
.organic svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

/* Image-based variant — watercolor mountain illustration.
   Multiply blend drops the white background into the page bg without
   touching the painted areas. Slight tint via filter to harmonize with sage. */
.organic-image {
  aspect-ratio: 1 / 1;
  max-width: 640px;
  width: 110%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.organic-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

/* ─── SECTIONS ────────────────────────────────────────────────────────── */
.section {
  position: relative;
  padding: clamp(80px, 11vw, 160px) clamp(20px, 5vw, 64px);
  max-width: 1280px;
  margin: 0 auto;
}
.section-head {
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 760px;
}

/* About */
.about {}
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.about-text .h2 { margin-bottom: 36px; max-width: 18ch; }
.values {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 16px;
}
.values li { display: flex; align-items: center; gap: 14px; }
.v-mark {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}
.about-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
  border: 0.5px solid var(--line);
  overflow: hidden;
}
.about-card-pad { padding: clamp(28px, 3vw, 40px); }
.quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.6;
  color: var(--accent);
  margin: 0 0 4px;
  opacity: 0.6;
}
.quote {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.32;
  font-style: italic;
  margin: 0 0 32px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 0.5px solid var(--line);
}
.about-stats > div { display: flex; flex-direction: column; gap: 2px; }
.about-stats strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}
.about-stats span {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* Areas — pill cloud */
.areas { }
.areas .h2 { max-width: 22ch; }
.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1000px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: var(--radius-pill);
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  background: var(--surface);
  border: 0.5px solid var(--line);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.pill:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-1px);
}
.pill:hover .pill-dot { background: rgba(255,255,255,0.7); }
.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
  transition: background 0.2s;
}
.pill-sm { padding: 12px 22px; font-size: 14px; }
.pill-md { padding: 14px 26px; font-size: 16px; }
.pill-lg { padding: 18px 32px; font-size: 18px; }

/* Meeting */
.meeting .h2 { max-width: 18ch; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 56px);
  margin-bottom: 80px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-mark {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--line);
}
.step h3 { margin-bottom: 14px; }
.meeting-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
  padding: 28px clamp(28px, 4vw, 56px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--line);
}
.meeting-meta > div { display: flex; flex-direction: column; gap: 6px; }
.meta-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.meta-val {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* Approach */
.approach {
  background: var(--surface);
  max-width: none;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 0 clamp(20px, 5vw, 64px);
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}
.approach-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.approach-inner .kicker { display: inline-flex; margin-bottom: 36px; }
.approach-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.35;
  margin: 0 0 28px;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: pretty;
}
.approach-text.muted {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  letter-spacing: 0;
  margin-bottom: 0;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.approach-marks {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 48px;
}
.approach-marks span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}
.approach-marks span:nth-child(2) { opacity: 0.8; }
.approach-marks span:nth-child(3) { opacity: 1; }

/* Contact */
.contact .h2 { max-width: 16ch; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.form { display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label, .field legend {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding: 0;
}
.field input, .field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.18s, background 0.18s;
  width: 100%;
  resize: vertical;
}
fieldset.field {
  border: none;
  padding: 0;
  margin: 0;
}
fieldset.field legend {
  padding: 0 0 8px;
}
.field input::placeholder, .field textarea::placeholder {
  color: var(--ink-mute);
}
.field input:focus, .field textarea:focus {
  border-color: var(--accent);
  background: var(--bg);
}
.field.has-error input, .field.has-error textarea {
  border-color: #b85b5b;
  background: color-mix(in oklab, #b85b5b 6%, var(--surface));
}
.field-error {
  font-size: 13px;
  color: #a04545;
  margin-top: 2px;
}

.radios { display: flex; gap: 8px; flex-wrap: wrap; }
.radio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 15px;
  color: var(--ink-soft);
  transition: all 0.18s;
  white-space: nowrap;
  position: relative;
}
.radio input { position: absolute; opacity: 0; pointer-events: none; }
.radio-mark {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: inline-block;
  transition: all 0.18s;
  flex: 0 0 auto;
}
.radio.is-checked {
  border-color: var(--accent);
  background: var(--bg);
  color: var(--ink);
}
.radio.is-checked .radio-mark {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: inset 0 0 0 2.5px var(--bg);
}

.form-submit { align-self: flex-start; margin-top: 8px; }
.form-note {
  font-size: 13px;
  color: var(--ink-mute);
  margin: 0;
}

.contact-aside {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 0.5px solid var(--line);
  position: sticky;
  top: 100px;
}
.contact-block { display: flex; flex-direction: column; gap: 4px; }
.contact-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.contact-val {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: color 0.18s;
}
a.contact-val:hover { color: var(--accent); }
.contact-meta { font-size: 13px; color: var(--ink-mute); }

.contact-success {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 80px 20px;
}
.success-mark {
  width: 72px; height: 72px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--surface);
  display: grid; place-items: center;
  color: var(--accent);
  border: 0.5px solid var(--line);
}
.contact-success .h2 { margin-bottom: 20px; }

/* Footer */
.footer {
  padding: 36px clamp(20px, 5vw, 64px);
  border-top: 0.5px solid var(--line);
  background: var(--bg);
}
.footer-row {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-mute);
}
.footer-name { display: flex; gap: 14px; align-items: baseline; color: var(--ink); }
.footer-name span:first-child { font-family: var(--font-display); font-size: 18px; }
.footer-role { color: var(--ink-mute); font-size: 13px; }
.footer-meta { flex: 1; text-align: center; }

/* ─── PER-VARIANT TWEAKS ─────────────────────────────────────────────── */
/* Szałwia — push sage into section backgrounds for warmer color presence */
.theme-szalwia {
  --bg-sage: color-mix(in oklab, var(--accent) 22%, var(--bg));
  --bg-sage-soft: color-mix(in oklab, var(--accent) 10%, var(--bg));
  --bg-sage-deep: color-mix(in oklab, var(--accent) 38%, var(--bg));
}
.theme-szalwia .nav {
  background: color-mix(in oklab, var(--bg-sage-soft) 92%, transparent);
}
.theme-szalwia .nav-mark { background: var(--bg-sage); }

/* Soft sage band wrapping Areas section */
.theme-szalwia .areas {
  position: relative;
  max-width: none;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
  margin: 0;
  background: var(--bg-sage-soft);
}
.theme-szalwia .areas .section-head,
.theme-szalwia .areas .pill-cloud {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.theme-szalwia .areas .pill {
  background: color-mix(in oklab, #ffffff 50%, var(--bg));
  border-color: color-mix(in oklab, var(--accent) 18%, var(--line));
}
.theme-szalwia .areas .pill:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* About card uses richer sage */
.theme-szalwia .about-card {
  background: var(--bg-sage-soft);
  border-color: color-mix(in oklab, var(--accent) 22%, transparent);
}

/* Meeting meta panel — sage tint */
.theme-szalwia .meeting-meta {
  background: var(--bg-sage-soft);
  border-color: color-mix(in oklab, var(--accent) 16%, var(--line));
}

/* Approach panel — now full sage, prominent */
.theme-szalwia .approach {
  background: var(--bg-sage);
}
.theme-szalwia .approach .kicker { color: color-mix(in oklab, var(--ink) 50%, transparent); }
.theme-szalwia .approach-marks span { background: color-mix(in oklab, var(--ink) 35%, transparent); }

/* CTA hover stays sage; default CTA gets a sage shadow */
.theme-szalwia .btn-primary {
  box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 14px 32px -14px color-mix(in oklab, var(--accent) 70%, transparent);
}

/* Hero gets a subtle sage line under it */
.theme-szalwia .hero {
  position: relative;
}
.theme-szalwia .hero::after {
  content: '';
  position: absolute;
  left: clamp(20px, 5vw, 64px);
  right: clamp(20px, 5vw, 64px);
  bottom: 0;
  height: 1px;
  background: color-mix(in oklab, var(--accent) 30%, transparent);
}

/* Footer with sage tint */
.theme-szalwia .footer {
  background: var(--bg-sage-soft);
  border-top-color: color-mix(in oklab, var(--accent) 20%, var(--line));
}

.theme-szalwia .hero-decor { display: none; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav { gap: 12px; }
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 360px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-card, .contact-aside { position: static; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .meeting-meta { grid-template-columns: 1fr; gap: 18px; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}
