/* ═══════════════════════════════════════════════
   ROOT TOKENS — LIGHT MODE (SUNSET PALETTE)
═══════════════════════════════════════════════ */
:root {
  /* Sunset Palette */
  --sunset-amber:    #F4845F;
  --sunset-coral:    #E8634A;
  --sunset-gold:     #F7B267;
  --sunset-blush:    #FDDCB5;
  --sunset-sky:      #8ECAE6;
  --sunset-deep:     #2D1B0E;

  /* Semantic — light */
  --bg:              #FEF6EE;
  --bg-alt:          #FFF9F4;
  --surface:         #FFFFFF;
  --surface-raised:  #FFF3E8;
  --border:          #F2D9C4;
  --text-primary:    #2D1B0E;
  --text-secondary:  #6B4C37;
  --text-muted:      #A8795C;
  --accent:          #F4845F;
  --accent-dark:     #E8634A;
  --accent-light:    #FDDCB5;
  --nav-bg:          rgba(254, 246, 238, 0.85);
  --shadow:          0 4px 24px rgba(45, 27, 14, 0.08);
  --shadow-lg:       0 12px 48px rgba(45, 27, 14, 0.14);

  /* Typography */
  --font-display:    'Playfair Display', Georgia, serif;
  --font-body:       'DM Sans', sans-serif;

  /* Spacing */
  --section-py:      6rem;
  --container:       1100px;
  --radius:          16px;
  --radius-sm:       8px;

  /* Transitions */
  --trans:           0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── DARK MODE ───────────────────────────────── */
[data-theme="dark"] {
  --bg:              #1A0E08;
  --bg-alt:          #221208;
  --surface:         #2E1A0F;
  --surface-raised:  #3D2415;
  --border:          #4A2D1A;
  --text-primary:    #F9EDE0;
  --text-secondary:  #C9A88A;
  --text-muted:      #8A6555;
  --accent:          #F7A07A;
  --accent-dark:     #F4845F;
  --accent-light:    #3D2415;
  --nav-bg:          rgba(26, 14, 8, 0.90);
  --shadow:          0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg:       0 12px 48px rgba(0, 0, 0, 0.5);
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  transition: background var(--trans), color var(--trans);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ═══════════════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════════════ */
.section__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 132, 95, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════
   SECTION BASE
═══════════════════════════════════════════════ */
.section {
  padding: var(--section-py) 0;
}

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--trans), box-shadow var(--trans);
}

.nav.scrolled { box-shadow: var(--shadow); }

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.nav__logo span { color: var(--accent); }

.nav__links {
  display: flex;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--trans);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--trans);
}
.nav__links a:hover,
.nav__links a.active { color: var(--accent); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Theme Toggle */
.theme-toggle {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 38px; height: 38px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all var(--trans);
}
.theme-toggle:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  transform: rotate(20deg);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  text-align: center;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  animation: float 12s ease-in-out infinite;
}
[data-theme="dark"] .shape { opacity: 0.2; }

.shape--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--sunset-gold), transparent 70%);
  top: -10%; left: -10%;
  animation-delay: 0s;
}
.shape--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--sunset-coral), transparent 70%);
  bottom: -5%; right: 5%;
  animation-delay: -4s;
}
.shape--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--sunset-sky), transparent 70%);
  top: 40%; left: 60%;
  animation-delay: -8s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 25px) scale(0.96); }
}

.hero__content {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.9s ease both;
}

