:root {
  --bg: #eef3f8;
  --surface: #ffffff;
  --surface-soft: #e6edf4;
  --text: #142335;
  --text-muted: #526273;
  --heading: #0f1f31;
  --border: rgba(15, 31, 49, 0.1);
  --border-strong: rgba(15, 31, 49, 0.16);
  --accent: #1d6c74;
  --accent-soft: rgba(29, 108, 116, 0.08);
  --shadow: 0 10px 30px rgba(15, 31, 49, 0.04);
  --body-top: #eef4f9;
  --body-bottom: #e4ebf3;
  --body-highlight: rgba(29, 108, 116, 0.08);
  --header-bg: rgba(242, 246, 250, 0.88);
  --surface-glass: rgba(255, 255, 255, 0.82);
  --card-bg: rgba(255, 255, 255, 0.84);
  --chip-bg: rgba(255, 255, 255, 0.7);
  --section-alt-bg: rgba(255, 255, 255, 0.36);
  --overlay-backdrop: rgba(15, 31, 49, 0.72);
  --brand-mark-bg: #11253b;
  --primary-bg: #11253b;
  --primary-fg: #ffffff;
  --skip-bg: #11253b;
  --skip-fg: #ffffff;
  --radius-sm: 0.85rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.5rem;
  --container: min(1240px, calc(100% - 2rem));
  --nav-height: 4.5rem;
  --transition: 160ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body.portfolio-page,
.portfolio-page {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top right, var(--body-highlight), transparent 28%),
    linear-gradient(180deg, var(--body-top) 0%, var(--body-bottom) 100%);
  color: var(--text);
  line-height: 1.65;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  right: 1rem;
  bottom: 4.65rem;
  left: auto;
  top: auto;
  z-index: 26;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 0;
  background: var(--primary-bg);
  color: var(--primary-fg);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.15;
  box-shadow: 0 12px 24px rgba(15, 31, 49, 0.15);
  opacity: 1;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.skip-link:hover,
.skip-link:focus {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 31, 49, 0.18);
}

.skip-link.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.35rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 4px 18px rgba(15, 31, 49, 0.03);
}

.header-inner {
  position: relative;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 0.9rem;
  background: var(--brand-mark-bg);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.brand-copy strong {
  color: var(--heading);
  font-size: 0.98rem;
}

.header-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 0.95rem;
  background: var(--surface-glass);
  color: var(--heading);
  cursor: pointer;
  flex-direction: column;
}

.nav-toggle span {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  width: 100%;
  gap: 1rem;
  min-width: 0;
}

.site-nav {
  flex: 1 1 auto;
  min-width: 0;
  overflow: visible;
}

.header-switches {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
  flex-shrink: 0;
}

.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a,
.lang-button,
.theme-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--heading);
  background: var(--surface);
  border-color: var(--border);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-glass);
}

.lang-button,
.theme-button {
  min-width: 3rem;
  padding-inline: 0.7rem;
  cursor: pointer;
}

.theme-button {
  min-width: 2.5rem;
  padding-inline: 0.55rem;
  position: relative;
}

.theme-icon {
  display: inline-block;
  width: 0.95rem;
  height: 0.95rem;
  position: relative;
}

.theme-icon-light {
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    0 -0.45rem 0 -0.36rem currentColor,
    0 0.45rem 0 -0.36rem currentColor,
    0.45rem 0 0 -0.36rem currentColor,
    -0.45rem 0 0 -0.36rem currentColor,
    0.32rem 0.32rem 0 -0.38rem currentColor,
    -0.32rem 0.32rem 0 -0.38rem currentColor,
    0.32rem -0.32rem 0 -0.38rem currentColor,
    -0.32rem -0.32rem 0 -0.38rem currentColor;
}

.theme-icon-dark {
  border-radius: 50%;
  box-shadow: inset -0.28rem -0.02rem 0 0 currentColor;
  border: 1px solid transparent;
}

