:root {
  --brand-50: #ecfdf7;
  --brand-100: #d1faec;
  --brand-200: #a6f2d8;
  --brand-300: #6de5bf;
  --brand-400: #34d0a2;
  --brand-500: #15b888;
  --brand-600: #0f9270;
  --brand-700: #0d735a;
  --brand-800: #0f5b49;
  --brand-900: #0f4a3d;
  --brand-950: #062e26;
  --bg: #0a1410;
  --panel: #0d1f1a;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --dim: #6b7280;
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: #e6f2ee;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--brand-500);
  color: var(--brand-950);
}

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

button {
  font: inherit;
}

.site {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}

.container {
  width: min(100% - 40px, 72rem);
  margin: 0 auto;
}

.container--narrow {
  width: min(100% - 40px, 56rem);
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(15, 74, 61, 0.6);
  background: rgba(10, 20, 16, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header__inner {
  position: relative;
  width: min(100% - 40px, 72rem);
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand:hover .logo {
  transform: scale(1.1);
}

.logo {
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.brand__text {
  display: grid;
  line-height: 1.15;
}

.brand__name {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.brand__role {
  color: var(--brand-400);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
}

.nav--desktop {
  display: none;
}

.nav__link,
.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.875rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav__link {
  color: #d1d5db;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--brand-300);
  background: rgba(15, 74, 61, 0.4);
}

.nav__link:hover {
  background: rgba(15, 74, 61, 0.2);
}

.nav__cta {
  margin-left: 8px;
  color: var(--brand-950);
  background: var(--brand-500);
  font-weight: 500;
}

.nav__cta:hover {
  background: var(--brand-400);
}

.language-menu {
  position: relative;
  margin-left: 8px;
}

.language-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  border: 1px solid rgba(15, 91, 73, 0.8);
  border-radius: 8px;
  padding: 7px 10px;
  color: #d1d5db;
  background: rgba(6, 46, 38, 0.55);
  font-size: 0.75rem;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  content: "▾";
  color: var(--brand-400);
  font-size: 0.7rem;
}

.language-menu[open] summary,
.language-menu summary:hover {
  border-color: var(--brand-500);
  color: var(--brand-300);
}

.language-menu__options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  display: grid;
  min-width: 148px;
  overflow: hidden;
  border: 1px solid rgba(15, 91, 73, 0.9);
  border-radius: 8px;
  padding: 5px;
  background: rgba(10, 20, 16, 0.98);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.language-menu__options a {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  padding: 8px 10px;
  color: #d1d5db;
  font-size: 0.8rem;
}

.language-menu__options a:hover,
.language-menu__options a[aria-current="page"] {
  color: var(--brand-300);
  background: rgba(15, 74, 61, 0.4);
}

.language-menu__flag {
  font-size: 1.05rem;
  line-height: 1;
}

.menu-button {
  position: absolute;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 6px;
  color: var(--brand-300);
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.menu-button svg {
  display: block;
  flex: 0 0 auto;
}

.menu-button:hover {
  background: rgba(15, 74, 61, 0.4);
}

.nav-mobile {
  border-top: 1px solid rgba(15, 74, 61, 0.6);
  background: rgba(10, 20, 16, 0.95);
}

.nav-mobile__inner {
  width: min(100% - 40px, 72rem);
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile__link {
  border-radius: 6px;
  padding: 8px 12px;
  color: #e5e7eb;
}

.nav-mobile__link:hover {
  background: rgba(15, 74, 61, 0.4);
}

.nav-mobile .language-menu {
  margin: 8px 0 0;
}

.nav-mobile .language-menu summary {
  width: 100%;
  justify-content: space-between;
  padding: 9px 12px;
}

.nav-mobile .language-menu__options {
  position: static;
  width: 100%;
  margin-top: 6px;
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 80px;
}

.hero__grid,
.hero__glow,
.section__grid-bg,
.contact__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  opacity: 0.6;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero__container,
.section__content,
.contact__content {
  position: relative;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.hero__copy,
.code-card-wrap,
.code-card {
  min-width: 0;
  max-width: 100%;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  border: 1px solid rgba(13, 115, 90, 0.6);
  border-radius: 999px;
  padding: 4px 12px;
  background: rgba(6, 46, 38, 0.5);
  color: var(--brand-300);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-400);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero__title {
  margin: 0;
  color: #fff;
  font-size: 2.25rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.hero__title span {
  background: linear-gradient(to right, var(--brand-300), var(--brand-400), var(--brand-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__role {
  margin: 20px 0 0;
  color: #d1d5db;
  font-size: 1.125rem;
}

.typewriter,
.cursor-blink {
  color: var(--brand-400);
  font-family: var(--font-mono);
  font-weight: 700;
}

.cursor-blink {
  color: var(--brand-300);
}

.hero__description {
  max-width: 36rem;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.625;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 24px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.button--primary {
  background: var(--brand-500);
  color: var(--brand-950);
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(15, 74, 61, 0.4), 0 4px 6px -4px rgba(15, 74, 61, 0.4);
}

.button--primary:hover {
  background: var(--brand-400);
}

.button--secondary {
  border: 1px solid var(--brand-700);
  color: var(--brand-200);
}

.button--secondary:hover {
  background: rgba(15, 74, 61, 0.4);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 32px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.875rem;
}

.stats div {
  display: flex;
  align-items: baseline;
}

.stats strong {
  color: var(--brand-300);
  font-size: 1.5rem;
}

.stats span:not(.stats__divider) {
  margin-left: 8px;
}

.stats__divider {
  display: none;
  width: 1px;
  height: 32px;
  background: var(--brand-900);
}

.code-card-wrap {
  position: relative;
}

.code-card__aura {
  position: absolute;
  inset: -16px;
  background: linear-gradient(135deg, rgba(21, 184, 136, 0.2), transparent);
  filter: blur(48px);
}

.code-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 74, 61, 0.8);
  border-radius: 16px;
  padding: 24px;
  background: linear-gradient(135deg, #0d1f1a, #0a1410);
  box-shadow: 0 25px 50px -12px rgba(6, 46, 38, 0.5);
}

.code-card__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 74, 61, 0.6);
}

.window-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.window-dot--red {
  background: rgba(239, 68, 68, 0.7);
}

.window-dot--yellow {
  background: rgba(234, 179, 8, 0.7);
}

.window-dot--green {
  background: rgba(34, 197, 94, 0.7);
}

.code-card__path {
  margin-left: 8px;
  color: #6b7280;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.code-card__logo {
  display: flex;
  justify-content: center;
  margin: 8px 0;
}

.code-card__pre {
  width: 100%;
  max-width: 100%;
  margin: 16px 0 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  color: #d1d5db;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.625;
}

.section {
  position: relative;
  padding: 80px 0;
}

.section--grid {
  overflow: hidden;
}

.section__grid-bg {
  opacity: 0.3;
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.section-title--center {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-400);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--brand-500);
}

.section-title h2 {
  margin: 12px 0 0;
  color: #fff;
  font-size: 1.875rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}

.feature-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.panel,
.portfolio-card,
.contact-card {
  border: 1px solid rgba(15, 74, 61, 0.7);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(13, 31, 26, 0.8), rgba(10, 20, 16, 0.8));
}

.panel {
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.panel:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 146, 112, 0.6);
}

.panel__icon {
  margin-bottom: 12px;
  font-size: 1.875rem;
  line-height: 1;
}

.panel h3 {
  margin: 0 0 8px;
  color: var(--brand-300);
  font-size: 1.25rem;
}

.panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.625;
}

.skills-list {
  display: grid;
  gap: 24px 40px;
  margin-top: 48px;
}

.skill__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.skill__name {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 500;
}

.skill__icon {
  font-size: 1.25rem;
  line-height: 1;
}

.skill__level {
  color: var(--brand-400);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.skill__bar {
  height: 8px;
  overflow: hidden;
  border: 1px solid var(--brand-900);
  border-radius: 999px;
  background: var(--brand-950);
}

.skill__fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(to right, #88ba9a, #06b2d4);
}

.section-lead {
  max-width: 42rem;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.625;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.filter-button {
  border: 1px solid var(--brand-800);
  border-radius: 999px;
  padding: 6px 12px;
  background: transparent;
  color: #d1d5db;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.filter-button:hover {
  border-color: var(--brand-500);
  color: var(--brand-300);
}

.filter-button.is-active {
  border-color: var(--brand-500);
  background: var(--brand-500);
  color: var(--brand-950);
}

.portfolio-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 184, 136, 0.7);
}

.portfolio-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(21, 184, 136, 0.1);
  filter: blur(48px);
  transition: background-color 0.2s ease;
}

.portfolio-card:hover::before {
  background: rgba(52, 208, 162, 0.2);
}

.portfolio-card__inner {
  position: relative;
}

.portfolio-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.portfolio-card__category {
  margin-bottom: 4px;
  color: var(--brand-500);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.portfolio-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.125rem;
  transition: color 0.2s ease;
}

.portfolio-card:hover h3 {
  color: var(--brand-300);
}

.portfolio-card__arrow {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--brand-500);
  transition: transform 0.2s ease, color 0.2s ease;
}

.portfolio-card:hover .portfolio-card__arrow {
  color: var(--brand-300);
  transform: translate(4px, -4px);
}

.portfolio-card__description {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.625;
}

.portfolio-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.portfolio-card__tag {
  border: 1px solid rgba(15, 91, 73, 0.8);
  border-radius: 4px;
  padding: 2px 8px;
  background: var(--brand-950);
  color: var(--brand-300);
  font-family: var(--font-mono);
  font-size: 0.625rem;
}

.portfolio-card__url {
  overflow: hidden;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 74, 61, 0.6);
  color: #6b7280;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact {
  overflow: hidden;
}

.contact__glow {
  opacity: 0.7;
}

.contact__lead {
  max-width: 36rem;
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.625;
  text-align: center;
}

.contact-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
  text-align: left;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px;
  transition: border-color 0.2s ease;
}

.contact-card:hover {
  border-color: rgba(21, 184, 136, 0.6);
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid var(--brand-700);
  border-radius: 12px;
  background: rgba(15, 74, 61, 0.6);
  color: var(--brand-300);
}

.contact-card__label,
.contact-card__value {
  display: block;
}

.contact-card__label {
  color: var(--brand-500);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.contact-card__value {
  color: #fff;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-card:hover .contact-card__value {
  color: var(--brand-300);
}

.response-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  color: #6b7280;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.footer {
  border-top: 1px solid rgba(15, 74, 61, 0.6);
  padding: 40px 0;
}

.footer__inner,
.footer__brand {
  display: flex;
  align-items: center;
}

.footer__inner {
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.footer__brand {
  gap: 12px;
  color: var(--muted);
  font-size: 0.875rem;
}

.footer__tech {
  color: #6b7280;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.footer__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.875rem;
}

.footer__links a {
  transition: color 0.2s ease;
}

.footer__links a:hover,
.footer__links a:focus-visible,
.footer__links a[aria-current="page"] {
  color: var(--brand-300);
}

.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-main {
  position: relative;
  flex: 1;
  overflow: hidden;
  padding: 144px 0 80px;
}

.legal-main__grid,
.legal-main__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.legal-main__grid {
  opacity: 0.4;
  -webkit-mask-image: radial-gradient(ellipse at top, black 20%, transparent 72%);
  mask-image: radial-gradient(ellipse at top, black 20%, transparent 72%);
}

.legal-content {
  position: relative;
  width: min(100% - 40px, 52rem);
  margin: 0 auto;
}

.legal-content h1 {
  margin: 12px 0 24px;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 800;
}

.legal-copy {
  border: 1px solid rgba(15, 74, 61, 0.7);
  border-radius: 16px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(13, 31, 26, 0.88), rgba(10, 20, 16, 0.88));
}

.legal-copy h2 {
  margin: 32px 0 10px;
  color: var(--brand-300);
  font-size: 1.25rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-copy p:last-child {
  margin-bottom: 0;
}

.legal-copy ul,
.legal-copy ol {
  margin: 4px 0 20px;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-copy li {
  padding-left: 4px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-copy li + li {
  margin-top: 8px;
}

.legal-copy li::marker {
  color: var(--brand-400);
}

.bg-grid {
  background-image:
    linear-gradient(rgba(20, 184, 136, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 184, 136, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.bg-radial-glow {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(20, 184, 136, 0.18), transparent 70%);
}

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.logo--float {
  animation: float-slow 6s ease-in-out infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

.cursor-blink {
  animation: blink 1s step-end infinite;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fade-up 0.7s ease-out both;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: var(--brand-800);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-600);
}

@media (min-width: 640px) {
  .brand__name {
    font-size: 1rem;
  }

  .brand__role {
    font-size: 0.75rem;
  }

  .hero {
    padding-top: 160px;
    padding-bottom: 112px;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__role {
    font-size: 1.25rem;
  }

  .stats__divider {
    display: block;
  }

  .section {
    padding: 112px 0;
  }

  .section-title h2 {
    font-size: 2.25rem;
  }

  .skills-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__inner {
    flex-direction: row;
  }

  .footer__meta {
    align-items: flex-end;
  }

  .legal-main {
    padding-top: 168px;
    padding-bottom: 112px;
  }

  .legal-content h1 {
    font-size: 3.25rem;
  }

  .legal-copy {
    padding: 32px;
  }
}

@media (max-width: 639px) {
  .hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__actions .button {
    width: 100%;
    padding-inline: 16px;
  }

  .code-card {
    padding: 20px;
  }

  .code-card__pre {
    font-size: 0.7rem;
  }
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1.2fr 1fr;
  }

  .hero__title {
    font-size: 3.75rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .nav--desktop {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .menu-button {
    position: static;
    display: none;
  }
}

@media (min-width: 1100px) and (max-width: 1180px) {
  .nav__link {
    padding-inline: 9px;
  }

  .nav__cta {
    padding-inline: 11px;
  }

  .language-menu summary {
    padding-inline: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
