/* =========================================
   AMR SARHAN — Personal Brand Stylesheet
   Aesthetic: Dark luxury / Editorial tech
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Mono:wght@300;400;500&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --bg:        #080c10;
  --surface:   #0f1520;
  --surface2:  #141d2b;
  --border:    #1e2d42;
  --gold:      #c9a84c;
  --gold-dim:  #7a6030;
  --teal:      #2de2c4;
  --teal-dim:  #0e4a3f;
  --text:      #dce6f0;
  --text-muted:#6f869e;
  --white:     #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-mono:    'DM Mono', monospace;
  --font-body:    'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* ---- NOISE TEXTURE OVERLAY ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ---- NAVIGATION ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(8,12,16,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.5rem 1.3rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  text-decoration: none;
  transition: all 0.2s;
  background: transparent;
}

.admin-login-btn {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.admin-login-btn:hover { border-color: var(--gold-dim); color: var(--gold); }

.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,226,196,0.06) 0%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  left: -100px;
  bottom: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--teal);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: var(--teal);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--bg);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-block;
}

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

.btn-secondary {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.85rem 2rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.btn-secondary:hover { border-color: var(--text-muted); color: var(--text); }

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.stat-item .stat-num span { color: var(--gold); }

.stat-item .stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* ---- SECTION COMMON ---- */
section {
  padding: 6rem 4rem;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--teal);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--gold); }

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.8;
}

.section-divider {
  width: 3rem;
  height: 1px;
  background: var(--gold-dim);
  margin: 2rem 0;
}

/* ---- ABOUT SECTION ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-top: 4rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.9;
  font-size: 1rem;
}

.about-text p strong {
  color: var(--text);
  font-weight: 500;
}

.about-skills h3 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  margin-top: 2rem;
}

.about-skills h3:first-child { margin-top: 0; }

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--surface);
  transition: all 0.2s;
}

.skill-tag:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
}

.skill-tag.highlight {
  border-color: var(--gold-dim);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

/* ---- EXPERIENCE ---- */
.experience-section { background: var(--surface); }

.timeline {
  margin-top: 4rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 180px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border) 5%, var(--border) 95%, transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 173px;
  top: 8px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold);
  background: var(--bg);
  border-radius: 50%;
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding-top: 0.1rem;
  text-align: right;
  padding-right: 2rem;
}

.timeline-content .company {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
  margin-bottom: 0.3rem;
}

.timeline-content .role {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.timeline-content ul {
  list-style: none;
  margin-top: 0.8rem;
}

.timeline-content ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.timeline-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 0.8rem;
}

/* ---- EXPERTISE / SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 4rem;
  background: var(--border);
}

.service-card {
  background: var(--bg);
  padding: 2.5rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.3s;
  transform-origin: bottom;
}

.service-card:hover::before { transform: scaleY(1); }
.service-card:hover { background: var(--surface2); }

.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.service-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---- ACHIEVEMENTS ---- */
.achievements-section { background: var(--surface); }

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 4rem;
  background: var(--border);
}

.achievement-card {
  background: var(--surface);
  padding: 2.5rem;
  transition: background 0.3s;
}

.achievement-card:hover { background: var(--surface2); }

.achievement-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.achievement-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.achievement-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---- CONTACT ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-top: 4rem;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.9;
}

.contact-links { list-style: none; }

.contact-links li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

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

.contact-links .link-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  opacity: 0.5;
}

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold-dim); }

.form-group textarea { min-height: 130px; }

/* ---- FOOTER ---- */
footer {
  padding: 2.5rem 4rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  opacity: 0.5;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s, color 0.2s;
}

.footer-links a:hover { opacity: 1; color: var(--gold); }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; }

