/* ═══════════════════════════════════════════
   NATALIE SMREKAR — Core Styles
   ═══════════════════════════════════════════ */

/* ─── Reset & Custom Properties ─── */
:root {
  --navy: #1B2A4A;
  --terracotta: #C4704B;
  --olive: #7A8B5C;
  --sand: #D4C5A9;
  --cream: #FAF7F2;
  --gold: #C9A96E;
  --white: #FFFFFF;
  --navy-light: #243560;
  --navy-dark: #131E36;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-arabic: 'Amiri', serif;

  --space-xs: clamp(0.25rem, 0.5vw, 0.5rem);
  --space-sm: clamp(0.5rem, 1vw, 1rem);
  --space-md: clamp(1rem, 2vw, 2rem);
  --space-lg: clamp(2rem, 4vw, 4rem);
  --space-xl: clamp(3rem, 6vw, 6rem);
  --space-2xl: clamp(4rem, 8vw, 8rem);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(0.938rem, 0.9rem + 0.2vw, 1.063rem);
  line-height: 1.7;
  color: var(--navy);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color var(--transition);
}

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

.hidden {
  display: none !important;
}

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ─── Sections ─── */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section--cream {
  background: var(--cream);
}

.section--white {
  background: var(--white);
}

.section--dark {
  background: var(--navy);
  color: var(--cream);
}

.section--sand-gradient {
  background: linear-gradient(180deg, var(--cream) 0%, rgba(212, 197, 169, 0.15) 100%);
}

.section--contact {
  padding-bottom: 0;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw + 0.5rem, 3.5rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-lg);
  position: relative;
}

.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--terracotta);
  margin-top: var(--space-sm);
}

.section__title--light {
  color: var(--cream);
}

.section__title--light::after {
  background: var(--gold);
}


/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  box-shadow: 0 1px 20px rgba(27, 42, 74, 0.08);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.1em;
  transition: color var(--transition);
}

.nav--scrolled .nav__logo {
  color: var(--navy);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: clamp(1rem, 2vw, 2.5rem);
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.8);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--cream);
}

.nav--scrolled .nav__link {
  color: rgba(27, 42, 74, 0.6);
}

.nav--scrolled .nav__link:hover {
  color: var(--navy);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}

.nav__toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.nav--scrolled .nav__toggle-line {
  background: var(--navy);
}

.nav__toggle--open .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--cream);
}

.nav__toggle--open .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle--open .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--cream);
}

/* Mobile overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
  z-index: 1005;
}

.nav__overlay--open {
  opacity: 1;
  visibility: visible;
}

.nav__overlay-links {
  list-style: none;
  text-align: center;
}

.nav__overlay-link {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--cream);
  padding: 0.75rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color var(--transition);
}

.nav__overlay--open .nav__overlay-link {
  opacity: 1;
  transform: translateY(0);
}

.nav__overlay-link:hover {
  color: var(--terracotta);
}

/* Stagger delays for overlay links */
.nav__overlay-links li:nth-child(1) .nav__overlay-link { transition-delay: 0.1s; }
.nav__overlay-links li:nth-child(2) .nav__overlay-link { transition-delay: 0.15s; }
.nav__overlay-links li:nth-child(3) .nav__overlay-link { transition-delay: 0.2s; }
.nav__overlay-links li:nth-child(4) .nav__overlay-link { transition-delay: 0.25s; }
.nav__overlay-links li:nth-child(5) .nav__overlay-link { transition-delay: 0.3s; }
.nav__overlay-links li:nth-child(6) .nav__overlay-link { transition-delay: 0.35s; }


/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 0 var(--space-md);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw + 1rem, 5rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.hero__title-comma {
  color: var(--gold);
}

.hero__title-phd {
  font-style: italic;
  font-weight: 300;
  color: var(--sand);
}

.hero__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1.5vw, 1.25rem);
  flex-wrap: wrap;
}

.hero__subtitle-word,
.hero__subtitle-dot {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.75rem);
  font-weight: 300;
  color: var(--sand);
  letter-spacing: 0.08em;
}

.hero__subtitle-dot {
  color: var(--terracotta);
}

.hero__divider {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(200px, 30vw, 400px);
  z-index: 2;
  opacity: 0.7;
}

.arabesque-divider {
  width: 100%;
  height: auto;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}


/* ═══════════════════════════════════════════
   À PROPOS
   ═══════════════════════════════════════════ */

