/* ============================================================
   SZYNA CPM KRAKÓW — Landing Page Styles
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --primary:        #0d9488;
  --primary-dark:   #0f766e;
  --primary-light:  #ccfbf1;
  --accent:         #f97316;
  --accent-dark:    #ea6c0c;
  --bg:             #f8fafc;
  --bg-alt:         #f0fdfa;
  --surface:        #ffffff;
  --text:           #1e293b;
  --text-muted:     #64748b;
  --border:         #e2e8f0;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:      0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:      0 10px 40px rgba(0,0,0,.12);
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --font-heading:   'Poppins', sans-serif;
  --font-body:      'Inter', sans-serif;
  --nav-h:          70px;
  --container:      1200px;
  --section-py:     5rem;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-heading);
  font-size: .95rem;
  color: var(--text);
  white-space: nowrap;
  flex: 1; /* pushes CTA + hamburger to the right */
}
.nav__logo strong { color: var(--primary-dark); }

.nav__links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--primary); }

@media (min-width: 1024px) {
  .nav { gap: 2rem; }
  .nav__links { display: flex; }
}

.nav__cta {
  flex-shrink: 0;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 4px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav__hamburger { display: none; }
}

/* Mobile menu overlay */
.nav__links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  gap: 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: 99;
}
.nav__links.mobile-open a { font-size: 1.05rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 50px;
  transition: background .2s, transform .15s, box-shadow .2s, color .2s, border-color .2s;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--sm  { padding: .5rem 1.1rem; font-size: .85rem; }
.btn--md  { padding: .7rem 1.5rem; font-size: .95rem; }
.btn--lg  { padding: .9rem 2rem;   font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(13,148,136,.3);
}
.btn--primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(13,148,136,.4);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 10px rgba(249,115,22,.3);
}
.btn--accent:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 16px rgba(249,115,22,.4);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

.btn--outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--outline-primary:hover {
  background: var(--primary);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  font-size: .95rem;
}
.btn--ghost:hover { color: var(--primary-dark); transform: none; }
.btn--ghost:hover svg { transform: translate(2px,-2px); }
.btn--ghost svg { transition: transform .2s; }

/* Nav CTA visibility — placed here (after .btn rules) so specificity wins */
.nav .nav__cta { display: none; }
@media (min-width: 640px) {
  .nav .nav__cta { display: inline-flex; }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section {
  padding: var(--section-py) 0;
  position: relative;
}
.section--alt { background: var(--bg-alt); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section__label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .85rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: .9rem;
  text-align: center;
}
.section__note svg { color: var(--primary); flex-shrink: 0; }
.section__note a { color: var(--primary); font-weight: 600; }
.section__note a:hover { text-decoration: underline; }

.section__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.section__wave--alt {
  bottom: -1px;
}
.section__wave svg,
.section__wave--alt svg {
  width: 100%;
  display: block;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 3rem) 0 6rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #042f2e 0%, #0f766e 45%, #0284c7 100%);
  overflow: hidden;
}
.hero__bg svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.18) 0%, transparent 65%);
}

.hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 760px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.95);
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.hero__sub {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255,255,255,.9);
  max-width: 580px;
  margin-bottom: 2.25rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.hero__trust span {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
}

.hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero__wave svg { width: 100%; display: block; }

/* ============================================================
   CPM SECTION
   ============================================================ */
.cpm-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .cpm-layout { grid-template-columns: 1fr 1fr; }
}

.cpm-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.illus-card {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--primary-light);
}
.illus-card svg {
  width: 100%;
  height: 100%;
  display: block;
}
.illus-card--dark { background: var(--primary-dark); }

.cpm-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.cpm-text em { font-style: italic; color: var(--text); }

.benefits-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.benefit strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: .2rem;
  color: var(--text);
}
.benefit p {
  font-size: .9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   INDICATION CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.indication-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.indication-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.indication-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.1rem;
}
.indication-card__icon svg {
  width: 56px;
  height: 56px;
}
.indication-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .6rem;
  color: var(--text);
}
.indication-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    align-items: flex-start;
  }
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
}

.step__number {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(13,148,136,.35);
  flex-shrink: 0;
}

.step__content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .6rem;
}
.step__content p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.step__connector {
  display: none;
}
@media (min-width: 768px) {
  .step__connector {
    display: block;
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin-top: 32px;
    border-radius: 2px;
  }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card--featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light), var(--shadow-md);
}
@media (min-width: 1024px) {
  .pricing-card--featured { transform: scale(1.03); }
  .pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card__header {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.pricing-card__icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}
.pricing-card__header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: .3rem;
}
.pricing-card__from {
  font-size: .9rem;
  color: var(--text-muted);
}
.pricing-card__amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}
.pricing-card__unit {
  font-size: .9rem;
  color: var(--text-muted);
}

.pricing-card__price-extra {
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 50px;
  padding: .3rem .9rem;
  display: inline-block;
  margin-top: -.5rem;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-muted);
}
.pricing-card__features li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: var(--primary-light);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='4,9 8,13 14,6' stroke='%230d9488' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

/* ============================================================
   PHYSIO SECTION
   ============================================================ */
.physio-layout {
  max-width: 720px;
  margin: 0 auto;
}

.physio-text .section__label { margin-bottom: .75rem; }
.physio-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.physio-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.physio-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}
.physio-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .95rem;
  color: var(--text);
}
.physio-list li svg { flex-shrink: 0; margin-top: .1rem; }

.physio-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: .98rem;
  font-weight: 600;
  color: var(--text);
  transition: color .2s;
}
.faq-question:hover { color: var(--primary); }
.faq-question[aria-expanded="true"] { color: var(--primary); }

.faq-icon {
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--text-muted);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer:not([hidden]) {
  max-height: 400px;
}
.faq-answer[hidden] { display: block !important; max-height: 0; }
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
    align-items: stretch;
  }
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.contact-card--link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.contact-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.contact-card__label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .25rem;
}
.contact-card__value {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.contact-card__note {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .2rem;
}

.contact-map {
  min-height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.75);
}

.footer__inner {
  display: grid;
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; }
}

.footer__brand .nav__logo {
  color: #fff;
  margin-bottom: .85rem;
}
.footer__brand .nav__logo strong { color: var(--primary-light); }
.footer__brand p {
  font-size: .88rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer__link-heading {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}

.footer__links ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer__links a,
.footer__contact a {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer__links a:hover,
.footer__contact a:hover { color: var(--primary-light); }
.footer__contact li { font-size: .9rem; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
}
.footer__bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  text-align: center;
}
.footer__bottom a {
  color: var(--primary-light);
}
.footer__bottom a:hover { text-decoration: underline; }

/* ============================================================
   UTILITIES / SCROLL PADDING
   ============================================================ */
[id] { scroll-margin-top: calc(var(--nav-h) + 1.5rem); }

/* Focus styles for accessibility */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

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