*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #c9a96e;
  --gold-dim: #a07840;
  --gold-glow: rgba(201,169,110,0.12);
  --bg: #0a0a0f;
  --surface: #111118;
  --surface-2: #16161f;
  --border: rgba(201,169,110,0.15);
  --border-strong: rgba(201,169,110,0.3);
  --text: #e8e4dc;
  --text-muted: #9a9690;
  --text-dim: #8a8784;
  --max-w: 1100px;
}
/* ── LIGHT MODE VARIABLES ── */
[data-theme="light"] {
  --gold: #9b7535;
  --gold-dim: #7a5c28;
  --gold-glow: rgba(155,117,53,0.12);
  --bg: #f5f0e8;
  --surface: #ede8de;
  --surface-2: #e5dfd5;
  --border: rgba(155,117,53,0.18);
  --border-strong: rgba(155,117,53,0.38);
  --text: #1c1914;
  --text-muted: #5a5650;
  --text-dim: #5a5550;
}

html { scroll-behavior: smooth; }

/* smooth theme transition */
body, nav, section, footer,
.skill-card, .stat-item, .exp-item,
.nav-mobile, .lang-bar,
.about-photo-frame, .looking-for-tags span {
  transition: background-color 0.35s ease, color 0.35s ease,
              border-color 0.35s ease, box-shadow 0.35s ease;
}

body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.7; }

/* ── LIGHT MODE OVERRIDES (hardcoded values) ── */
[data-theme="light"] nav {
  background: rgba(245,240,232,0.88);
}
[data-theme="light"] .nav-mobile {
  background: rgba(245,240,232,0.97);
}
[data-theme="light"] body::before {
  background-image: radial-gradient(circle, rgba(155,117,53,0.09) 1px, transparent 1px);
}
[data-theme="light"] .hero::before {
  background: radial-gradient(circle, rgba(155,117,53,0.07) 0%, transparent 65%);
}
[data-theme="light"] .hero::after {
  background: radial-gradient(circle, rgba(155,117,53,0.04) 0%, transparent 65%);
}
[data-theme="light"] .section-num {
  color: rgba(155,117,53,0.07);
}
[data-theme="light"] .about-img {
  border-color: var(--bg);
  outline-color: var(--border);
}
[data-theme="light"] .cursor-ring {
  border-color: rgba(155,117,53,0.45);
}
[data-theme="light"] .exp-list::before {
  background: linear-gradient(to bottom, transparent, var(--border) 10%, var(--border) 90%, transparent);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 3rem;
  background: rgba(10,10,15,0.88); backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400;
  letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; text-decoration: none;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.75; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 0.5px;
  background: var(--gold); transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: 7rem 3rem 5rem; position: relative; overflow: hidden;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
}
/* dot grid texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: radial-gradient(circle, rgba(201,169,110,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none; z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 30%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 60% at 60% 30%, black 0%, transparent 70%);
}
/* glow orbs */
.hero::before {
  content: ''; position: absolute; top: -150px; right: -100px;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -150px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(201,169,110,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.75rem; display: flex; align-items: center; gap: 0.85rem;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 36px; height: 0.5px; background: var(--gold); }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  font-weight: 300; line-height: 1.02; letter-spacing: -0.02em; color: var(--text);
  margin-bottom: 0.25rem;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 300; color: var(--text-muted); margin: 1.5rem 0 2.75rem;
  letter-spacing: 0.02em; max-width: 540px;
}
.hero-langs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3.25rem; }
.lang-tag {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border: 0.5px solid var(--border); color: var(--text-dim);
  transition: border-color 0.2s, color 0.2s;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; padding: 13px 32px;
  background: var(--gold); color: var(--bg);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; font-weight: 500;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  position: relative; overflow: hidden;
  transition: color 0.3s;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-110%) skewX(-15deg);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(110%) skewX(-15deg); }

