:root {
  /* Paleta otoñal */
  --cream: #fff8f1;
  --cream-soft: #f9eee5;
  --peach: #e7c9b4;
  --peach-light: #f3dfd0;

  --ochre: #c99025;
  --orange: #c64800;
  --terracotta: #ae2522;
  --wine: #5a0609;

  --text: #4b2824;
  --text-soft: #765650;
  --surface: #ffffff;

  --border: #e8d5c7;
  --border-dark: #c9a99a;

  --shadow: 0 16px 38px rgba(90, 6, 9, 0.09);
  --shadow-small: 0 8px 22px rgba(90, 6, 9, 0.06);

  --radius-large: 24px;
  --radius-medium: 16px;
  --radius-small: 10px;

  --max-width: 1120px;
}

/* =========================
   CONFIGURACIÓN GENERAL
========================= */

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

main {
  overflow: hidden;
}

/* =========================
   NAVEGACIÓN
========================= */

.navbar {
  position: sticky;
  z-index: 1000;
  top: 0;

  background: rgba(255, 248, 241, 0.95);
  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(15px);
}

.nav-container {
  width: min(91%, var(--max-width));
  min-height: 66px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  color: var(--wine);
  font-size: 0.98rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo::before {
  color: var(--orange);
  content: "< ";
}

.nav-logo::after {
  color: var(--orange);
  content: " />";
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.nav-links a {
  position: relative;

  color: var(--text-soft);

  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;

  transition: color 0.2s ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;

  height: 2px;

  content: "";
  background: var(--orange);

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--terracotta);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Selector de idioma */

.language-switcher {
  padding: 4px 7px;

  display: flex;
  align-items: center;
  gap: 4px;

  color: var(--text-soft);
  background: var(--peach-light);

  border: 1px solid var(--border);
  border-radius: 999px;
}

.language-button {
  padding: 4px 8px;

  color: var(--text-soft);
  background: transparent;

  border: 0;
  border-radius: 999px;

  font-size: 0.78rem;
  font-weight: 900;

  cursor: pointer;
}

.language-button:hover,
.language-button.active {
  color: #ffffff;
  background: var(--terracotta);
}

/* =========================
   PORTADA
========================= */

.hero-section {
  position: relative;

  width: 100%;
  margin: 0;
  padding: 70px 4% 55px;

  color: var(--text);

  background:
    radial-gradient(
      circle at 4% 9%,
      rgba(201, 144, 37, 0.23),
      transparent 31%
    ),
    radial-gradient(
      circle at 97% 25%,
      rgba(198, 72, 0, 0.18),
      transparent 26%
    ),
    linear-gradient(
      135deg,
      #fff8f1 0%,
      #f9eee5 58%,
      #f7e1ce 100%
    );
}

/* Formas decorativas */

.hero-background-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape-one {
  top: 100px;
  right: -55px;

  width: 210px;
  height: 210px;

  background: rgba(201, 144, 37, 0.2);
}

.hero-shape-two {
  bottom: 40px;
  left: -60px;

  width: 150px;
  height: 150px;

  background: rgba(231, 201, 180, 0.34);
}

/* Contenido principal */

.hero-content {
  position: relative;
  z-index: 1;

  width: min(91%, var(--max-width));
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(0, 1.3fr)
    minmax(285px, 0.7fr);

  align-items: center;
  gap: 58px;
}

.hero-text {
  max-width: 660px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;

  color: var(--wine);

  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;

  text-transform: uppercase;
}

.hero-text h1 {
  max-width: 680px;
  margin: 0;

  color: #8d4134;

  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero-title {
  max-width: 620px;
  margin: 20px 0 15px;

  color: var(--orange);

  font-size: clamp(1.65rem, 3.1vw, 2.45rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.hero-description {
  max-width: 620px;
  margin: 0;

  color: var(--text-soft);

  font-size: 0.98rem;
  line-height: 1.65;
}

/* Diferenciador */

.hero-value {
  max-width: 610px;
  margin-top: 22px;
  padding: 14px 16px;

  display: flex;
  align-items: flex-start;
  gap: 11px;

  color: var(--text);

  background: rgba(255, 255, 255, 0.72);

  border: 1px solid var(--border);
  border-radius: var(--radius-medium);

  box-shadow: var(--shadow-small);
}

.hero-value-icon {
  flex-shrink: 0;

  color: var(--orange);

  font-size: 1.05rem;
  line-height: 1.45;
}

.hero-value p {
  margin: 0;
  font-size: 0.87rem;
}

/* Botones */

.hero-buttons,
.contact-buttons,
.project-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-buttons {
  margin-top: 26px;
}

.button,
.project-link {
  min-height: 41px;
  padding: 8px 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--wine);
  background: rgba(255, 255, 255, 0.52);

  border: 2px solid var(--wine);
  border-radius: 999px;

  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover,
.project-link:hover {
  transform: translateY(-2px);

  color: #ffffff;
  background: var(--wine);
}

.button-primary,
.button-secondary,
.button-tertiary {
  color: var(--wine);
  background: rgba(255, 255, 255, 0.45);
  border-color: var(--wine);
}

/* =========================
   TARJETA DE PERFIL
========================= */

.profile-card {
  position: relative;
  overflow: hidden;

  width: 100%;
  max-width: 340px;
  margin-left: auto;

  background:
    linear-gradient(
      160deg,
      #efcfbd 0%,
      #e7c1aa 100%
    );

  border: 1px solid rgba(174, 37, 34, 0.12);
  border-radius: 25px;

  box-shadow: var(--shadow);
}

.profile-card::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;

  height: 5px;

  content: "";

  background:
    linear-gradient(
      90deg,
      var(--ochre),
      var(--orange),
      var(--terracotta)
    );
}

.profile-image-wrapper {
  position: relative;
  padding: 22px 22px 0;
}

.profile-pic {
  width: 100%;
  height: 285px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
}

/* Disponible para oportunidades */

.availability-badge {
  position: absolute;
  right: 30px;
  bottom: 10px;

  padding: 6px 11px;

  color: #ffffff;
  background: var(--wine);

  border: 3px solid #ffffff;
  border-radius: 999px;

  font-size: 0.63rem;
  font-weight: 900;
}

.availability-badge::before {
  margin-right: 5px;

  content: "•";
  font-size: 0.75rem;
}

.profile-card-content {
  padding: 20px 22px 23px;
}

.profile-role {
  margin: 0 0 5px;

  color: var(--wine);

  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.065em;

  text-transform: uppercase;
}

.profile-card-content h2 {
  margin: 0 0 18px;

  color: var(--wine);

  font-size: 1.6rem;
  line-height: 1.15;
}

.profile-details {
  display: grid;
  gap: 13px;
}

.profile-detail {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.profile-detail-icon {
  width: 29px;
  height: 29px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--orange);
  background: rgba(201, 144, 37, 0.25);

  border-radius: 9px;

  font-size: 0.78rem;
  font-weight: 900;
}

.profile-detail-label {
  display: block;

  color: var(--wine);

  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.06em;

  text-transform: uppercase;
}

.profile-detail p {
  margin: 1px 0 0;

  color: var(--text);

  font-size: 0.78rem;
}

.profile-links {
  margin-top: 19px;
  padding-top: 17px;

  display: flex;
  flex-wrap: wrap;
  gap: 7px;

  border-top: 1px solid rgba(90, 6, 9, 0.15);
}

.profile-links a {
  padding: 5px 10px;

  color: var(--wine);
  background: rgba(255, 255, 255, 0.28);

  border: 1.5px solid var(--wine);
  border-radius: 999px;

  font-size: 0.67rem;
  font-weight: 900;
  text-decoration: none;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.profile-links a:hover {
  color: #ffffff;
  background: var(--wine);
}

/* =========================
   ESTADÍSTICAS
========================= */

.stats-grid {
  position: relative;
  z-index: 1;

  width: min(91%, var(--max-width));
  margin: 48px auto 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat-card {
  padding: 18px;

  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);

  box-shadow: var(--shadow-small);

  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--ochre);
}

.stat-number {
  display: block;

  color: var(--orange);

  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 7px;

  color: var(--text-soft);

  font-size: 0.77rem;
  line-height: 1.35;
}

/* =========================
   SECCIONES GENERALES
========================= */

.content-section {
  width: min(91%, var(--max-width));
  margin: 0 auto;
  padding: 72px 0;

  color: var(--text);
}

.alternate-section {
  position: relative;
}

.alternate-section::before {
  position: absolute;
  z-index: -1;

  top: 0;
  bottom: 0;
  left: 50%;

  width: 100vw;

  content: "";

  background: var(--cream-soft);

  transform: translateX(-50%);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 35px;
}

.content-section .section-label {
  color: var(--orange);
}

.section-heading h2,
.contact-content h2 {
  margin: 0;

  color: var(--wine);

  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-intro {
  margin: 14px 0 0;

  color: var(--text-soft);
  font-size: 0.92rem;
}

/* =========================
   SOBRE MÍ
========================= */

.about-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.45fr)
    minmax(235px, 0.55fr);

  align-items: start;
  gap: 28px;
}

.about-text {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.about-text p:first-child {
  margin-top: 0;
}

.about-highlight {
  padding: 23px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      var(--orange),
      var(--terracotta)
    );

  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.about-highlight h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.about-highlight p {
  margin: 0;

  color: rgba(255, 255, 255, 0.9);
  font-size: 0.87rem;
}

/* =========================
   LO QUE HAGO
========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.service-card {
  padding: 22px 20px;

  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);

  box-shadow: var(--shadow-small);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);

  border-color: var(--ochre);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--peach-light);
  border-radius: 13px;

  font-size: 1.4rem;
}

.service-card h3 {
  margin: 0 0 7px;

  color: var(--wine);
  font-size: 0.97rem;
}

.service-card p {
  margin: 0;

  color: var(--text-soft);
  font-size: 0.83rem;
}

/* =========================
   HABILIDADES
========================= */

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.skill-pill {
  padding: 8px 13px;

  color: var(--terracotta);
  background: var(--surface);

  border: 1px solid var(--peach);
  border-radius: 999px;

  font-size: 0.8rem;
  font-weight: 700;

  box-shadow: var(--shadow-small);

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.skill-pill:hover {
  transform: translateY(-2px);

  color: #ffffff;
  background: var(--terracotta);
}

/* =========================
   PROYECTOS
========================= */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  overflow: hidden;

  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);

  box-shadow: var(--shadow-small);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.project-card:hover {
  transform: translateY(-5px);

  border-color: var(--ochre);
  box-shadow: var(--shadow);
}

.project-image {
  width: 100%;
  height: 215px;

  object-fit: cover;
  background: var(--cream-soft);
}

.project-image-placeholder {
  height: 215px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--wine);

  background:
    linear-gradient(
      135deg,
      var(--peach-light),
      rgba(201, 144, 37, 0.25)
    );

  font-size: 1.05rem;
  font-weight: 900;
}

.project-content {
  padding: 22px;
}

.project-category {
  margin: 0 0 7px;

  color: var(--orange);

  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.project-content h3 {
  margin: 0 0 10px;

  color: var(--wine);

  font-size: 1.16rem;
  line-height: 1.25;
}

.project-content > p:not(.project-category) {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.project-result {
  margin: 15px 0;
  padding: 11px 13px;

  color: var(--text);
  background: var(--cream-soft);

  border-left: 3px solid var(--orange);
  border-radius: var(--radius-small);

  font-size: 0.81rem;
}

.project-tags {
  margin-bottom: 18px;

  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-tags span {
  padding: 5px 8px;

  color: var(--text-soft);
  background: var(--peach-light);

  border-radius: 999px;

  font-size: 0.68rem;
  font-weight: 700;
}

.project-link {
  min-height: 36px;
  padding: 7px 12px;

  color: #ffffff;
  background: var(--terracotta);
  border: 1px solid var(--terracotta);

  font-size: 0.73rem;
}

.project-link:hover {
  color: #ffffff;
  background: var(--wine);
}

.secondary-link {
  color: var(--wine);
  background: #ffffff;
  border: 1px solid var(--wine);
}

.secondary-link:hover {
  color: #ffffff;
  background: var(--wine);
}

.disabled-link {
  color: #9b8580;
  background: #eee6e0;
  border-color: #eee6e0;

  pointer-events: none;
}

/* =========================
   EXPERIENCIA
========================= */

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

.timeline::before {
  position: absolute;

  top: 8px;
  bottom: 8px;
  left: 7px;

  width: 2px;

  content: "";
  background: var(--peach);
}

.timeline-item {
  position: relative;

  padding-bottom: 30px;

  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 20px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  z-index: 1;

  width: 16px;
  height: 16px;
  margin-top: 4px;

  background: var(--orange);
  border: 4px solid var(--cream);
  border-radius: 50%;
}

.timeline-content {
  padding: 20px 22px;

  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);

  box-shadow: var(--shadow-small);
}

.timeline-date {
  margin: 0 0 5px;

  color: var(--orange);

  font-size: 0.71rem;
  font-weight: 900;
}

.timeline-content h3 {
  margin: 0;

  color: var(--wine);
  font-size: 1.05rem;
}

.timeline-content h4 {
  margin: 3px 0 8px;

  color: var(--text-soft);
  font-size: 0.85rem;
}

.timeline-content p:last-child {
  margin-bottom: 0;

  color: var(--text-soft);
  font-size: 0.87rem;
}

/* =========================
   EDUCACIÓN
========================= */

.education-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.education-card {
  padding: 23px;

  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);

  box-shadow: var(--shadow-small);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.education-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.education-year {
  margin: 0 0 8px;

  color: var(--orange);

  font-size: 0.74rem;
  font-weight: 900;
}

.education-card h3 {
  margin: 0 0 6px;

  color: var(--wine);
  font-size: 1.08rem;
}

.education-card h4 {
  margin: 0 0 7px;

  color: var(--text-soft);
  font-size: 0.88rem;
}

.education-card p:last-child {
  margin-bottom: 0;

  color: var(--text-soft);
  font-size: 0.83rem;
}

/* =========================
   CONTACTO
========================= */

.contact-section {
  padding: 78px 4%;

  color: var(--text);
  text-align: center;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(201, 144, 37, 0.22),
      transparent 31%
    ),
    linear-gradient(
      135deg,
      #f6dfcf,
      #edc9b4
    );
}

.contact-content {
  max-width: 720px;
  margin: 0 auto;
}

.contact-section .section-label {
  color: var(--orange);
}

.contact-content h2 {
  color: var(--wine);
}

.contact-content > p:not(.section-label) {
  margin: 15px 0 23px;

  color: var(--text-soft);
  font-size: 0.93rem;
}

.contact-buttons {
  justify-content: center;
}

.contact-section .button-primary,
.contact-section .button-secondary {
  color: var(--wine);
  background: rgba(255, 255, 255, 0.46);
  border-color: var(--wine);
}

.contact-section .button-primary:hover,
.contact-section .button-secondary:hover {
  color: #ffffff;
  background: var(--wine);
}

/* =========================
   PIE DE PÁGINA
========================= */

footer {
  padding: 21px;

  color: var(--text-soft);
  background: var(--cream);

  border-top: 1px solid var(--border);

  text-align: center;
  font-size: 0.78rem;
}

footer p {
  margin: 0;
}

/* =========================
   TABLET
========================= */

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-content,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 40px;
  }

  .hero-text {
    max-width: 730px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-description {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-value {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .hero-buttons {
    justify-content: center;
  }

  .profile-card {
    width: min(100%, 340px);
    margin: 0 auto;
  }

  .stats-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   CELULAR
========================= */

@media (max-width: 700px) {
  .nav-container {
    min-height: 60px;
  }

  .nav-logo {
    font-size: 0.85rem;
  }

  .hero-section {
    padding: 48px 4% 45px;
  }

  .hero-content {
    gap: 34px;
  }

  .hero-text h1 {
    font-size: clamp(2.4rem, 12vw, 3.65rem);
  }

  .hero-title {
    font-size: clamp(1.3rem, 6vw, 1.85rem);
  }

  .hero-description {
    font-size: 0.91rem;
  }

  .profile-image-wrapper {
    padding: 18px 18px 0;
  }

  .profile-pic {
    height: 225px;
  }

  .profile-card-content {
    padding: 18px;
  }

  .availability-badge {
    right: 25px;
    bottom: 8px;
  }

  .stats-grid {
    margin-top: 38px;
  }

  .stats-grid,
  .services-grid,
  .projects-grid,
  .education-grid {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 56px 0;
  }

  .project-image,
  .project-image-placeholder {
    height: 190px;
  }

  .contact-section {
    padding: 60px 6%;
  }
}

/* =========================
   CELULAR PEQUEÑO
========================= */

@media (max-width: 460px) {
  .nav-logo {
    max-width: 170px;

    overflow: hidden;
    text-overflow: ellipsis;

    font-size: 0.77rem;
  }

  .language-switcher {
    padding: 4px 6px;
    gap: 2px;
  }

  .language-button {
    font-size: 0.72rem;
  }

  .hero-text h1 {
    font-size: clamp(2.2rem, 11.5vw, 3.1rem);
  }

  .eyebrow {
    font-size: 0.61rem;
  }

  .hero-value {
    padding: 12px;
  }

  .hero-buttons,
  .contact-buttons,
  .project-buttons {
    flex-direction: column;
  }

  .button,
  .project-link {
    width: 100%;
  }

  .profile-card {
    max-width: 310px;
  }

  .profile-pic {
    height: 215px;
  }

  .availability-badge {
    position: relative;
    right: auto;
    bottom: auto;

    width: fit-content;
    margin: -13px auto 0;

    display: block;

    border-width: 3px;
  }

  .profile-card-content h2 {
    font-size: 1.4rem;
  }

  .profile-links {
    justify-content: center;
  }

  .stat-card,
  .service-card,
  .project-content,
  .education-card,
  .timeline-content {
    padding: 18px;
  }

  .timeline-item {
    gap: 14px;
  }
}

/*
==========================================
AJUSTE GENERAL - VERSIÓN MÁS COMPACTA
==========================================
*/

:root {
  --max-width: 980px;
}

.hero-section {
  padding: 45px 4% 35px;
}

.hero-content {
  gap: 40px;
}

.hero-text h1 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
}

.hero-title {
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
}

.hero-description {
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-buttons {
  margin-top: 20px;
}

.hero-value {
  margin-top: 18px;
  padding: 12px 14px;
}

.profile-card {
  max-width: 315px;
}

.profile-pic {
  height: 260px;
}

.stats-grid {
  margin: 30px auto 0;
  gap: 12px;
}

.stat-card {
  padding: 14px;
}

.stat-number {
  font-size: 1.45rem;
}

.stat-label {
  font-size: 0.72rem;
}

.nav-container {
  min-height: 60px;
}

.nav-links {
  gap: 20px;
}

.nav-links a {
  font-size: 0.82rem;
}