.about {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.about__photo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__monogram {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
}

.about__monogram::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--sand);
  opacity: 0.3;
}

.about__monogram-letter {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
}

.about__monogram-letter--accent {
  color: var(--terracotta);
}

.about__bio {
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.1rem);
  line-height: 1.8;
  color: rgba(27, 42, 74, 0.8);
  margin-bottom: var(--space-md);
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}


/* ─── Tags ─── */
.tag {
  display: inline-block;
  padding: 0.35em 1em;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.tag--olive {
  background: rgba(122, 139, 92, 0.1);
  color: var(--olive);
  border: 1px solid rgba(122, 139, 92, 0.25);
}

.tag--terracotta {
  background: rgba(196, 112, 75, 0.08);
  color: var(--terracotta);
  border: 1px solid rgba(196, 112, 75, 0.2);
}


/* ═══════════════════════════════════════════
   RECHERCHE
   ═══════════════════════════════════════════ */

.research__interests {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.research__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: var(--space-md);
}

.card {
  background: var(--white);
  border-radius: 8px;
  padding: var(--space-md);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(27, 42, 74, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(27, 42, 74, 0.1);
}

.card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.card--navy .card__accent {
  background: var(--navy);
}

.card--olive .card__accent {
  background: var(--olive);
}

.card__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  margin-bottom: var(--space-sm);
}

.card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.5vw + 0.3rem, 1.5rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: var(--space-xs);
}

.card__subtitle-en {
  font-size: 0.9rem;
  color: rgba(27, 42, 74, 0.5);
  margin-bottom: var(--space-sm);
}

.card__meta {
  font-size: 0.875rem;
  color: rgba(27, 42, 74, 0.7);
  line-height: 1.7;
}

.card__meta p + p {
  margin-top: 0.25rem;
}


/* ═══════════════════════════════════════════
   PARCOURS (Timeline)
   ═══════════════════════════════════════════ */

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-md) 0;
}

.timeline__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
}

.timeline__svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.timeline__svg-line {
  stroke: var(--sand);
  stroke-width: 2;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 0.05s linear;
}

.timeline__item {
  position: relative;
  width: 50%;
  padding: 0 var(--space-md) var(--space-lg);
}

.timeline__item--right {
  margin-left: 50%;
  padding-left: var(--space-lg);
}

.timeline__item--left {
  padding-right: var(--space-lg);
  text-align: right;
}

.timeline__dot {
  position: absolute;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--sand);
  z-index: 2;
}

.timeline__item--right .timeline__dot {
  left: calc(-6px);
}

.timeline__item--left .timeline__dot {
  right: calc(-6px);
}

.timeline__card {
  background: var(--white);
  border-radius: 8px;
  padding: var(--space-md);
  box-shadow: 0 2px 15px rgba(27, 42, 74, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.timeline__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(27, 42, 74, 0.08);
}

.timeline__date {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
}

.timeline__title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.2vw + 0.3rem, 1.35rem);
  font-weight: 600;
  color: var(--navy);
  margin: 0.25rem 0;
}

.timeline__place {
  font-size: 0.875rem;
  color: rgba(27, 42, 74, 0.7);
}

.timeline__desc {
  font-size: 0.8rem;
  color: rgba(27, 42, 74, 0.5);
  margin-top: 0.25rem;
}


/* ═══════════════════════════════════════════
   LANGUES
   ═══════════════════════════════════════════ */

.langues {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.langues__globe {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.langues__globe canvas {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  outline: 0;
  touch-action: none;
}

.langues__globe canvas:focus-visible {
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.55);
}

.globe-caption {
  width: min(100%, 30rem);
  min-height: 3.2rem;
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 8px;
  background: rgba(250, 247, 242, 0.08);
  color: var(--sand);
  font-size: 0.92rem;
  line-height: 1.45;
  text-align: center;
}

.globe-caption--active {
  border-color: rgba(201, 169, 110, 0.9);
  background: rgba(250, 247, 242, 0.14);
  color: var(--cream);
  font-weight: 600;
}

.lang-bar {
  margin-bottom: var(--space-md);
}

.lang-bar__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.lang-bar__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
}

.lang-bar__name--amiri {
  font-family: var(--font-arabic);
  font-size: 1.3rem;
}

.lang-bar__native {
  font-size: 0.8rem;
  color: var(--sand);
  letter-spacing: 0.03em;
}

