/* ---------- Design tokens ---------- */
:root {
  --color-bg: #090D15;
  --color-bg-alt: #0B101A;
  --color-text: #EAE7DF;
  --color-text-muted: #B8BFCB;
  --color-text-dim: #97A0AF;
  --color-text-faint: #6E7789;
  --color-accent: #B0343F;
  --color-accent-light: #D4515C;
  --color-accent-hover: #C9414D;

  --border-soft: rgba(234, 231, 223, 0.08);
  --border-medium: rgba(234, 231, 223, 0.1);
  --border-medium-2: rgba(234, 231, 223, 0.12);
  --border-strong: rgba(234, 231, 223, 0.18);
  --border-stronger: rgba(234, 231, 223, 0.25);

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Instrument Sans', sans-serif;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--color-text); text-decoration: none; }
a:hover { color: var(--color-accent-light); }

::selection { background: var(--color-accent); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: #232C3C; border-radius: 5px; }

[data-rv] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.22, 1, .36, 1);
}
[data-rv].is-visible { opacity: 1; transform: none; }

/* ---------- Keyframes ---------- */
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes glowDrift { 0% { transform: translate(0,0) scale(1); opacity: .7; } 50% { transform: translate(120px,-70px) scale(1.22); opacity: 1; } 100% { transform: translate(0,0) scale(1); opacity: .7; } }
@keyframes cursorBlink { 0%, 55% { opacity: 1; } 62%, 88% { opacity: 0.12; } 95%, 100% { opacity: 1; } }
@keyframes spotPulse { 0%, 100% { opacity: .65; } 50% { opacity: 1; } }
@keyframes spinSlow { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes auroraShift { 0% { transform: translate(0,0) rotate(0deg) scale(1); opacity: .5; } 33% { transform: translate(-140px,80px) rotate(18deg) scale(1.2); opacity: .95; } 66% { transform: translate(110px,-60px) rotate(-14deg) scale(0.9); opacity: .6; } 100% { transform: translate(0,0) rotate(0deg) scale(1); opacity: .5; } }
@keyframes grainShift { 0% { transform: translate(0,0); } 25% { transform: translate(-2%,1%); } 50% { transform: translate(1%,-2%); } 75% { transform: translate(-1%,2%); } 100% { transform: translate(0,0); } }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand-text { font-family: var(--font-serif); font-size: 19px; letter-spacing: 2.5px; font-weight: 500; }
.nav__flag { animation: cursorBlink 2.6s steps(1) infinite; }
.nav__links { display: flex; align-items: center; gap: 34px; font-size: 13.5px; letter-spacing: 1.2px; }
.nav__link { color: var(--color-text-dim); }
.nav__link:hover { color: var(--color-text); }
.nav__cta {
  border: 1px solid var(--color-accent);
  color: var(--color-text);
  padding: 9px 22px;
  border-radius: 2px;
  transition: background .3s;
}
.nav__cta:hover { background: var(--color-accent); color: #fff; }

/* ---------- Shared eyebrow / section title ---------- */
.eyebrow-line { width: 44px; height: 1px; background: var(--color-accent); display: inline-block; }
.eyebrow-text { font-size: 13px; letter-spacing: 3px; color: var(--color-text-dim); }
.section-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.12;
  margin: 0 0 32px;
  text-wrap: balance;
}

/* ---------- Buttons ---------- */
.btn {
  padding: 15px 34px;
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: 1.5px;
  display: inline-block;
}
.btn--primary {
  background: var(--color-accent);
  color: #fff;
  transition: background .3s, transform .3s;
}
.btn--primary:hover { background: var(--color-accent-hover); color: #fff; transform: translateY(-2px); }
.btn--outline {
  border: 1px solid var(--border-stronger);
  color: var(--color-text);
  transition: border-color .3s;
}
.btn--outline:hover { border-color: var(--color-accent-light); color: var(--color-text); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 60px;
  box-sizing: border-box;
  overflow: hidden;
}
.hero__grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(234, 231, 223, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 231, 223, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 60% 30%, black 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 80% at 60% 30%, black 20%, transparent 75%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__glow--top-left {
  top: -220px; left: -180px; width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(26, 42, 74, 0.55), transparent 65%);
  animation: glowDrift 14s ease-in-out infinite;
}
.hero__glow--bottom-right {
  bottom: -260px; right: 18%; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(176, 52, 63, 0.16), transparent 65%);
  animation: glowDrift 18s ease-in-out infinite reverse;
}
.hero__aurora {
  position: absolute; top: 8%; right: -140px; width: 720px; height: 520px;
  border-radius: 50%;
  filter: blur(70px);
  background: conic-gradient(from 210deg at 50% 50%, rgba(176, 52, 63, 0.14), rgba(26, 42, 74, 0.32), rgba(122, 32, 44, 0.1), rgba(26, 42, 74, 0.28), rgba(176, 52, 63, 0.14));
  animation: auroraShift 14s ease-in-out infinite;
  pointer-events: none;
}
.hero__spot {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(560px circle at 30% 40%, rgba(176, 52, 63, 0.09), transparent 70%);
  transition: background .25s ease-out;
  animation: spotPulse 6s ease-in-out infinite;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.hero__content { max-width: 640px; }
.hero__eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.04;
  margin: 0 0 30px;
  letter-spacing: -0.5px;
  text-wrap: balance;
}
.hero__title em { font-style: italic; color: var(--color-accent-light); }
.hero__lead {
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 0 42px;
  text-wrap: pretty;
}
.hero__actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero__photo-col { justify-self: start; align-self: end; padding-left: 34px; }
.hero__photo-wrap { position: relative; width: min(400px, 36vw); will-change: transform; }
.hero__photo-frame {
  position: absolute; inset: -16px 16px 16px -16px;
  border: 1px solid rgba(176, 52, 63, 0.45);
  border-radius: 2px;
  pointer-events: none;
}
.hero__photo {
  display: block;
  width: 100%;
  border-radius: 2px;
  filter: grayscale(0.25) contrast(1.05) brightness(0.96);
  -webkit-mask-image: linear-gradient(to bottom, black 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 78%, transparent 100%);
}
.hero__photo-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(200deg, rgba(9, 13, 21, 0) 55%, rgba(9, 13, 21, 0.55) 100%),
    linear-gradient(to right, rgba(20, 32, 56, 0.18), rgba(176, 52, 63, 0.1));
  mix-blend-mode: multiply;
  border-radius: 2px;
  pointer-events: none;
}
.hero__photo-badge {
  position: absolute; left: -34px; bottom: 44px;
  background: rgba(14, 20, 31, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(234, 231, 223, 0.12);
  border-left: 2px solid var(--color-accent);
  padding: 14px 20px;
  border-radius: 2px;
}
.hero__photo-badge-number { font-family: var(--font-serif); font-size: 26px; font-weight: 600; line-height: 1; }
.hero__photo-badge-label { font-size: 12px; letter-spacing: 1.5px; color: var(--color-text-dim); margin-top: 5px; }

.hero__grain {
  position: absolute; inset: -5%; width: 110%; height: 110%;
  z-index: 3;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 1.4s steps(4) infinite;
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 26px 0;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.marquee__track { display: flex; width: max-content; animation: mq 32s linear infinite; gap: 0; }
.marquee__group {
  display: flex;
  gap: 72px;
  padding-right: 72px;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--color-text-faint);
  white-space: nowrap;
}
.marquee__dot { color: var(--color-accent); font-size: 12px; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.stat-card { background: var(--color-bg); padding: 54px 40px; }
.stat-card__number { font-family: var(--font-serif); font-size: 58px; font-weight: 500; line-height: 1; }
.stat-card__suffix { color: var(--color-accent-light); }
.stat-card__label { font-size: 13px; letter-spacing: 2px; color: var(--color-text-dim); margin-top: 14px; }

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 80px;
  padding: 130px 72px;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  align-items: start;
}
.about__text { font-size: 16.5px; line-height: 1.85; color: var(--color-text-muted); display: grid; gap: 22px; }
.about__text p { margin: 0; }
.about__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.tag {
  border: 1px solid var(--border-strong);
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
}
.about__side { display: grid; gap: 16px; position: sticky; top: 110px; }
.about__side-caption { font-size: 12.5px; letter-spacing: 1.5px; color: var(--color-text-faint); text-align: right; }

.photo-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  box-sizing: border-box;
  border: 1px dashed var(--border-strong);
  border-radius: 2px;
  background: rgba(234, 231, 223, 0.02);
  color: var(--color-text-dim);
  font-size: 13px;
  line-height: 1.6;
}