.theme-icon-auto {
  border-radius: 50%;
  background: linear-gradient(90deg, currentColor 50%, transparent 50%);
  border: 1px solid currentColor;
}

.theme-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-glass);
}

.lang-button[aria-pressed="true"],
.theme-button[aria-pressed="true"] {
  color: var(--heading);
  background: var(--surface);
  border-color: var(--border);
}

.section {
  padding: 5.5rem 0;
  scroll-margin-top: calc(var(--nav-height) + 1rem);
}

#about:focus-visible {
  outline: none;
}

.section-alt {
  border-top: 1px solid rgba(15, 31, 49, 0.05);
  border-bottom: 1px solid rgba(15, 31, 49, 0.05);
  background: var(--section-alt-bg);
}

.section-heading {
  max-width: 38rem;
  margin-bottom: 2.25rem;
}

.section-label,
.eyebrow,
.feature-type,
.repo-label,
.panel-label {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--heading);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.28rem;
}

h4 {
  font-size: 0.98rem;
}

p {
  margin: 0;
}

.hero-intro,
.hero-open-to,
.section-intro,
.timeline-company,
.feature-summary,
.feature-note,
.visual-caption,
.repo-card p,
.principle-card p,
.contact-copy,
.education-note {
  color: var(--text-muted);
}

.hero {
  padding-top: 4.15rem;
}

.hero-grid {
  display: grid;
  gap: 1.8rem;
}

.hero-copy {
  display: grid;
  gap: 0.95rem;
}

.hero-role {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-summary {
  max-width: 38rem;
  font-size: clamp(1.1rem, 2.1vw, 1.3rem);
  color: var(--heading);
}

.hero-intro,
.hero-open-to {
  max-width: 37rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.button,
.text-link,
.project-preview,
.back-to-top,
.lightbox-close {
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  padding: 0.68rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary-bg);
  color: var(--primary-fg);
}

.button-secondary {
  background: var(--surface-glass);
  color: var(--heading);
  border: 1px solid var(--border);
}

.button.is-disabled {
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.65);
  color: var(--text-muted);
  border: 1px dashed var(--border-strong);
}

.button.is-disabled:hover {
  transform: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--heading);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "\2192";
  color: var(--accent);
  transition: transform var(--transition);
}

.text-link:hover::after {
  transform: translateX(2px);
}

.hero-signals,
.check-list,
.tag-list {
  padding: 0;
  list-style: none;
}

.hero-signals,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-signals li,
.tag-list li {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--chip-bg);
  color: var(--heading);
}

