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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}
html[data-theme="light"] {
  color-scheme: light;
}

::selection {
  background: rgba(201, 154, 91, 0.28);
  color: var(--ink);
}

:root {
  --bg: #10151b;
  --surface: #161d25;
  --surface-2: #1b232c;
  --line: rgba(148, 178, 196, 0.1);
  --line-strong: rgba(148, 178, 196, 0.3);
  --ink: #e4ecef;
  --muted: #8fa2ab;
  --accent: #6fa8c0;
  --accent-dim: rgba(111, 168, 192, 0.14);
  --brass: #c99a5b;
  --brass-dim: rgba(201, 154, 91, 0.14);

  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --nav-bg: rgba(16, 21, 27, 0.86);
}

html[data-theme="light"] {
  --bg: #eef1f0;
  --surface: #ffffff;
  --surface-2: #e6ebe9;
  --line: rgba(22, 40, 48, 0.09);
  --line-strong: rgba(22, 40, 48, 0.22);
  --ink: #16232a;
  --muted: #52666d;
  --accent: #2f7f9e;
  --accent-dim: rgba(47, 127, 158, 0.1);
  --brass: #9c6a2e;
  --brass-dim: rgba(156, 106, 46, 0.1);
  --nav-bg: rgba(238, 241, 240, 0.86);
}

/* =========================================
   SCROLLBAR
   ========================================= */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--line-strong);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* =========================================
   SCALE RULER (scroll indicator)
   ========================================= */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  z-index: 9999;
  width: 0%;
  transition: width 0.08s linear;
  background-image: repeating-linear-gradient(
    90deg,
    var(--brass) 0,
    var(--brass) 1px,
    transparent 1px,
    transparent 8px
  );
  background-color: transparent;
  border-bottom: 1px solid var(--brass-dim);
}

.ruler-left {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  z-index: 400;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    var(--line-strong) 0,
    var(--line-strong) 1px,
    transparent 1px,
    transparent 24px
  );
  opacity: 0.5;
}
@media (max-width: 900px) {
  .ruler-left {
    display: none;
  }
}

/* =========================================
   BODY / PAPER
   ========================================= */
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 10px;
}
@media (max-width: 900px) {
  body {
    padding-left: 0;
  }
}

body::before {
  /* fine + major blueprint grid */
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    linear-gradient(var(--line-strong) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-strong) 1px, transparent 1px);
  background-size:
    24px 24px,
    24px 24px,
    120px 120px,
    120px 120px;
  opacity: 0.55;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================================
   SHEET CORNER MARKS
   ========================================= */
.sheet {
  position: relative;
}
.sheet::before,
.sheet::after {
  content: "+";
  position: absolute;
  top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--line-strong);
  line-height: 1;
  z-index: 1;
}
.sheet::before {
  left: 1.2rem;
}
.sheet::after {
  right: 1.2rem;
}
@media (max-width: 768px) {
  .sheet::before,
  .sheet::after {
    display: none;
  }
}

/* =========================================
   NAV
   ========================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 3rem;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  background: var(--nav-bg);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo .mark {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.nav-logo .mark circle,
.nav-logo .mark line {
  stroke: var(--brass);
}
.nav-logo span {
  color: var(--brass);
}
.nav-links {
  display: flex;
  gap: 2.2rem;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 1px;
  background: var(--brass);
  margin-right: 0.4em;
  vertical-align: middle;
  opacity: 0;
  transition: opacity 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}
.nav-links a.active::before {
  opacity: 1;
}
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 2px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.theme-toggle:hover {
  border-color: var(--brass);
}
.theme-toggle .icon {
  font-size: 13px;
}

/* =========================================
   HERO
   ========================================= */
#hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 0 3rem;
  padding-top: 90px;
  overflow: hidden;
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4.5rem;
  width: 100%;
}
.hero-content {
  flex: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s forwards;
}
.hero-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brass);
}
h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.25s forwards;
}
h1 .line2 {
  display: block;
  color: var(--muted);
  font-weight: 500;
}
h1 .accent {
  color: var(--ink);
  font-weight: 700;
  border-bottom: 3px solid var(--brass);
}
.hero-desc {
  max-width: 520px;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2.4rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.55s forwards;
}
.hero-contact {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeUp 0.7s 0.7s forwards;
}
.hero-contact a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-contact a:hover {
  color: var(--brass);
}
.hero-contact .sep {
  color: var(--line-strong);
  padding: 0 0.5em;
}

/* HERO PHOTO + TITLE BLOCK */
.hero-photo-wrap {
  flex-shrink: 0;
  width: 260px;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s forwards;
}
.hero-photo {
  width: 100%;
  height: 300px;
  position: relative;
  border: 1px solid var(--line-strong);
  padding: 8px;
}
.hero-photo::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--brass);
  border-left: 1px solid var(--brass);
}
.hero-photo::after {
  content: "";
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid var(--brass);
  border-right: 1px solid var(--brass);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(35%) contrast(1.05);
}