/* ---------- Services ---------- */
.services {
  position: relative;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--border-soft);
  padding: 130px 72px;
  overflow: hidden;
}
.services__glow {
  position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 420px;
  background: radial-gradient(ellipse at center, rgba(26, 42, 74, 0.4), transparent 68%);
  filter: blur(30px);
  pointer-events: none;
}
.services__grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(234, 231, 223, 0.06) 1px, transparent 1.5px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 100%, black, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 100%, black, transparent 78%);
  opacity: .7;
}
.services__inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; }
.services__title { margin-bottom: 64px; max-width: 640px; }
.services__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.service-card {
  border: 1px solid var(--border-medium);
  border-top: 2px solid var(--color-accent);
  background: var(--color-bg);
  padding: 44px 36px;
  border-radius: 2px;
  transition: transform .35s, border-color .35s;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(212, 81, 92, 0.5); }
.service-card__index { font-family: var(--font-serif); font-size: 20px; color: var(--color-text-faint); margin-bottom: 26px; }
.service-card__title { font-family: var(--font-serif); font-weight: 600; font-size: 27px; margin: 0 0 16px; line-height: 1.2; }
.service-card__text { font-size: 15px; line-height: 1.75; color: var(--color-text-dim); margin: 0; }

/* ---------- Timeline / Trayectoria ---------- */
.journey-wrap { position: relative; overflow: hidden; }
.journey-wrap__glow { position: absolute; border-radius: 50%; filter: blur(20px); pointer-events: none; }
.journey-wrap__glow--1 {
  top: 15%; left: -240px; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(176, 52, 63, 0.08), transparent 62%);
  animation: glowDrift 20s ease-in-out infinite;
}
.journey-wrap__glow--2 {
  bottom: 5%; right: -260px; width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(26, 42, 74, 0.42), transparent 62%);
  animation: glowDrift 26s ease-in-out infinite reverse;
}
.timeline { position: relative; z-index: 2; padding: 130px 72px; max-width: 1080px; margin: 0 auto; box-sizing: border-box; }
.timeline__title { margin-bottom: 72px; max-width: 620px; }
.timeline__rail { position: relative; padding-left: 48px; }
.timeline__rail-track { position: absolute; left: 8px; top: 6px; bottom: 6px; width: 1px; background: var(--border-medium-2); }
.timeline__rail-progress {
  position: absolute; left: 8px; top: 6px; width: 1px; height: 0%;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-accent-light));
  transition: height .2s linear;
}
.timeline__list { display: grid; gap: 60px; }
.timeline-item { position: relative; }
.timeline-item__dot {
  position: absolute; left: -45px; top: 8px; width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(176, 52, 63, 0.18);
}
.timeline-item__date { font-size: 13px; letter-spacing: 2.5px; color: var(--color-accent-light); margin-bottom: 10px; }
.timeline-item__title { font-family: var(--font-serif); font-weight: 600; font-size: 30px; margin: 0 0 12px; }
.timeline-item__role { font-weight: 400; font-style: italic; font-size: 22px; color: var(--color-text-dim); }
.timeline-item__text { font-size: 15.5px; line-height: 1.75; color: var(--color-text-dim); margin: 0; max-width: 680px; }

