:root {
--bg: #0e0e10;
--card: #17171a;
--text: #f5f5f7;
--muted: #a1a1aa;
--accent: #F26448;
--accent2: #F26448;
}

.accent {
  color: var(--accent);
  font-weight: normal;
}

.hover-accent:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .logo img {
    height: 40px;
  }
}

header {
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
}



.logo img {
  opacity: 1;
  transform: translateY(6px);
  animation: logoIn 0.6s ease-out forwards;
  animation-delay: 0.15s;

  transition: opacity 0.25s ease, transform 0.25s ease;
}

.logo a:hover img {
  opacity: 0.6;
}


* {
margin: 0;
padding: 0;
box-sizing: border-box;
}


html {
scroll-behavior: smooth;
}


body {
margin: 0;
padding: 0; /* ← this is key */  
font-family: 'Inter', sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
opacity: 0;
animation: pageIn 0.6s ease forwards;
}


@keyframes pageIn {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
}


a { color: inherit; text-decoration: none; }


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}



/* ================= NAV ================= */

.logo {
font-weight: 600;
font-size: 1.4rem;
}




/* ================= HERO ================= */
.hero {
max-width: 720px;
margin-bottom: 7rem;
}


.hero h1 {
font-size: 3.2rem;
line-height: 1.05;
margin-bottom: 1.5rem;
}


.hero span { 
  color: var(--accent); 
}


.hero p {
font-size: 1.1rem;
color: var(--muted);
}



/* ================= CASE GRID ================= */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
}


.case {
position: relative;
border-radius: 18px;
overflow: hidden;
background: var(--card);
}


.case img {
width: 100%;
height: 280px;
object-fit: cover;
transition: transform 0.6s ease;
}


.case:hover img {
transform: scale(1.06);
}


.case-overlay {
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.9));
opacity: 0;
transition: opacity 0.4s ease;
display: flex;
align-items: flex-end;
padding: 1.8rem;
}


.case:hover .case-overlay { opacity: 1; }


.case-overlay h3 {
font-size: 1.2rem;
margin-bottom: 0.3rem;
}


.case-overlay p {
font-size: 0.9rem;
color: var(--muted);
}

/* ================= CASE STUDY ================= */
.case-hero img {
width: 100%;
border-radius: 20px;
margin-bottom: 4rem;
margin-top: 2rem;
}


.case-meta {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-bottom: 5rem;
}


.case-meta h4 { font-size: 0.85rem; color: var(--muted); }
.case-meta p { font-size: 0.95rem; }


.case-content {
max-width: 760px;
}


.case-content p {
margin-bottom: 2rem;
color: var(--muted);
}


/* ================= FOOTER ================= */
footer {
border-top: 1px solid #262626;
padding: 2.5rem 0;
display: flex;
justify-content: space-between;
color: var(--muted);
font-size: 0.9rem;
margin-top: 6rem;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
.hero h1 { font-size: 2.3rem; }
}

/* ================= HEADER NAV ================= */

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* ================= HEADER ================= */



.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;


  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0rem 3rem;
}



/* ================= LOGO ================= */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
  opacity: 1;
  transform: translateY(6px);
  animation: logoIn 0.6s ease-out forwards;
  animation-delay: 0.15s;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.logo a:hover img {
  opacity: 0.6;
}

/* ================= DESKTOP NAV ================= */

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-menu a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text);
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

/* Underline animation — text width only */


.nav-menu a {
  display: inline-block;        /* 👈 key change */
  padding: 0;
}


.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}


.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}



/* ================= HAMBURGER ================= */

.nav-toggle {
  display: none;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ================= MOBILE NAV ================= */

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

.nav-menu {
  position: absolute;
  top: 100%;
  right: 0;

  width: 260px;
  background: var(--bg);
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);

  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.25rem;

  opacity: 0;
  transform: translateX(12px);
  pointer-events: none;

  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}


.nav-menu a {
  padding: 0.4rem 0;
}