.btn-secondary {
  display: inline-block; padding: 13px 32px;
  border: 0.5px solid var(--border-strong); color: var(--text-muted);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; font-family: 'DM Sans', sans-serif;
  position: relative; overflow: hidden; isolation: isolate;
  transition: color 0.3s, border-color 0.3s;
}
.btn-secondary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.3s ease;
  z-index: -1;
}
.btn-secondary:hover { color: var(--bg); border-color: var(--gold); }
.btn-secondary:hover::before { transform: translateY(0); }

/* ── SECTIONS ── */
section {
  padding: 7rem 3rem;
  border-top: 0.5px solid var(--border);
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  position: relative;
}
.section-label {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 3.5rem; display: flex; align-items: center; gap: 0.75rem;
}
.section-label::after { content: ''; flex: 1; max-width: 50px; height: 0.5px; background: var(--gold-dim); }
.section-num {
  position: absolute; right: 0; top: 1rem;
  font-family: 'Cormorant Garamond', serif; font-size: 9rem; font-weight: 300;
  color: rgba(201,169,110,0.05); line-height: 1;
  pointer-events: none; user-select: none;
}

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 220px 1fr 1fr; gap: 4rem; align-items: start; }

.about-photo { display: flex; justify-content: center; }
.about-photo-frame {
  position: relative; width: 180px; height: 180px;
}
.about-photo-frame::before {
  content: ''; position: absolute;
  inset: -6px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  animation: spin-ring 12s linear infinite;
  background: conic-gradient(var(--gold) 0deg, transparent 90deg, transparent 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), black calc(100% - 1.5px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), black calc(100% - 1.5px));
}
@keyframes spin-ring { to { transform: rotate(360deg); } }
.about-img {
  width: 180px; height: 180px;
  border-radius: 50%;
  object-fit: cover; object-position: center top;
  border: 3px solid var(--bg);
  outline: 1px solid var(--border);
  display: block;
  filter: grayscale(15%);
  transition: filter 0.4s;
}
.about-img:hover { filter: grayscale(0%); }
.about-text h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300;
  line-height: 1.18; color: var(--text); margin-bottom: 1.75rem;
}
.about-text p { color: var(--text-muted); margin-bottom: 1rem; font-size: 14px; line-height: 1.85; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.stat-item {
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-top: 1.5px solid var(--gold);
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: default;
}
.stat-item:hover {
  box-shadow: 0 8px 32px rgba(201,169,110,0.08);
  transform: translateY(-2px);
}
.stat-number {
  font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 300;
  color: var(--gold); line-height: 1; margin-bottom: 0.5rem;
}
.stat-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }

/* ── EXPERIENCE ── */
.exp-list { position: relative; }
.exp-list::before {
  content: ''; position: absolute;
  left: 179px; top: 0; bottom: 0; width: 0.5px;
  background: linear-gradient(to bottom, transparent, var(--border) 10%, var(--border) 90%, transparent);
  pointer-events: none;
}
.exp-item {
  display: grid; grid-template-columns: 180px 1fr; gap: 2.5rem;
  padding: 2.75rem 0; border-bottom: 0.5px solid var(--border);
  position: relative;
}
.exp-item:last-child { border-bottom: none; }
/* dot on timeline */
.exp-item::before {
  content: ''; position: absolute;
  left: 173px; top: 3rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1.5px solid var(--bg);
  box-shadow: 0 0 0 2px var(--border);
  z-index: 1;
}
.exp-item:first-child::before { background: var(--gold); box-shadow: 0 0 0 2px var(--border-strong), 0 0 10px var(--gold-glow); }
.exp-date {
  font-size: 11px; letter-spacing: 0.06em; color: var(--text-dim); padding-top: 6px;
  text-align: right; padding-right: 1rem;
}
.exp-role {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  font-weight: 400; color: var(--text); margin-bottom: 0.2rem;
}
.exp-company {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.85rem;
}
.exp-bullets { margin-top: 0.75rem; padding-left: 1rem; }
.exp-bullets li { font-size: 13px; color: var(--text-muted); line-height: 1.75; margin-bottom: 0.25rem; }
.exp-edu-desc { font-size: 13px; color: var(--text-muted); line-height: 1.75; }
.exp-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.1rem; }
.exp-tag {
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 11px; border: 0.5px solid var(--text-dim); color: var(--text-dim);
  transition: border-color 0.2s, color 0.2s;
}
.exp-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ── SKILLS ── */
.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.skill-card {
  padding: 2.25rem 2rem;
  background: var(--surface);
  border: 0.5px solid var(--border);
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.skill-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,169,110,0.07);
}
.skill-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1.5px; background: var(--gold); opacity: 0; transition: opacity 0.3s;
}
.skill-card:hover::before { opacity: 1; }
/* subtle shimmer bg */
.skill-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,169,110,0.04) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.3s;
}
.skill-card:hover::after { opacity: 1; }
.skill-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400;
  color: var(--text); margin-bottom: 0.6rem; position: relative; z-index: 1;
}
.skill-desc {
  font-size: 13px; color: var(--text-muted); line-height: 1.65;
  position: relative; z-index: 1;
}
.skill-list {
  margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.35rem;
  list-style: none; padding: 0; position: relative; z-index: 1;
}
.skill-list li {
  font-size: 11px; color: var(--text-dim); letter-spacing: 0.05em;
  padding-left: 0.75rem; position: relative;
}
.skill-list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--gold-dim); font-size: 9px; top: 2px;
}

/* ── CONTACT ── */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-text h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 2.8rem;
  font-weight: 300; line-height: 1.12; color: var(--text); margin-bottom: 1.1rem;
}
.contact-text p { font-size: 14px; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.85; }

/* contact link items */
.contact-links { display: flex; flex-direction: column; gap: 0; }
.contact-links-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 1rem;
}
.contact-link-item {
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none; color: var(--text-muted); font-size: 13px;
  padding: 1.1rem 1.25rem;
  background: var(--surface); border: 0.5px solid var(--border);
  border-bottom: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s, box-shadow 0.25s;
}
.contact-link-item:last-child { border-bottom: 0.5px solid var(--border); }
.contact-link-item:hover {
  border-color: var(--gold); color: var(--gold);
  background: var(--surface-2);
  box-shadow: 0 4px 20px var(--gold-glow);
  z-index: 1; position: relative;
}
.contact-link-icon {
  color: var(--gold); flex-shrink: 0;
  display: flex; align-items: center;
}
.contact-link-body {
  display: flex; flex-direction: column; gap: 2px; flex: 1;
}
.contact-link-label {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim);
}
.contact-link-arrow { color: var(--text-dim); font-size: 12px; transition: transform 0.2s; }
.contact-link-item:hover .contact-link-arrow { transform: translate(2px, -2px); color: var(--gold); }


/* ── FOOTER ── */
footer {
  padding: 2.25rem 3rem; border-top: 0.5px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.08em; color: var(--text-dim);
  max-width: var(--max-w); margin: 0 auto; width: 100%;
}

/* ── THEME TOGGLE ── */
.theme-toggle {
  background: none; border: 0.5px solid var(--border);
  color: var(--text-muted); cursor: pointer;
  padding: 7px 9px; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  position: relative;
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }
.icon-sun, .icon-moon { display: block; transition: opacity 0.2s, transform 0.3s; }
/* dark mode → show sun (to switch to light) */
.icon-moon { position: absolute; opacity: 0; transform: rotate(30deg) scale(0.8); }
.icon-sun  { opacity: 1; transform: rotate(0deg) scale(1); }
/* light mode → show moon (to switch to dark) */
[data-theme="light"] .icon-sun  { opacity: 0; transform: rotate(-30deg) scale(0.8); }
[data-theme="light"] .icon-moon { opacity: 1; transform: rotate(0deg) scale(1); position: static; }