/* ---------- Education / Formación ---------- */
.education { background: var(--color-bg-alt); border-top: 1px solid var(--border-soft); padding: 110px 72px; }
.education__inner { max-width: 1280px; margin: 0 auto; }
.education .section-eyebrow { margin-bottom: 54px; }
.education__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}
.education-card { background: var(--color-bg-alt); padding: 34px 30px; }
.education-card__year { font-size: 12px; letter-spacing: 2px; color: var(--color-accent-light); margin-bottom: 12px; }
.education-card__year--muted { color: var(--color-text-faint); }
.education-card__title { font-family: var(--font-serif); font-size: 23px; font-weight: 600; }
.education-card__meta { font-size: 13.5px; color: var(--color-text-dim); margin-top: 6px; }

/* ---------- Contact ---------- */
.contact { position: relative; padding: 160px 72px; text-align: center; overflow: hidden; }
.contact__glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 52, 63, 0.13), transparent 62%);
  pointer-events: none;
}
.contact__ring { position: absolute; top: 50%; left: 50%; border-radius: 50%; pointer-events: none; }
.contact__ring--solid {
  width: 560px; height: 560px;
  border: 1px solid rgba(212, 81, 92, 0.16);
  border-top-color: rgba(212, 81, 92, 0.5);
  animation: spinSlow 14s linear infinite;
}
.contact__ring--dashed {
  width: 680px; height: 680px;
  border: 1px dashed rgba(234, 231, 223, 0.09);
  animation: spinSlow 40s linear infinite reverse;
}
.contact__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.contact__eyebrow { font-size: 13px; letter-spacing: 3px; color: var(--color-text-dim); margin-bottom: 26px; }
.contact__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1.08;
  margin: 0 0 30px;
  text-wrap: balance;
}
.contact__title em { font-style: italic; color: var(--color-accent-light); }
.contact__lead { font-size: 17px; line-height: 1.75; color: var(--color-text-muted); max-width: 540px; margin: 0 auto 46px; }
.contact__actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.contact__actions .btn--primary { padding: 17px 42px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border-soft);
  padding: 34px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__brand-text { font-family: var(--font-serif); font-size: 17px; letter-spacing: 2px; }