.lang-bar__track {
  height: 6px;
  background: rgba(250, 247, 242, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.lang-bar__fill {
  height: 100%;
  border-radius: 3px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-bar__fill--terracotta { background: var(--terracotta); }
.lang-bar__fill--gold { background: var(--gold); }
.lang-bar__fill--olive { background: var(--olive); }
.lang-bar__fill--sand { background: var(--sand); }


/* ═══════════════════════════════════════════
   COMMUNICATIONS
   ═══════════════════════════════════════════ */

.comm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--space-md);
}

.comm-card {
  background: var(--white);
  border-radius: 8px;
  padding: var(--space-md);
  box-shadow: 0 2px 15px rgba(27, 42, 74, 0.05);
  border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.comm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(27, 42, 74, 0.1);
}

.comm-card__year {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
}

.comm-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0.25rem 0 0.5rem;
}

.comm-card__desc {
  font-size: 0.875rem;
  color: rgba(27, 42, 74, 0.7);
  line-height: 1.6;
}

.comm-card__location {
  font-size: 0.8rem;
  color: var(--olive);
  margin-top: 0.5rem;
  font-weight: 500;
}


/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--sand);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
  transition: color var(--transition);
}

.contact__link:hover {
  color: var(--terracotta);
}

.contact__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Form */
.form-group {
  margin-bottom: var(--space-sm);
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(250, 247, 242, 0.05);
  border: 1px solid rgba(212, 197, 169, 0.2);
  border-radius: 6px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--terracotta);
  background: rgba(250, 247, 242, 0.08);
}

.form-input--textarea {
  resize: vertical;
  min-height: 120px;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn--primary {
  background: var(--terracotta);
  color: var(--cream);
}

.btn--primary:hover {
  background: #b5613e;
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  text-align: center;
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: var(--space-lg);
}

.footer__arabesque {
  width: clamp(200px, 30vw, 400px);
  margin: 0 auto var(--space-md);
  opacity: 0.5;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(212, 197, 169, 0.5);
  letter-spacing: 0.05em;
}


/* ═══════════════════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════════════════ */

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
  margin-left: clamp(0.75rem, 2vw, 1.5rem);
}

.lang-switch__link {
  display: inline-flex;
  width: 24px;
  height: 16px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(250, 247, 242, 0.35);
  opacity: 0.55;
  transition: opacity var(--transition), outline-color var(--transition), transform var(--transition);
  outline: 0 solid transparent;
}

.nav--scrolled .lang-switch__link {
  border-color: rgba(27, 42, 74, 0.25);
}

.lang-switch__link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.lang-switch__link--active {
  opacity: 1;
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.lang-switch__link svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lang-switch--overlay {
  justify-content: center;
  margin: var(--space-md) 0 0;
  gap: 0.75rem;
}

.lang-switch--overlay .lang-switch__link {
  width: 32px;
  height: 22px;
  border-color: rgba(250, 247, 242, 0.4);
}

[dir="rtl"] .lang-switch {
  margin-left: 0;
  margin-right: clamp(0.75rem, 2vw, 1.5rem);
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__inner > .lang-switch {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__text {
    text-align: left;
  }

  .about__tags {
    justify-content: flex-start;
  }

  .timeline__line {
    left: 20px;
  }

  .timeline__item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    text-align: left;
  }

  .timeline__item--right {
    margin-left: 0;
    padding-left: 50px;
  }

  .timeline__item--left {
    text-align: left;
    padding-right: 0;
    padding-left: 50px;
  }

  .timeline__item--right .timeline__dot,
  .timeline__item--left .timeline__dot {
    left: 14px;
    right: auto;
  }

  .timeline__svg {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .langues__globe {
    order: -1;
  }

  .langues__globe canvas {
    max-width: 300px;
  }

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

  .contact__info {
    margin-bottom: var(--space-md);
  }
}

@media (max-width: 480px) {
  .hero__subtitle {
    flex-direction: column;
    gap: 0.25rem;
  }

  .hero__subtitle-dot {
    display: none;
  }

  .about__monogram {
    width: 150px;
    height: 150px;
  }

  .about__monogram-letter {
    font-size: 2.5rem;
  }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .hero__scroll-line {
    animation: none;
    opacity: 0.6;
  }

  .lang-bar__fill {
    transition: none;
  }

  .timeline__svg-line {
    stroke-dashoffset: 0 !important;
    stroke-dasharray: none !important;
  }
}