.nav-menu.open {
  transform: translateY(0) scale(1);
}

  /* Link stagger animation */
  .nav-menu a {
    opacity: 0;
    transform: translateX(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-menu.open a {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-menu.open a:nth-child(1) { transition-delay: 0.05s; }
  .nav-menu.open a:nth-child(2) { transition-delay: 0.1s; }
  .nav-menu.open a:nth-child(3) { transition-delay: 0.15s; }
  .nav-menu.open a:nth-child(4) { transition-delay: 0.2s; }
}


  .nav-menu a {
    padding: 0.5rem 2rem;
    font-size: 1.05rem;
  }

  .nav-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Nav Link Underline */

  .nav-menu a {
  display: inline-block;          /* 👈 key line */
  position: relative;
  transition: color 0.25s ease;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color 0.25s ease;
}

/* Underline animation — text width only */




  /* Hamburger X animation */
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* About Columns */

.about-columns p {
  break-inside: avoid;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .about-columns {
    column-count: 1;
  }
}

.about-columns {
  column-count: 1;
}


/* ================= SKILLS ================= */
/* ================= SKILLS ================= */

.skills {
  margin: 6rem auto 0;
  max-width: 1100px;
}

.skills-row {
  display: flex;                /* ← KEY: forces one row */
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.skill {
  text-align: center;
  flex: 1;                      /* equal width */
}

.progress {
  transform: scaleY(-1);              /* ✅ forces clockwise */
  transform-origin: 60px 60px;        /* center of the 120x120 viewBox */
}

.skill {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.intro-complete .skill {
  opacity: 1;
  transform: translateY(0);
}


.track {
  fill: none;
  stroke: rgba(255,255,255,0.1);
  stroke-width: 8;
}

.skill svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg); /* start at top */
}

.progress {
  transform: none; /* no flips */
  fill: none;
  stroke: var(--accent2);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: none; /* JS sets */
  stroke-dashoffset: 0;   /* JS sets start + end */
  transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1);
}


.skill .label {
  position: relative;
  top: -92px;
  display: block;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--accent);
}

.skill-abbr {
  color: var(--accent);
  font-weight: 700;
  font-size: 2.1rem;
}


