/* ---------------------------------------------------------------------------
   MyConsulting, brand tokens
   crimson #8B1A2E · cream #F5F4F0 · ink #111111 · charcoal #1C1C1C
--------------------------------------------------------------------------- */
:root {
  --crimson: #8b1a2e;
  --crimson-dark: #6f1424;
  --cream: #f5f4f0;
  --cream-2: #e8e6e0;
  --line: #d4d0c8;
  --ink: #111111;
  --charcoal: #1c1c1c;
  --muted: #6b6560;
  --white: #ffffff;

  --sans: "Outfit", "Noto Sans Georgian", system-ui, sans-serif;
  --serif: "Source Serif 4", "Noto Sans Georgian", Georgia, serif;

  --shell: 1180px;
  --pad: 24px;
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html[lang="ka"] body { font-family: "Noto Sans Georgian", var(--sans); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; margin: 0; }
html[lang="ka"] h1, html[lang="ka"] h2, html[lang="ka"] h3, html[lang="ka"] h4 {
  font-family: "Noto Sans Georgian", var(--serif);
  line-height: 1.3;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--cream);
  padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 8px; top: 8px; }

/* --- Header ------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 244, 240, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 72px; }

.brand { display: flex; align-items: center; gap: 8px; margin-right: auto; }
.brand-mark {
  background: var(--crimson); color: var(--white);
  font-weight: 600; font-size: 13px; letter-spacing: 0.08em;
  padding: 5px 8px; border-radius: var(--radius);
}
.brand-word { font-family: var(--serif); font-size: 19px; }

.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 14px; color: var(--muted); padding: 6px 0;
  border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.nav a:hover { color: var(--ink); }
.nav a.is-active { color: var(--crimson); border-bottom-color: var(--crimson); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch { display: flex; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.lang-btn {
  background: transparent; border: 0; cursor: pointer;
  padding: 6px 10px; font-size: 12px; letter-spacing: 0.06em; color: var(--muted);
  transition: background 0.2s, color 0.2s;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active { background: var(--crimson); color: var(--white); }

.burger { display: none; flex-direction: column; gap: 4px; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { width: 20px; height: 1.5px; background: var(--ink); transition: transform 0.25s, opacity 0.2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; font-size: 14px; letter-spacing: 0.02em;
  border-radius: var(--radius); border: 1px solid transparent; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--crimson); color: var(--white); }
.btn-primary:hover { background: var(--crimson-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-outline-light { background: transparent; color: var(--cream); border-color: rgba(245, 244, 240, 0.35); }
.btn-outline-light:hover { border-color: var(--cream); }

/* --- Type helpers ------------------------------------------------------- */
.eyebrow {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--crimson); font-weight: 500;
}
.eyebrow-muted { color: var(--muted); }
.lead { font-size: 18px; color: var(--muted); max-width: 60ch; }
.section { padding: 96px 0; }
.section-dark { background: var(--charcoal); color: var(--cream); }
.section-dark .lead { color: rgba(245, 244, 240, 0.6); }
.section-dark .eyebrow { color: rgba(245, 244, 240, 0.55); }
.section-head { margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-top: 12px; }
.section-head .lead { margin-top: 16px; }