.check-list {
  display: grid;
  gap: 0.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero-panel,
.timeline-card,
.repo-card,
.skill-card,
.principle-card,
.education-card,
.contact-panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-panel {
  overflow: hidden;
}

.hero-panel img {
  width: 100%;
  min-height: 20rem;
  object-fit: cover;
}

.hero-panel-copy {
  display: grid;
  gap: 1rem;
  padding: 1.2rem 1.25rem 1.35rem;
}

.hero-panel-copy strong {
  display: block;
  color: var(--heading);
}

.split-copy,
.feature-list,
.repo-grid,
.skills-grid,
.principles-grid {
  display: grid;
  gap: 1rem;
}

.timeline-card {
  display: grid;
  gap: 1.25rem;
  padding: 1.35rem;
}

.timeline-meta {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.timeline-dates,
.timeline-location,
.education-meta {
  color: var(--heading);
  font-weight: 700;
}

.repo-card,
.skill-card,
.principle-card,
.education-card,
.contact-panel {
  padding: 1.35rem;
}

.feature-card {
  display: grid;
  gap: 1rem;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.feature-visual {
  display: grid;
  gap: 0.6rem;
  align-content: start;
  padding: 1.15rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-body {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.project-preview {
  display: grid;
  gap: 0.6rem;
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  border: 1px solid var(--border);
  text-align: left;
  color: var(--heading);
  cursor: pointer;
}

.project-preview img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border-radius: 0.95rem;
}

.project-preview span {
  font-weight: 700;
}

.feature-header,
.feature-columns,
.feature-actions,
.footer-inner {
  display: grid;
  gap: 0.65rem;
}

.feature-columns + .feature-actions {
  padding-top: 0.55rem;
}

.feature-subtitle {
  color: var(--text-muted);
}

.repo-card,
.skill-card,
.principle-card,
.education-card,
.contact-panel {
  gap: 0.8rem;
  display: grid;
}

.repo-card-summary {
  background: var(--surface-glass);
  border-color: var(--border-strong);
}

.compact li {
  padding: 0.42rem 0.65rem;
  font-size: 0.92rem;
}

.site-footer {
  padding: 1.4rem 0 2rem;
}

.footer-inner {
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  opacity: 0;
  pointer-events: none;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: #11253b;
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 31, 49, 0.15);
  cursor: pointer;
  transform: translateY(0.4rem);
  transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lightbox {
  width: min(92vw, 980px);
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--surface-glass);
  box-shadow: 0 18px 50px rgba(15, 31, 49, 0.15);
}

.lightbox::backdrop {
  background: var(--overlay-backdrop);
}

.lightbox-image {
  width: 100%;
  border-radius: 1rem;
}

.lightbox-close {
  justify-self: end;
  margin-bottom: 0.8rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--heading);
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(29, 108, 116, 0.28);
  outline-offset: 3px;
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme]),
  html[data-theme="auto"] {
    --bg: #0b1623;
    --surface: #11253a;
    --surface-soft: #16304a;
    --text: #d7e2ed;
    --text-muted: #9bb0c2;
    --heading: #f2f6fb;
    --border: rgba(190, 204, 218, 0.14);
    --border-strong: rgba(190, 204, 218, 0.22);
    --accent: #79c2c2;
    --accent-soft: rgba(122, 180, 182, 0.14);
    --shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    --body-top: #08131f;
    --body-bottom: #0b1d30;
    --body-highlight: rgba(121, 194, 194, 0.08);
    --header-bg: rgba(7, 19, 31, 0.92);
    --surface-glass: rgba(12, 30, 47, 0.92);
    --card-bg: rgba(10, 24, 39, 0.92);
    --chip-bg: rgba(15, 36, 56, 0.86);
    --section-alt-bg: rgba(8, 20, 33, 0.88);
    --overlay-backdrop: rgba(4, 8, 14, 0.82);
    --brand-mark-bg: #1b3f62;
    --primary-bg: #79c2c2;
    --primary-fg: #082137;
    --skip-bg: rgba(17, 37, 58, 0.94);
    --skip-fg: #f2f6fb;
  }

  html:not([data-theme]),
  html[data-theme="auto"] {
    color-scheme: dark;
  }

  .site-header.is-scrolled {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  }

  .button.is-disabled {
    background: rgba(22, 34, 49, 0.64);
  }

  .project-preview {
    background: var(--surface-soft);
  }

  .hero-panel img,
  .project-preview img,
  .lightbox-image {
    background: #edf2f7;
  }
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0b1623;
  --surface: #11253a;
  --surface-soft: #16304a;
  --text: #d7e2ed;
  --text-muted: #9bb0c2;
  --heading: #f2f6fb;
  --border: rgba(190, 204, 218, 0.14);
  --border-strong: rgba(190, 204, 218, 0.22);
  --accent: #79c2c2;
  --accent-soft: rgba(122, 180, 182, 0.14);
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  --body-top: #08131f;
  --body-bottom: #0b1d30;
  --body-highlight: rgba(121, 194, 194, 0.08);
  --header-bg: rgba(7, 19, 31, 0.92);
  --surface-glass: rgba(12, 30, 47, 0.92);
  --card-bg: rgba(10, 24, 39, 0.92);
  --chip-bg: rgba(15, 36, 56, 0.86);
  --section-alt-bg: rgba(8, 20, 33, 0.88);
  --overlay-backdrop: rgba(4, 8, 14, 0.82);
  --brand-mark-bg: #1b3f62;
  --primary-bg: #79c2c2;
  --primary-fg: #082137;
  --skip-bg: rgba(17, 37, 58, 0.94);
  --skip-fg: #f2f6fb;
}