.gold { color: var(--gold); }
.teal { color: var(--teal); }
.muted { color: var(--text-muted); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.5rem; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .hero-stats { flex-wrap: wrap; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .achievements-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .timeline::before { left: 0; }
  .timeline-item { grid-template-columns: 1fr; gap: 0.5rem; padding-left: 1.5rem; }
  .timeline-item::before { left: -7px; }
  .timeline-date { text-align: left; padding-right: 0; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ══════════════════════════════════
   MOBILE-FIRST IMPROVEMENTS
   ══════════════════════════════════ */

/* Prevent horizontal scroll on mobile */
html, body { overflow-x: hidden; max-width: 100%; }

/* Smooth tap targets */
a, button { -webkit-tap-highlight-color: rgba(201,168,76,0.2); }

/* Nav mobile hamburger hint */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta, .admin-login-btn { font-size: 0.62rem; padding: 0.45rem 0.9rem; }

  /* Hero */
  .hero { padding: 6rem 1.5rem 3rem; min-height: auto; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-desc { font-size: 0.95rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .hero-stats .stat-item { flex: 1 1 40%; }
  .stat-num { font-size: 2.4rem; }

  /* Sections */
  section { padding: 3.5rem 1.5rem; }
  .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }

  /* Grids to single column */
  .services-grid,
  .achievements-grid,
  .featured-grid { grid-template-columns: 1fr; gap: 0; }
  .featured-card.featured { grid-column: auto; }

  /* Service cards */
  .service-card { padding: 2rem 1.5rem; }
  .service-num { font-size: 2rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Timeline */
  .timeline::before { left: 0; }
  .timeline-item { grid-template-columns: 1fr; gap: 0.3rem; padding-left: 1.5rem; }
  .timeline-item::before { left: -7px; top: 4px; width: 12px; height: 12px; }
  .timeline-date { text-align: left; padding-right: 0; margin-bottom: 0.3rem; }

  /* Full timeline */
  .full-timeline::before { display: none; }
  .full-timeline-item { grid-template-columns: 1fr; gap: 0.4rem; padding-left: 1.2rem; }
  .full-timeline-item::after { left: -7px; top: 6px; width: 12px; height: 12px; }
  .ft-aside { text-align: left; padding-right: 0; }
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-item { padding: 0.8rem 1rem; }

  /* Contact */
  .contact-layout,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Process steps */
  .process-steps { grid-template-columns: 1fr 1fr; }

  /* Expertise */
  .expertise-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .expertise-block { padding: 3rem 1.5rem; }

  /* Photo block */
  .photo-layout { grid-template-columns: 1fr; }
  .photo-col { height: 520px; }
  .photo-content { padding: 2rem 1.5rem; }

  /* Footer */
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 0.8rem; }

  /* Quote */
  .quote-section { padding: 3rem 1.5rem; }
  .big-quote { font-size: 1.3rem; }

  /* Marquee */
  .marquee-strip { padding: 0.7rem 0; }

  /* edu grid */
  .edu-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Values grid */
  .values-grid { grid-template-columns: 1fr; }

  /* Numbers bar on experience page */
  .numbers-bar { grid-template-columns: repeat(3,1fr); padding: 2rem 1.5rem; }

  /* Sector chips */
  .sector-chips { gap: 0.5rem; }
  .sector-chip { font-size: 0.6rem; padding: 0.35rem 0.7rem; }

  /* Articles */
  .articles-grid { grid-template-columns: 1fr; }
  .article-card.featured { grid-column: auto; }
  .filter-bar { padding: 1.2rem 1.5rem; flex-direction: column; align-items: stretch; }
  .filter-search { min-width: auto; }
  .admin-bar { padding: 0.8rem 1.5rem; }

  /* Modal */
  .modal-content, .write-content { margin: 2rem 1rem; padding: 1.8rem; }
  .modal-title { font-size: 1.6rem; }
  .write-row { grid-template-columns: 1fr; }
  .comment-inputs { grid-template-columns: 1fr; }

  /* CV download row */
  div[style*="display:flex;gap:1.2rem"] { flex-direction: column !important; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
  .stat-num { font-size: 2rem; }
  .process-steps { grid-template-columns: 1fr; }
  .numbers-bar { grid-template-columns: repeat(2,1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }
  .expertise-tools { gap: 0.3rem; }
  .expertise-tools span { font-size: 0.6rem; padding: 0.25rem 0.5rem; }
  .service-card, .achievement-card { padding: 1.5rem; }
  .photo-col { height: 440px; }
}

/* ── HAMBURGER MOBILE MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 7px;
  transition: border-color 0.2s;
  position: relative;
  z-index: 1100;
}
.hamburger:hover { border-color: var(--gold-dim); }
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-muted);
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--gold); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--gold); }

/* Mobile dropdown panel */
.mobile-nav {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 200px;
  background: rgba(10,15,22,0.98);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  z-index: 1050;
  overflow: hidden;
  transform-origin: top right;
  transform: scaleY(0.85) translateY(-8px);
  opacity: 0;
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1),
              opacity 0.22s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.mobile-nav.open {
  transform: scaleY(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  display: block;
  padding: 0.9rem 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, background 0.15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}
/* Nav right wrapper — needed to position dropdown relative to hamburger */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

@media (max-width: 960px) {
  .hamburger { display: flex; }
  .nav-links  { display: none !important; }
  .admin-login-btn { display: none !important; }
  /* show mobile-nav as block so transitions work */
  .mobile-nav { display: block; }
}
@media (min-width: 961px) {
  .hamburger  { display: none !important; }
  .mobile-nav { display: none !important; }
}