/* --- Page transition ---------------------------------------------------- */
.view { min-height: 60vh; opacity: 1; transition: opacity 0.22s ease, transform 0.22s ease; }
.view.is-leaving { opacity: 0; transform: translateY(8px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .view, .btn, .nav a { transition: none; }
}

/* --- Hero --------------------------------------------------------------- */
.hero { padding: 88px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(38px, 6vw, 64px); margin: 20px 0 0; }
.hero h1 em { font-style: italic; color: var(--crimson); }
.hero .lead { margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-visual {
  aspect-ratio: 4 / 3; border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 25%, rgba(139, 26, 46, 0.35), transparent 55%),
    linear-gradient(150deg, var(--charcoal), #2c2320);
  position: relative; overflow: hidden;
}
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(245,244,240,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(245,244,240,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero-media { position: relative; }
.hero-media .hero-visual { width: 100%; }
.hero-badge {
  position: absolute; left: 24px; bottom: 24px; z-index: 2;
  background: var(--cream); border-radius: var(--radius); padding: 16px 20px;
}
.hero-badge .eyebrow { font-size: 10px; }
.hero-badge strong { font-family: var(--serif); font-size: 30px; font-weight: 400; display: block; }
.hero-badge span { font-size: 12px; color: var(--muted); }

.stats { display: flex; gap: 64px; border-top: 1px solid var(--line); padding-top: 32px; margin-top: 64px; }
.stat-value { font-family: var(--serif); font-size: 40px; color: var(--crimson); }
.stat-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* --- Grids and cards ---------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--crimson); transform: translateY(-2px); }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }
.card-icon { font-size: 22px; color: var(--crimson); display: block; margin-bottom: 14px; }
.card-no { font-family: var(--serif); font-size: 14px; color: var(--crimson); letter-spacing: 0.1em; }

.section-dark .card { background: rgba(255, 255, 255, 0.04); border-color: rgba(245, 244, 240, 0.12); }
.section-dark .card p { color: rgba(245, 244, 240, 0.6); }

/* --- Two sides ---------------------------------------------------------- */
.side { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; }
.side + .side { background: var(--cream-2); }
.side h3 { font-size: 26px; margin: 12px 0 24px; }
.side ul { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; }
.side li { display: flex; gap: 10px; font-size: 15px; color: var(--muted); }
.side li::before { content: "✓"; color: var(--crimson); }

/* --- Early access ------------------------------------------------------- */
.early { text-align: center; }
.early h2 { font-size: clamp(28px, 4vw, 42px); margin: 14px 0 18px; }
.early .lead { margin: 0 auto 32px; }
.early .contact-note { margin-top: 20px; font-size: 14px; color: rgba(245, 244, 240, 0.55); }

/* --- Posts -------------------------------------------------------------- */
.post { display: flex; flex-direction: column; gap: 12px; }
.post h3 { font-size: 21px; }
.post-meta { font-size: 13px; color: var(--muted); }

/* --- CTA band ----------------------------------------------------------- */
.cta { background: var(--crimson); color: var(--white); text-align: center; padding: 88px 0; }
.cta h2 { font-size: clamp(28px, 4vw, 44px); }
.cta p { margin: 18px auto 32px; max-width: 55ch; color: rgba(255, 255, 255, 0.8); }
.cta .btn-ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.4); }
.cta-note { margin-top: 22px; font-size: 14px; color: rgba(255, 255, 255, 0.7); }

/* --- Page header (inner pages) ------------------------------------------ */
.page-head { padding: 72px 0 8px; }
.page-head h1 { font-size: clamp(32px, 5vw, 52px); margin: 14px 0 18px; }

/* --- Contact ------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.detail-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.detail-list dt, .detail-label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.detail-value { font-size: 17px; margin-top: 4px; }
.detail-value a:hover { color: var(--crimson); }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.form h2 { font-size: 24px; margin-bottom: 20px; }
.field { display: grid; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea {
  font: inherit; color: var(--ink); background: var(--cream);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 14px;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--crimson); }
.field textarea { min-height: 130px; resize: vertical; }
.form-status { margin-top: 14px; font-size: 14px; min-height: 20px; }
.form-status.ok { color: var(--crimson); }
.form-status.err { color: #a33; }

.person h3 { font-size: 19px; margin-bottom: 4px; }
.person .role { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--crimson); margin-bottom: 10px; }
.avatar {
  width: 56px; height: 56px; border-radius: 50%; margin-bottom: 16px;
  background: var(--crimson); color: var(--white);
  display: grid; place-items: center; font-family: var(--serif); font-size: 20px;
}

/* --- Footer ------------------------------------------------------------- */
.site-footer { background: var(--charcoal); color: var(--cream); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(2, 1fr); gap: 40px; }
.footer-grid h4 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,244,240,0.55); margin-bottom: 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 14px; }
.footer-grid a { color: rgba(245, 244, 240, 0.8); }
.footer-grid a:hover { color: var(--cream); }
.footer-tagline { color: rgba(245, 244, 240, 0.6); font-size: 15px; margin-top: 14px; max-width: 34ch; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(245, 244, 240, 0.12); margin-top: 56px; padding-top: 24px;
  font-size: 13px; color: rgba(245, 244, 240, 0.5);
}

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { gap: 32px; }
}

@media (max-width: 720px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: 72px 0 auto; flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 20px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav a.is-active { border-bottom-color: var(--crimson); }
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { flex-wrap: wrap; }
  .side { padding: 28px; }
}