html[data-theme="light"] {
  color-scheme: light;
}

html.nav-open .skip-link {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.35rem);
}

@media (min-width: 760px) {
  .hero-grid,
  .timeline-card,
  .feature-card,
  .feature-columns,
  .repo-grid,
  .skills-grid,
  .split-copy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .principles-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .skills-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
  }

  .timeline-meta {
    padding-right: 1rem;
    padding-bottom: 0;
    border-bottom: 0;
    border-right: 1px solid var(--border);
  }
}

@media (min-width: 768px) {
  .container {
    width: min(720px, calc(100% - 3rem));
  }
}

@media (min-width: 992px) {
  .container {
    width: min(960px, calc(100% - 3rem));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.82fr);
    align-items: start;
  }

  .feature-card {
    grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.22fr);
    align-items: start;
  }

  .feature-card:nth-child(even) .feature-visual {
    order: 2;
  }

  .feature-card:nth-child(even) .feature-body {
    order: 1;
  }
}

@media (min-width: 1200px) {
  .container {
    width: min(1240px, calc(100% - 3rem));
  }

  .header-controls {
    padding-left: 1.75rem;
  }

  .header-panel {
    gap: 1.35rem;
  }

  .site-nav {
    padding-left: 0.5rem;
  }

  html[data-language="gr"] .brand-copy {
    max-width: 11.5rem;
  }

  html[data-language="gr"] .brand-copy strong,
  html[data-language="gr"] .brand-copy span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  html[data-language="gr"] .brand-copy strong {
    font-size: 0.92rem;
  }

  html[data-language="gr"] .brand-copy span {
    font-size: 0.82rem;
  }

  html[data-language="gr"] .header-controls {
    padding-left: 1rem;
  }

  html[data-language="gr"] .header-panel {
    gap: 0.8rem;
  }

  html[data-language="gr"] .site-nav {
    padding-left: 0.15rem;
  }

  html[data-language="gr"] .site-nav ul {
    gap: 0.15rem;
  }

  html[data-language="gr"] .site-nav a {
    padding: 0.4rem 0.62rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 1199.98px) {
  .header-inner {
    padding: 0.8rem 0;
  }

  .header-controls {
    flex: 0 0 auto;
    width: auto;
    gap: 0.75rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-panel {
    display: none;
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    z-index: 35;
    width: min(22rem, calc(100vw - 1.5rem));
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 0.95rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface-glass);
    box-shadow: var(--shadow);
  }

  .header-panel.is-open {
    display: flex;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .site-nav a {
    justify-content: flex-start;
    width: 100%;
    min-height: 2.8rem;
  }

  .header-switches {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

  .theme-switcher,
  .lang-switcher {
    flex: 1 1 auto;
  }

  .theme-button,
  .lang-button {
    flex: 1 1 auto;
  }
}

@media (max-width: 767.98px) {
  .skip-link {
    right: 0.75rem;
    bottom: 4.35rem;
    max-width: calc(100vw - 1.5rem);
    padding: 0.62rem 0.85rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 479.98px) {
  .skip-link {
    right: 0.65rem;
    bottom: 4.1rem;
    max-width: calc(100vw - 1.3rem);
  }

  .header-panel {
    width: calc(100vw - 1.5rem);
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 4.75rem 0;
  }

  .hero {
    padding-top: 3.8rem;
  }

  .repo-card,
  .skill-card,
  .principle-card,
  .education-card,
  .contact-panel,
  .timeline-card {
    padding: 1.15rem;
  }

  .feature-visual,
  .feature-body {
    padding: 1.05rem;
  }

  .container {
    width: calc(100% - 1.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