.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero__name span {
  background: linear-gradient(135deg, var(--sunset-amber), var(--sunset-coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.4s both;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 0.7s ease 0.7s both;
}
.hero__scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about { background: var(--bg-alt); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image-frame {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--accent-light), var(--surface-raised));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.about__image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about__badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.about__badge-text {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.3;
  margin-top: 0.2rem;
}

.about__bio {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about__stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat { text-align: center; flex: 1; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.25rem;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════
   SKILLS
═══════════════════════════════════════════════ */
.skills__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.skills__col-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.skill-item { margin-bottom: 1.1rem; }
.skill-item__top {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}
.skill-item__top span:last-child {
  font-weight: 600;
  color: var(--accent);
}

.skill-bar {
  height: 6px;
  background: var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.skill-bar__fill {
  height: 100%;
  width: 0;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--sunset-amber), var(--sunset-coral));
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: default;
  transition: all var(--trans);
}
.tool-chip:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent-dark);
  transform: translateY(-2px);
}
.tool-chip__icon { font-size: 0.9rem; }

/* ═══════════════════════════════════════════════
   PROJECTS
═══════════════════════════════════════════════ */
.projects { background: var(--bg-alt); }

.projects__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.project-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sunset-amber), var(--sunset-coral));
  opacity: 0;
  transition: opacity var(--trans);
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.project-card:hover::before { opacity: 1; }

.project-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--surface) 0%, var(--accent-light) 100%);
}

.project-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}
[data-theme="dark"] .project-card__tag { background: var(--surface-raised); }

.project-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.project-card--featured .project-card__title { font-size: 1.45rem; }

.project-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.project-card__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.project-card__tech span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
}

.project-card__links { display: flex; gap: 1rem; align-items: center; }
.project-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: all var(--trans);
}
.project-link:hover { color: var(--accent-dark); letter-spacing: 0.02em; }
.project-link--ghost { color: var(--text-muted); }
.project-link--ghost:hover { color: var(--text-primary); }

/* ═══════════════════════════════════════════════
   EXPERIENCE / TIMELINE
═══════════════════════════════════════════════ */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, var(--sunset-amber), var(--sunset-coral), var(--sunset-sky));
  border-radius: 2px;
}

.timeline__item {
  display: flex;
  margin-bottom: 2.5rem;
  position: relative;
}
.timeline__item--left  { flex-direction: row-reverse; }

.timeline__dot {
  position: absolute;
  left: 50%;
  top: 1.2rem;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
  z-index: 1;
}

.timeline__card {
  width: calc(50% - 2.5rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: all var(--trans);
}
.timeline__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.timeline__item--right .timeline__card { margin-right: auto; }
.timeline__item--left  .timeline__card { margin-left: auto; }

.timeline__type {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}
.timeline__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.timeline__org {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.timeline__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact { background: var(--bg-alt); }

.contact__sub {
  color: var(--text-secondary);
  max-width: 500px;
  margin: -1rem auto 0;
  font-size: 0.95rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact__icon {
  font-size: 1.4rem;
  width: 48px; height: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__item-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.contact__item-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--trans);
}
a.contact__item-value:hover { color: var(--accent); }

/* Form */
.contact__form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: all var(--trans);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(244, 132, 95, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-note {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  text-align: center;
  min-height: 1.2rem;
  color: var(--accent);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--surface-raised);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
}
.footer__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}
.footer__copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about__grid     { grid-template-columns: 1fr; gap: 3rem; }
  .about__image-wrap { max-width: 380px; margin: 0 auto; }
  .skills__grid    { grid-template-columns: 1fr; }
  .contact__grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .projects__grid  { grid-template-columns: 1fr; }
  .project-card--featured { grid-column: span 1; }
  .timeline::before { left: 1.5rem; }
  .timeline__item,
  .timeline__item--left { flex-direction: row; }
  .timeline__item--left .timeline__card,
  .timeline__item--right .timeline__card { width: auto; flex: 1; margin-left: 3.5rem; margin-right: 0; }
  .timeline__dot { left: 1.5rem; }
}

@media (max-width: 640px) {
  :root { --section-py: 4rem; }

  .nav__links {
    display: none;
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow);
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1rem; }

  .hamburger { display: flex; }

  .hero__name { font-size: clamp(2.8rem, 14vw, 4.5rem); }

  .about__stats { gap: 1rem; padding: 1rem; }
  .stat__num    { font-size: 1.5rem; }

  .timeline__card { padding: 1.2rem; }
  .contact__form  { padding: 1.5rem; }
  .about__badge { right: 0; bottom: -1rem; }
}