/* Reference design: editorial typography, ruled grids and burgundy accents. */
:root { --shell: 1328px; --muted: #686662; --line: #d5d3cd; }
body { font-weight: 400; }
h1,h2,h3 { font-weight: 600; }
.header-inner { height: 64px; gap: 30px; }
.brand { flex-shrink: 0; }
.brand img { width: 150px; height: auto; }
.brand-mark { background: var(--ink); font-size: 18px; padding: 0 5px; letter-spacing: 0; }
.brand-word { font-weight: 600; }
.nav { margin-inline: auto; gap: 28px; }
.header-actions { gap: 16px; }
.header-cta { padding: 9px 16px; white-space: nowrap; }
.lang-btn { min-height: 38px; font-size: 12px; }
.btn { font-weight: 500; min-height: 44px; justify-content: center; line-height: 1.45; }
:focus-visible { outline: 3px solid var(--crimson); outline-offset: 5px; }
.hero { padding: 100px 0 80px; }
.hero-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
.hero-eyebrow { display: inline-block; background: #e9e7e2; padding: 4px 12px; }
.eyebrow { font-size: 12px; letter-spacing: .07em; font-weight: 500; }
.hero-logo { width: 205px; height: auto; margin-top: 26px; }
.hero h1 { font-size: clamp(42px,4.5vw,62px); line-height: 1.07; letter-spacing: -.035em; margin-top: 24px; }
.hero h1 em { color: var(--ink); }
.hero .lead { font-size: 17px; line-height: 1.7; max-width: 49ch; margin-top: 26px; }
.hero-actions { margin-top: 34px; }
.hero-visual { aspect-ratio: 4/3; background: #ddd9d2; overflow: visible; }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.hero-visual::after { display: none; }
.hero-badge { left: -24px; bottom: -20px; background: white; border: 1px solid var(--line); padding: 16px 20px; min-width: 195px; box-shadow: 0 5px 20px #0000000a; }
.hero-badge .eyebrow { display: block; font-size: 12px; }
.hero-badge strong { color: var(--crimson); font-size: 28px; font-weight: 600; line-height: 1.5; }
.hero-badge span { font-size: 13px; }
.stats { gap: 34px; margin-top: 46px; padding-top: 32px; }
.stat-value { font-size: 34px; font-weight: 600; line-height: 1.3; }
.stat-label { text-transform: none; letter-spacing: 0; font-size: 14px; }
.section { padding: 80px 0; }
.section-head { margin-bottom: 32px; }
.section-head h2 { font-size: clamp(30px,3vw,40px); letter-spacing: -.025em; }
.benefits { background: var(--charcoal); color: var(--cream); }
.benefits .grid { gap: 0; }
.benefits .card { border: 0; border-right: 1px solid #ffffff0c; background: transparent; padding: 28px 36px; transform: none; }
.benefits .card:last-child { border: 0; }
.card-no { color: #ffffff35; font-size: 40px; font-weight: 400; display: block; margin-bottom: 8px; }
.benefits h3 { font-family: var(--sans); font-size: 20px; font-weight: 500; }
.benefits p { color: #b9b8b4; font-size: 16px; }
.center-action { text-align: center; margin-top: 40px; }
.categories-grid { gap: 1px; background: var(--line); border: 1px solid var(--line); }
.categories-grid .card { border: 0; padding: 26px 22px; border-radius: 0; }
.category-card:hover { transform: none; background: #f9f5f4; }
.category-card h3 { font-family: var(--sans); font-weight: 500; font-size: 16px; }
.card p { font-size: 16px; }
.card-icon { font-size: 23px; margin-bottom: 10px; }
.categories-grid .category-card:nth-child(1) .card-icon { color: #9b1c35; }
.categories-grid .category-card:nth-child(2) .card-icon { color: #c27b24; }
.categories-grid .category-card:nth-child(3) .card-icon { color: #437a66; }
.categories-grid .category-card:nth-child(4) .card-icon { color: #5367a4; }
.categories-grid .category-card:nth-child(5) .card-icon { color: #8f4d72; }
.categories-grid .category-card:nth-child(6) .card-icon { color: #b25648; }
.categories-grid .category-card:nth-child(7) .card-icon { color: #2d7180; }
.categories-grid .category-card:nth-child(8) .card-icon { color: #7d5ca8; }
.categories-grid .category-card:nth-child(9) .card-icon { color: #4e8664; }
.categories-grid .category-card:nth-child(10) .card-icon { color: #b28a3e; }
.categories-grid .category-card:nth-child(11) .card-icon { color: #63834a; }
.categories-grid .category-card:nth-child(12) .card-icon { color: #777777; }
.audience { border-top: 1px solid var(--line); }
.centered { text-align: center; margin-bottom: 40px; }
.sides-grid { gap: 0; }
.side { border: 0; padding: 44px 40px; background: var(--charcoal); color: var(--cream); }
.side .eyebrow { color: #e1a6b0; }
.side li { font-size: 16px; color: #c3c1bd; }
.side h3 { font-size: 29px; max-width: 28ch; }
.side ul { gap: 16px; margin-bottom: 32px; }
.side + .side { background: white; color: var(--ink); }
.side + .side li { color: var(--muted); }
.side + .side .eyebrow { color: var(--crimson); }
.side + .side .btn { background: transparent; color: var(--ink); border-color: var(--line); }
.early { background: var(--crimson); text-align: left; }
.early .shell { display: grid; grid-template-columns: 1fr 1fr; column-gap: 70px; align-items: start; }
.early .eyebrow { color: #edcbd1; grid-column: 1; }
.early h2 { grid-column: 1; grid-row: 2/5; margin: 14px 0 0; font-size: clamp(30px,3vw,40px); }
.early .lead { grid-column: 2; grid-row: 1/3; margin: 0 0 24px; font-size: 16px; color: #eed9dd; }
.early .btn { grid-column: 2; justify-self: start; }
.early .contact-note { grid-column: 2; color: #eed9dd; margin-top: 16px; }
.post { background: transparent; padding: 28px 24px; gap: 16px; }
.post h3 { font-size: 25px; line-height: 1.25; }
.post-meta { margin-top: auto; padding-top: 10px; }
.cta { background: var(--charcoal); padding: 80px 0; }
.cta h2 { max-width: 23ch; margin: auto; font-size: clamp(34px,4vw,48px); }
.cta .btn-light { background: var(--crimson); color: white; }
.cta .btn { margin: 4px; }
.site-footer { background: #141414; }
.footer-grid h4,.detail-label,.field label { font-size: 12px; }
.field input,.field textarea { width: 100%; min-width: 0; font-size: 16px; }
.grid > *, .hero-grid > *, .contact-grid > * { min-width: 0; }
@media (max-width: 1050px) {
 .header-inner { gap: 16px; } .nav { gap: 18px; } .header-actions { gap: 10px; }
 .hero-grid { gap: 32px; } .hero { padding-top: 65px; } .hero h1 { font-size: 46px; }
 .hero-actions .btn { padding-inline: 16px; } .side { padding: 32px; }
}
@media (max-width: 900px) {
 .hero-grid { grid-template-columns: 1fr; gap: 44px; } .hero-copy { max-width: 700px; }
 .hero h1 { font-size: clamp(42px,7vw,60px); } .hero-visual { max-width: 700px; width: 100%; }
 .hero-badge { position: static; margin-top: 20px; display: inline-block; }
 .hero { padding-bottom: 65px; }
 .benefits .grid { grid-template-columns: repeat(3,1fr); } .benefits .card { padding: 16px; }
 .early .shell { column-gap: 36px; } .header-cta { display: none; }
}
@media (max-width: 720px) {
 :root { --pad: 20px; } .header-inner { height: 64px; gap: 12px; }
 .nav { inset: 64px 0 auto; visibility: hidden; margin: 0; } .nav.is-open { visibility: visible; }
 .header-actions { margin-left: auto; } .burger { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
 .brand img { width: 138px; } .lang-btn { padding-inline: 8px; }
 .hero { padding-top: 44px; } .hero-logo { width: 180px; }
 .hero h1 { font-size: clamp(38px,9vw,56px); } .hero .lead { font-size: 16px; }
 .stats { gap: 26px; margin-top: 32px; padding-top: 24px; flex-wrap: nowrap; }
 .stat-value { font-size: 30px; } .stat-label { font-size: 13px; }
 .section { padding: 56px 0; } .benefits .grid { grid-template-columns: 1fr; }
 .benefits .card { padding: 24px 0; border-right: 0; border-bottom: 1px solid #ffffff20; }
 .categories-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } .categories-grid .card { padding: 22px 16px; }
 .category-card h3 { line-height: 1.4; } .categories-grid p { font-size: 14px; }
 .side { padding: 32px 24px; } .side h3 { font-size: 27px; }
 .early .shell { display: block; } .early h2 { margin: 16px 0 24px; } .early .lead { margin-bottom: 24px; }
 .post h3 { font-size: 24px; } .footer-grid { gap: 32px; } .footer-grid > :first-child { grid-column: 1/-1; }
 .contact-grid { gap: 32px; } .form { padding: 24px; } .page-head { padding-top: 48px; }
 html[lang="ka"] .hero h1 { font-size: clamp(30px,7vw,46px); }
}
@media (max-width: 380px) { .hero-actions { flex-direction: column; } .categories-grid { grid-template-columns: 1fr; } .brand img { width: 122px; } }
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { transition: none !important; scroll-behavior: auto !important; } }
[hidden] { display: none !important; }
.section-head-row { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.text-link { color: var(--crimson); font-size: 14px; white-space: nowrap; padding-block: 10px; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
@media(max-width: 540px) { .section-head-row { align-items: start; flex-direction: column; gap: 10px; } }
