/* -------------------------------------------------------
   ASIM EMRE AYDIN — PERSONAL PORTFOLIO
   Premium black / white / gold visual system
-------------------------------------------------------- */

:root {
  --bg: #070707;
  --bg-soft: #0d0d0d;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.075);
  --text: #f4f1e9;
  --text-soft: #a7a39a;
  --gold: #d7ad52;
  --gold-light: #f1d47f;
  --line: rgba(255, 255, 255, 0.12);
  --line-gold: rgba(215, 173, 82, 0.28);
  --header-height: 92px;
  --container: min(1280px, calc(100% - 80px));
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(215, 173, 82, 0.06), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.loading {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: #111;
}

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

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

button {
  font: inherit;
}

#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: -2;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    circle,
    rgba(215, 173, 82, 0.15) 0%,
    rgba(215, 173, 82, 0.06) 30%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  will-change: left, top;
}

/* Loader */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #050505;
  transition:
    opacity 0.9s var(--ease),
    visibility 0.9s var(--ease);
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  width: min(680px, 80vw);
  text-align: center;
}

.loader-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  opacity: 0;
  animation: loaderFade 0.7s 0.2s forwards;
}

.loader-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  opacity: 0;
  transform: translateY(24px);
  animation: loaderName 0.9s 0.35s var(--ease) forwards;
}

.loader-line {
  position: relative;
  width: 100%;
  height: 1px;
  margin-top: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.loader-line span {
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light));
  animation: loaderLine 1.5s 0.35s var(--ease) forwards;
}

@keyframes loaderFade {
  to { opacity: 1; }
}

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

@keyframes loaderLine {
  0% { width: 0; left: 0; }
  75% { width: 100%; left: 0; }
  100% { width: 0; left: 100%; }
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  padding: 0 max(40px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(7, 7, 7, 0.76);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.logo-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
}

.logo-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 0.82rem;
  transition: color 0.25s ease;
}

.nav a:not(.nav-cta)::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

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

.nav a:hover::after {
  width: 100%;
}

.nav .nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav .nav-cta:hover {
  border-color: var(--line-gold);
  color: var(--gold-light);
}

.menu-toggle {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 140px max(40px, calc((100vw - 1280px) / 2)) 80px;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(112deg, transparent 0%, rgba(255, 255, 255, 0.04) 36%, transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 30%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: -12%;
  top: 5%;
  width: 48vw;
  height: 48vw;
  max-width: 760px;
  max-height: 760px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), rgba(221, 185, 95, 0.05) 38%, transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--text-soft);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(215, 173, 82, 0.85);
}

.hero-title {
  max-width: 970px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.3rem, 7vw, 7.4rem);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.hero-accent {
  display: block;
  color: var(--gold);
  font-style: italic;
}

.hero-typing {
  min-height: 37px;
  margin-top: 34px;
  color: var(--text-soft);
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.typing-text {
  color: var(--text);
  font-weight: 600;
}

.typing-cursor {
  color: var(--gold);
  animation: cursorBlink 0.85s steps(1) infinite;
}

@keyframes cursorBlink {
  50% { opacity: 0; }
}

.hero-description {
  max-width: 620px;
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s ease,
    background 0.3s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--gold);
  color: #101010;
}

.button-primary:hover {
  background: var(--gold-light);
}

.button-arrow {
  font-size: 1.05rem;
}

.button-ghost {
  border-color: var(--line);
  color: var(--text-soft);
}

.button-ghost:hover {
  border-color: var(--line-gold);
  color: var(--text);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 70px;
}

.hero-meta > div:not(.meta-separator) {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.meta-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
}

.meta-label {
  color: var(--text-soft);
  font-size: 0.72rem;
}