.title-block {
  margin-top: 10px;
  border: 1px solid var(--line-strong);
  border-top: none;
}
.tb-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  border-top: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 0.66rem;
}
.tb-label {
  padding: 0.45rem 0.6rem;
  color: var(--brass);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-right: 1px solid var(--line-strong);
}
.tb-value {
  padding: 0.45rem 0.6rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.tb-value.status {
  color: var(--brass);
}
.tb-value.status::before {
  content: "●";
  font-size: 0.55em;
  margin-right: 0.45em;
  vertical-align: middle;
}

/* SPEC TICKER */
.ticker-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--line-strong);
  padding: 1rem 0;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 6%,
    black 94%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    black 6%,
    black 94%,
    transparent
  );
  opacity: 0;
  animation: fadeUp 0.7s 0.9s forwards;
}
.ticker {
  display: flex;
  width: max-content;
  animation: tickerMove 42s linear infinite;
}
.ticker-inner {
  display: flex;
}
.ticker span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 1.6rem;
  white-space: nowrap;
  opacity: 0.75;
}
.ticker span.sep {
  color: var(--brass);
  padding: 0;
  opacity: 0.5;
}
@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brass);
  color: #14100a;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--brass);
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.btn-primary:hover {
  background: transparent;
  color: var(--brass);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--line-strong);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-ghost:hover {
  border-color: var(--brass);
  color: var(--brass);
}

/* =========================================
   SECTIONS
   ========================================= */
section,
.edu-wrap {
  position: relative;
  z-index: 2;
  padding: 6rem 3rem;
}
.section-label {
  font-family: var(--font-mono);
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
}
.sheet-no {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--brass);
}
.sheet-name {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.sheet-name::before {
  content: "";
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2.8rem;
  line-height: 1.1;
}

/* =========================================
   ABOUT
   ========================================= */
#about {
  border-top: 1px solid var(--line-strong);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.about-text p strong {
  color: var(--ink);
  font-weight: 600;
}
.skill-group {
  margin-bottom: 1.6rem;
}
.skill-group-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.skill-group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-strong);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: all 0.2s;
}
.tag.accent {
  border-color: var(--accent);
  color: var(--accent);
}

/* =========================================
   EXPERIENCE — dimension line
   ========================================= */
#experience {
  border-top: 1px solid var(--line-strong);
}
.exp-list {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 1.6rem;
}
.exp-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  bottom: 2rem;
  width: 1px;
  background: var(--line-strong);
}
.exp-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 2rem;
  padding: 2rem 0 2rem 1.8rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.2s;
}
.exp-item::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 2.5rem;
  width: 14px;
  height: 1px;
  background: var(--line-strong);
  transition: background 0.2s, width 0.2s;
}
.exp-item:hover::before {
  background: var(--brass);
  width: 20px;
}
.exp-item:hover {
  background: var(--accent-dim);
}
.exp-period {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
}
.exp-location {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--brass);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.exp-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.exp-company {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.exp-projects {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
  font-style: italic;
}
.exp-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.exp-bullets li {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}
.exp-bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--brass);
  opacity: 0.7;
}
.exp-impact {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.impact-badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  letter-spacing: 0.03em;
}

/* =========================================
   FREELANCE
   ========================================= */
#freelance {
  border-top: 1px solid var(--line-strong);
}
.freelance-note {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: -2rem;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.freelance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}
.freelance-card {
  background: var(--bg);
  padding: 1.8rem;
  transition: background 0.2s;
}
.freelance-card:hover {
  background: var(--accent-dim);
}
.freelance-icon {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.freelance-project {
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-weight: 500;
}
.freelance-role {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}
.freelance-period {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--muted);
}

/* =========================================
   EDUCATION
   ========================================= */
.edu-wrap {
  border-top: 1px solid var(--line-strong);
}
.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}
.edu-card {
  background: var(--bg);
  padding: 2rem;
  transition: background 0.2s;
}
.edu-card:hover {
  background: var(--accent-dim);
}
.edu-degree {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.edu-institution {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--brass);
  margin-bottom: 0.15rem;
}
.edu-year {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
  line-height: 1.5;
}
.cert-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cert-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 2rem;
}
@media (max-width: 768px) {
  .cert-list-grid {
    grid-template-columns: 1fr;
  }
}
.cert-item {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
}
.cert-item::before {
  content: "//";
  position: absolute;
  left: 0;
  color: var(--brass);
  font-size: 0.6rem;
}

/* =========================================
   CTA
   ========================================= */
#download {
  border-top: 1px solid var(--line-strong);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-box {
  border: 1px solid var(--line-strong);
  padding: 4.5rem 3rem;
  max-width: 680px;
  width: 100%;
  position: relative;
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 16px;
  height: 16px;
  border-top: 1px solid var(--brass);
  border-left: 1px solid var(--brass);
}
.cta-box::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 16px;
  height: 16px;
  border-bottom: 1px solid var(--brass);
  border-right: 1px solid var(--brass);
}
.cta-box .section-label {
  justify-content: center;
}
.cta-box h2 {
  margin-bottom: 1rem;
}
.cta-box p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2.4rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  border-top: 1px solid var(--line-strong);
  padding: 1.8rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}
footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover {
  color: var(--brass);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}

/* =========================================
   SCROLL REVEAL
   ========================================= */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal {
  transform: translateY(20px);
}
.reveal-left {
  transform: translateX(-20px);
}
.reveal-right {
  transform: translateX(20px);
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .hero-photo-wrap {
    display: none;
  }
  .edu-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 1.1rem 1.5rem;
  }
  nav .nav-links {
    display: none;
  }
  #hero {
    padding: 0 1.5rem;
    padding-top: 80px;
    padding-bottom: 5rem;
  }
  section,
  .edu-wrap {
    padding: 4rem 1.5rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .exp-list {
    padding-left: 1rem;
  }
  .exp-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding-left: 1.2rem;
  }
  .cta-box {
    padding: 3rem 1.5rem;
  }
  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .freelance-grid {
    grid-template-columns: 1fr;
  }
}