.skill p {
  margin-top: -1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .skills-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .skill {
    flex: 0 0 33%;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 600px) {
  .skill {
    flex: 0 0 50%;
  }
}

.skill svg { transition: transform 0.25s ease; }
.skill:hover svg { transform: rotate(-90deg) scale(1.10); }


.skill-name,
.skill-abbr {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.intro-complete .skill-name,
.intro-complete .skill-abbr {
  opacity: 1;
  transform: translateY(0);
}


/* ================= ABOUT TWO COLUMN ================= */

.about-layout {
  display: grid;
  grid-template-columns: 520px 420px;
  gap: 1.25rem;
  align-items: start;
}


@media (max-width: 900px){
  .about-layout{
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about-photo {
  width: 100%;
  border-radius: 18px;
  display: block;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Mobile */
@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.about-photo {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-photo {
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.about-media {
  margin-left: -0.75rem;
}

/* About page: use hero styling but reduce spacing */
.about-hero {
  margin-bottom: 2rem;
  max-width: none;
}


.about-layout{
  display: grid;
  grid-template-columns: minmax(420px, 1fr) 420px;
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 900px){
  .about-layout{
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about-text {
  max-width: 600px; /* controls column width properly */
}

.about-text p {
  max-width: none;
}


.about-lead {
  font-size: 1.15rem;
  line-height: 1.9;
  font-weight: 500;
  color: var(--text);
  max-width: 55ch;
  margin-bottom: 1.5rem;
}

.about-text p:not(.about-lead) {
  color: var(--muted);
  line-height: 1.9;
  max-width: 58ch;
  margin-bottom: 1.25rem;
}

.about-image {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.image-caption {
  font-size: 0.85rem;
  font-style: italic;
  color: #b0b0b0;
  opacity: 0.85;
}

.image-wrapper {
  border-radius: 16px;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  display: block;
  filter: blur(6px) brightness(0.9);
  transform: scale(1.02);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.image-wrapper:hover img {
  filter: blur(0);
  transform: scale(1);
}

.image-wrapper::after {
  content: "Yes that’s Batman and no, I’m not Bruce Wayne.";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.image-wrapper {
  position: relative;
}

.image-wrapper:hover::after {
  opacity: 0;
}

.image-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.5rem;
}

.image-label-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.image-label-wrap::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.image-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.image-label-wrap {
  margin-bottom: 0.4rem;
}

.about-image:hover .image-label-wrap {
  opacity: 0.4;
}


/* ================= SHOWREEL ================= */

.video-player {

  margin: 2rem auto;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.06);
}

.video-player video {
  width: 100%;
  height: auto;
  display: block;
}

.case-study {
  padding-top: 2rem; /* adjust to taste */
  font-size: x-large;
  font-weight: 500;
}


/* ================= CONTACT ANIMATION ================= */

.contact-accent {
  width: 100%;
  height: 2px;
  margin-bottom: 3rem;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent),
    transparent
  );
  background-size: 200% 100%;
  animation: accentMove 6s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes accentMove {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.contact-orb {
  position: absolute;
  top: 30%;
  left: -100px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, var(--accent), transparent 60%);
  opacity: 0.15;
  animation: orbFloat 14s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orbFloat {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(120vw); }
  100% { transform: translateX(0); }
}

.status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.status .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Email hover interaction */
.email-link {
  position: relative;
  display: inline-block;
  color: var(--text);
  text-decoration: none;
}

/* Icon starts hidden */
.email-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-10px, -50%);
  opacity: 0;
  color: var(--accent);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Text starts flush left */
.email-text {
  display: inline-block;
  transition: transform 0.25s ease, color 0.25s ease;
  color: var(--text);
}

/* Hover interaction */
.email-link:hover .email-text {
  transform: translateX(24px); /* makes space for icon */
  color: var(--accent);
}

.email-link:hover .email-icon {
  opacity: 1;
  transform: translate(0, -50%);
}



/* ================= FOOTER ================= */

.site-footer {
  margin-top: 6rem;
  padding: 0rem 0 2rem;
  position: relative;
  display: block; /* default */
  border-top: none;
  min-height: var(--footer-height);

}

/* Animated accent line */
.footer-accent {
  width: 100%;
  margin-bottom: 2rem;
}

.accent-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent),
    transparent
  );
  background-size: 200% 100%;
  animation: footerGlow 8s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes footerGlow {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Footer layout */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Links */
.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  position: relative;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--text);
}

/* Subtle underline on hover */
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

/* Mobile */
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-links {
    gap: 1.5rem;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .accent-line {
    animation: none;
  }
}

.footer-links a:hover {
  transform: translateY(-1px);
}

.footer-accent {
  width: 100%;
  margin-bottom: 2rem;   /* pushes text DOWN */
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-full {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0rem;   /* controls how close to edge */
}

.highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15em;   /* 👈 makes it bigger than surrounding text */
  font-weight: 500;
  color: var(--accent);
}

.highlight {
  position: relative;
  top: 0.03em;
}

/* Highlight word animation */
.animate-in {
  display: inline-block; /* REQUIRED for transform */
  opacity: 0;
  transform: translateY(0.25em);
  animation: highlightReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.25s;
}

@keyframes highlightReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

:root {
  --footer-height: 96px;
}


/* ================= INTRO SWIPE UP ================= */

.intro{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;

  display: grid;
  place-items: center;

  background: linear-gradient(135deg, var(--accent), var(--accent2));
  pointer-events: none;

  /* Start fully visible */
  transform: translateY(0);
}

/* Content animates in slightly */
.intro-inner{
  text-align: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.intro-mark{
  opacity: 0;
  transform: translateY(10px);
  animation: introContentIn 0.65s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: 0.1s;
}

.intro-mark img{
  width: 84px;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.25));
}

.intro-line{
  width: min(420px, 70vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), transparent);
  background-size: 200% 100%;
  opacity: 0.55;
  animation: introLineMove 1.2s ease-in-out infinite;
}

.intro-text{
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Swipe up and away */
.intro.is-exiting {
  animation: introSwipeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes introSwipeUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

@keyframes introContentIn{
  to { opacity: 1; transform: translateY(0); }
}

@keyframes introLineMove{
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .intro.is-exiting{ animation: none; transform: translateY(-100%); }
  .intro-line{ animation: none; }
  .intro-mark{ animation: none; opacity: 1; transform: none; }
}


.intro-mark img {
  width: 72px;        /* adjust to taste */
  height: auto;
  display: block;
}

.intro {
  background: var(--accent);
}

/* Overlay swipes up */
.intro.is-exiting{
  animation: introSwipeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Content moves at a different speed (parallax) */
.intro.is-exiting .intro-inner{
  animation: introParallaxOut 1.0s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes introSwipeUp{
  to { transform: translateY(-100%); }
}

/* Parallax: content drifts upward less than the background + fades */
@keyframes introParallaxOut{
  to {
    opacity: 0;
    transform: translateY(-24px);
  }
}


@keyframes introContentOut {
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.intro-inner{
  will-change: transform, opacity;
}

@keyframes introParallaxOut{
  to { opacity: 0; transform: translateY(-60px); }
}

@keyframes introParallaxOut{
  to {
    opacity: 0;
    transform: translateY(-24px) scale(0.98);
  }
}

/* ================= LIGHTBOX ================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.88);
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 16px;
  display: block;
  box-shadow: 0 25px 80px rgba(0,0,0,0.45);
}

.lightbox-close {
  position: fixed;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(20,20,22,0.65);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
}

/* Prevent background scroll when open */
body.no-scroll {
  overflow: hidden;
}

/* Close button hover */
.lightbox-close {
  transition: 
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(242, 100, 72, 0.25); /* accent tint */
  border-color: rgba(242, 100, 72, 0.6);
  transform: scale(1.05);
  opacity: 1;
}

/* Force email link to be white by default */
a.email-link,
a.email-link:link,
a.email-link:visited {
  color: var(--text) !important;
}

/* Keep the text span white by default too */
a.email-link .email-text {
  color: var(--text) !important;
}

/* Hover turns accent (only on hover) */
a.email-link:hover,
a.email-link:hover .email-text {
  color: var(--accent) !important;
}