.meta-separator {
  width: 1px;
  height: 36px;
  background: var(--line);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(215, 173, 82, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::after {
  position: absolute;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(215, 173, 82, 0.6);
}

.hero-orbit-one {
  right: -190px;
  top: 14%;
  width: 690px;
  height: 690px;
  animation: orbitSpin 30s linear infinite;
}

.hero-orbit-one::after {
  top: 48%;
  left: -4px;
}

.hero-orbit-two {
  right: 40px;
  top: 33%;
  width: 360px;
  height: 360px;
  animation: orbitSpin 20s linear infinite reverse;
}

.hero-orbit-two::after {
  top: -4px;
  left: 50%;
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

.scroll-indicator {
  position: absolute;
  right: max(40px, calc((100vw - 1280px) / 2));
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--text-soft);
}

.scroll-text {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
}

.scroll-line {
  position: relative;
  width: 1px;
  height: 54px;
  overflow: hidden;
  background: var(--line);
}

.scroll-line::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 60%;
  content: "";
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 120%; }
}

/* Shared sections */

.section {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 140px 0;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 78px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.section-number {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
}

.section-label {
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.section-title {
  max-width: 720px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.section-title em {
  color: var(--gold);
  font-weight: inherit;
}

.section-intro {
  margin-bottom: 64px;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.about-copy {
  padding-top: 16px;
}

.about-copy p {
  margin-bottom: 24px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.85;
}

.about-copy .lead {
  color: var(--text);
  font-size: 1.22rem;
  line-height: 1.7;
}

.about-copy strong {
  color: var(--gold-light);
  font-weight: 600;
}

.signature-wrap {
  width: min(420px, 100%);
  margin-top: 54px;
  color: var(--gold);
}

.signature {
  display: block;
  width: 100%;
  height: auto;
}

.signature path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}

.signature-wrap.is-visible .signature path {
  animation: drawSignature 2.8s var(--ease) forwards;
}

.signature-wrap span {
  display: block;
  margin-top: -14px;
  color: var(--text-soft);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  opacity: 0;
}

.signature-wrap.is-visible span {
  animation: signatureLabel 0.8s 2.1s forwards;
}

@keyframes drawSignature {
  to { stroke-dashoffset: 0; }
}

@keyframes signatureLabel {
  to { opacity: 1; }
}

/* Cards */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.glass-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  transition:
    transform 0.45s var(--ease),
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.45s ease;
}

.glass-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(215, 173, 82, 0.18), transparent 34%);
  transition: opacity 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-10px);
  border-color: var(--line-gold);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(22px);
}

.glass-card:hover::before {
  opacity: 1;
}

.card-index {
  position: absolute;
  top: 30px;
  right: 30px;
  color: rgba(255, 255, 255, 0.26);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.8rem;
  font-style: italic;
}

.card-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 72px;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.4rem;
}

.glass-card h3,
.glass-card p,
.card-tags {
  position: relative;
  z-index: 1;
}

.glass-card h3 {
  margin-bottom: 15px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
}

.glass-card p {
  min-height: 84px;
  color: var(--text-soft);
  font-size: 0.91rem;
  line-height: 1.7;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.card-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.68rem;
}

/* Hobbies */

.hobbies-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.hobby-list {
  border-top: 1px solid var(--line);
}

.hobby-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease);
}

.hobby-item:hover {
  padding-left: 14px;
}

.hobby-number {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.8rem;
  font-style: italic;
}

.hobby-item h3 {
  margin-bottom: 7px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.hobby-item p {
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.6;
}

.hobby-symbol {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
}

/* Quote */

.quote-section {
  display: grid;
  min-height: 540px;
  place-items: center;
  text-align: center;
}

.quote-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 173, 82, 0.09), transparent 68%);
  filter: blur(20px);
}

.quote-section blockquote {
  position: relative;
  z-index: 2;
  max-width: 960px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5.4vw, 5.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.quote-section em {
  display: block;
  color: var(--gold);
  font-weight: inherit;
}

/* Contact */

.contact {
  padding-top: 90px;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 90px);
  border: 1px solid var(--line-gold);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 20%, rgba(215, 173, 82, 0.13), transparent 32%),
    rgba(255, 255, 255, 0.035);
}