/* ── HAMBURGER ── */
.nav-burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 110;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px; background: var(--text-muted);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s;
}
.nav-burger:hover span { background: var(--gold); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--gold); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--gold); }

/* ── MOBILE NAV OVERLAY ── */
.nav-mobile {
  display: none; flex-direction: column; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,15,0.97); backdrop-filter: blur(16px);
  z-index: 99; justify-content: center; align-items: center;
  gap: 2.5rem; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.nav-mobile.open { display: flex; opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300;
  color: var(--text-muted); text-decoration: none; letter-spacing: 0.08em; transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-theme {
  background: none; border: 0.5px solid var(--border); color: var(--text-dim);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 10px 24px; cursor: pointer; margin-top: 1rem;
  transition: border-color 0.2s, color 0.2s;
}
.nav-mobile-theme:hover { border-color: var(--gold); color: var(--gold); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── LANGUAGE BARS ── */
.lang-bars { margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.9rem; }
.lang-bar-item { display: flex; flex-direction: column; gap: 0.3rem; }
.lang-bar-header { display: flex; justify-content: space-between; align-items: center; }
.lang-bar-header span { font-size: 12px; color: var(--text-muted); }
.lang-level { font-size: 10px; letter-spacing: 0.08em; color: var(--text-dim); }
.lang-bar {
  height: 2px; background: rgba(201,169,110,0.1); border-radius: 2px; overflow: hidden;
}
.lang-bar-fill {
  height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  border-radius: 2px; transition: width 1s cubic-bezier(0.4,0,0.2,1);
}

/* ── LOOKING FOR BLOCK ── */
.looking-for { margin-top: 2rem; padding-top: 1.5rem; border-top: 0.5px solid var(--border); }
.looking-for-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 0.85rem;
}
.looking-for-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.looking-for-tags span {
  font-size: 11px; letter-spacing: 0.06em;
  padding: 5px 14px;
  border: 0.5px solid var(--border-strong);
  color: var(--gold);
  transition: background 0.2s, color 0.2s;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--gold); color: var(--bg);
  padding: 10px 20px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; z-index: 9999; font-weight: 500;
}
.skip-link:focus { top: 1rem; }

/* ── EDUCATION TIMELINE MARKER ── */
.exp-item--edu::before { background: var(--text-dim); box-shadow: 0 0 0 2px var(--border); }
.exp-edu-type {
  display: inline-block; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dim); border: 0.5px solid var(--border); padding: 2px 8px;
  margin-bottom: 0.5rem;
}

/* ── MOBILE NAV FOCUS RING ── */
.nav-mobile a:focus-visible {
  outline: 1.5px solid var(--gold); outline-offset: 4px;
}

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  z-index: 200; transition: width 0.08s linear;
  box-shadow: 0 0 8px rgba(201,169,110,0.5);
}

/* ── CUSTOM CURSOR (desktop only) ── */
@media (pointer: fine) {
  body { cursor: none; }
  a, button { cursor: none; }
}
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.5);
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s;
}
body.cursor-hover .cursor-dot {
  width: 10px; height: 10px; background: var(--gold);
}
body.cursor-hover .cursor-ring {
  width: 48px; height: 48px;
  border-color: rgba(201,169,110,0.8);
}
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── TABLET BREAKPOINT ── */
@media (max-width: 900px) and (min-width: 701px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-photo { grid-column: 1 / -1; justify-content: flex-start; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .about-photo-frame::before { animation: none; }
  .lang-bar-fill { transition: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 5.5rem 1.5rem 3.5rem; }
  section { padding: 5rem 1.5rem 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo { margin-bottom: 0.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-link-item { padding: 1rem; }
  .skills-grid { grid-template-columns: 1fr; }
  .exp-list::before { display: none; }
  .exp-item { grid-template-columns: 1fr; gap: 0.4rem; }
  .exp-item::before { display: none; }
  .exp-date { text-align: left; padding-right: 0; }
  footer { flex-direction: column; gap: 0.5rem; text-align: center; }
}