.footer__copy { font-size: 13px; color: var(--color-text-faint); letter-spacing: 1px; }
.footer__link { font-size: 13px; letter-spacing: 1.5px; color: var(--color-text-dim); }
.footer__link:hover { color: var(--color-accent-light); }

/* ---------- Nav mobile toggle (base styles, activated at tablet breakpoint) ---------- */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 6px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--color-text);
  transition: transform .25s, opacity .25s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Tablet (<=1024px) ---------- */
@media (max-width: 1024px) {
  .nav { padding: 16px 32px; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: rgba(9, 13, 21, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-left: 1px solid var(--border-soft);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 32px;
    box-sizing: border-box;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 60;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__link, .nav__cta { font-size: 15px; }

  .hero { padding: 90px 24px 60px; }
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .hero__content { max-width: 100%; }
  .hero__photo-col { justify-self: center; align-self: center; padding-left: 0; }
  .hero__photo-wrap { width: min(380px, 55vw); }

  .about { grid-template-columns: minmax(0, 1fr); gap: 56px; padding: 90px 24px; }
  .about__side { position: static; }

  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-card { padding: 40px 28px; }

  .services { padding: 90px 24px; }
  .services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .timeline { padding: 90px 24px; }

  .education { padding: 90px 24px; }
  .education__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .contact { padding: 110px 40px; }
  .contact__ring--solid { width: 420px; height: 420px; }
  .contact__ring--dashed { width: 500px; height: 500px; }
  .contact__glow { width: 560px; height: 560px; }
}

/* ---------- Mobile (<=640px) ---------- */
@media (max-width: 640px) {
  .nav { padding: 14px 20px; }

  .hero { padding: 70px 16px 48px; }
  .hero__lead { max-width: 100%; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; }
  .hero__photo-wrap { width: min(260px, 65vw); }
  .hero__photo-badge { left: -12px; bottom: 24px; padding: 10px 16px; }
  .hero__photo-badge-number { font-size: 22px; }

  .marquee__group { gap: 44px; padding-right: 44px; font-size: 18px; }

  .about { padding: 64px 20px; }

  .stat-card { padding: 32px 20px; }
  .stat-card__number { font-size: 44px; }

  .services { padding: 64px 20px; }
  .services__grid { grid-template-columns: minmax(0, 1fr); }

  .timeline { padding: 64px 16px; }
  .timeline__rail { padding-left: 32px; }
  .timeline-item__dot { left: -29px; }
  .timeline-item__title { font-size: 24px; }
  .timeline-item__role { font-size: 17px; }

  .education { padding: 64px 20px; }
  .education__grid { grid-template-columns: minmax(0, 1fr); }

  .contact { padding: 90px 20px; }
  .contact__ring--solid { width: 300px; height: 300px; }
  .contact__ring--dashed { width: 340px; height: 340px; }
  .contact__glow { width: 380px; height: 380px; }
  .contact__actions { flex-direction: column; align-items: stretch; }
  .contact__actions .btn { text-align: center; }

  .footer { padding: 24px 20px; justify-content: center; text-align: center; }
}