.contact-panel h2 {
  max-width: 800px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 7.4rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.contact-panel h2 em {
  display: block;
  color: var(--gold);
  font-weight: inherit;
}

.contact-panel > p {
  max-width: 560px;
  margin-top: 28px;
  color: var(--text-soft);
  line-height: 1.8;
}

.contact-link {
  display: flex;
  width: min(760px, 100%);
  align-items: center;
  justify-content: space-between;
  margin-top: 54px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  transition:
    border-color 0.3s ease,
    color 0.3s ease;
}

.contact-link:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.contact-arrow {
  transition: transform 0.3s var(--ease);
}

.contact-link:hover .contact-arrow {
  transform: translate(5px, -5px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.social-links a {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.8rem;
  transition:
    border-color 0.25s ease,
    color 0.25s ease;
}

.social-links a:hover {
  border-color: var(--line-gold);
  color: var(--gold-light);
}

/* Footer */

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: var(--container);
  align-items: center;
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.72rem;
}

.footer p:nth-child(2) {
  text-align: center;
}

.footer a {
  justify-self: end;
  transition: color 0.25s ease;
}

.footer a:hover {
  color: var(--gold-light);
}

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 980px) {
  :root {
    --container: min(100% - 44px, 900px);
  }

  .site-header {
    padding: 0 22px;
  }

  .hero {
    padding-inline: 22px;
  }

  .hero-title {
    font-size: clamp(3.7rem, 11vw, 6.4rem);
  }

  .about-grid,
  .hobbies-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .glass-card {
    min-height: 330px;
  }

  .card-icon {
    margin-bottom: 48px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .footer p:nth-child(2) {
    text-align: center;
  }

  .footer a {
    justify-self: center;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 76px;
    --container: calc(100% - 36px);
  }

  .logo-text {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 1001;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    margin: auto;
    background: var(--text);
    transition: transform 0.3s ease;
  }

  .menu-toggle.active span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle.active span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    visibility: hidden;
    background: rgba(5, 5, 5, 0.96);
    opacity: 0;
    backdrop-filter: blur(18px);
    transition:
      opacity 0.35s ease,
      visibility 0.35s ease;
  }

  .nav.active {
    visibility: visible;
    opacity: 1;
  }

  .nav a {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
  }

  .nav .nav-cta {
    padding: 0;
    border: 0;
  }

  .hero {
    min-height: 100svh;
    padding-top: 118px;
  }

  .hero-title {
    font-size: clamp(3.25rem, 15vw, 5.6rem);
    line-height: 0.94;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    gap: 16px;
    margin-top: 48px;
  }

  .meta-number {
    font-size: 1.3rem;
  }

  .meta-label {
    font-size: 0.64rem;
  }

  .scroll-indicator {
    display: none;
  }

  .hero-orbit-one {
    right: -360px;
  }

  .hero-orbit-two {
    right: -180px;
  }

  .section {
    padding: 100px 0;
  }

  .section-heading {
    margin-bottom: 54px;
  }

  .section-title {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .about-copy .lead {
    font-size: 1.08rem;
  }

  .glass-card {
    padding: 28px;
    border-radius: 20px;
  }

  .hobby-item {
    grid-template-columns: 32px 1fr;
  }

  .hobby-symbol {
    display: none;
  }

  .quote-section {
    min-height: 430px;
  }

  .contact-panel {
    border-radius: 22px;
  }

  .contact-panel h2 {
    font-size: clamp(3.2rem, 15vw, 5.6rem);
  }

  .contact-link {
    font-size: 1.18rem;
  }
}

@media (max-width: 430px) {
  .hero-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .meta-separator {
    width: 100%;
    height: 1px;
  }

  .hero-title {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
