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

:root {
  --bg:        #f7f1ec;
  --bg-2:      #f1e7e0;
  --bg-card:   #ffffff;
  --border:    rgba(60,40,55,0.10);
  --text:      #2e2530;
  --text-muted:#8a7d86;
  --accent:    #8d6f83;
  --accent-2:  #a98499;
  --teal:      #d8a48f;
  --orange:    #e0925f;
  --green:     #6fae7d;
  --red:       #d97b7b;

  --grad: linear-gradient(135deg, #8d6f83 0%, #a98499 50%, #d8a48f 100%);
  --grad-glow: radial-gradient(ellipse at center, rgba(141,111,131,0.22) 0%, transparent 70%);

  --radius:    14px;
  --radius-lg: 24px;
  --shadow-card: 0 1px 3px rgba(60,40,55,0.06), 0 8px 24px rgba(60,40,55,0.08);
  --shadow-glow: 0 0 40px rgba(141,111,131,0.20), 0 0 80px rgba(141,111,131,0.08);

  --font: 'Inter', system-ui, sans-serif;
  --font-mono: 'Fira Code', monospace;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent { color: var(--accent); }

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(141,111,131,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(141,111,131,0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: rgba(141,111,131,0.5);
  color: var(--accent-2);
  background: rgba(141,111,131,0.08);
}

.btn--glow {
  box-shadow: var(--shadow-glow);
}
.btn--glow:hover {
  box-shadow: 0 0 60px rgba(141,111,131,0.6), 0 0 120px rgba(141,111,131,0.2);
}

/* ============================================================
   TAGS
   ============================================================ */
.tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(46,37,48,0.07);
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tag--ai     { background: rgba(141,111,131,0.2); color: var(--accent-2); }
.tag--prod   { background: rgba(216,164,143,0.15); color: var(--teal); }
.tag--saas   { background: rgba(251,146,60,0.15); color: var(--orange); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(247,241,236,0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-right: auto;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 32px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }

.nav__cta {
  background: rgba(141,111,131,0.15);
  color: var(--accent-2);
  border: 1px solid rgba(141,111,131,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.nav__cta:hover {
  background: rgba(141,111,131,0.25);
  border-color: rgba(141,111,131,0.6);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 80px 80px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.hero__bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.hero__blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #a98499 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.hero__blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #d8a48f 0%, transparent 70%);
  bottom: 0; right: 0;
  animation: blobFloat 10s ease-in-out infinite alternate-reverse;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(141,111,131,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141,111,131,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

@keyframes blobFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.1); }
}

.hero__content { position: relative; z-index: 1; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 20px;
}
.dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74,222,128,0.2); }
  50%       { box-shadow: 0 0 0 8px rgba(74,222,128,0.05); }
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}

.hero__sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp 0.8s ease 0.45s both;
}
.stat { display: flex; flex-direction: column; }
.stat__num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.stat__unit { font-size: 16px; color: var(--accent-2); }
.stat__label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.stat__divider {
  width: 1px; height: 44px;
  background: var(--border);
}

/* Hero mockup */
.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.2s both;
}

.mockup {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(141,111,131,0.1), var(--shadow-glow);
}

.mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(46,37,48,0.03);
  border-bottom: 1px solid var(--border);
}

.mockup__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.mockup__dot.red    { background: #ff5f57; }
.mockup__dot.yellow { background: #ffbd2e; }
.mockup__dot.green  { background: #28c940; }

.mockup__url {
  margin-left: 12px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-muted);
  background: rgba(46,37,48,0.05);
  padding: 3px 10px;
  border-radius: 4px;
}

.mockup__screen { padding: 28px 24px 32px; }

.app-preview__label {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text);
}

.app-preview__input {
  background: rgba(46,37,48,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text);
  min-height: 52px;
  margin-bottom: 20px;
  font-family: var(--font);
}

.cursor {
  animation: blink 1s step-end infinite;
  color: var(--accent);
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.app-preview__tasks { display: flex; flex-direction: column; gap: 10px; }

.preview-task {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(46,37,48,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
}
.preview-task.visible {
  opacity: 1;
  transform: translateY(0);
}
.preview-task__dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__body {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about__body strong { color: var(--text); }

.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.about-card__icon { font-size: 24px; display: block; margin-bottom: 12px; }
.about-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.about-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.about-card--teal  { border-color: rgba(216,164,143,0.2); }
.about-card--purple{ border-color: rgba(141,111,131,0.2); }
.about-card--orange{ border-color: rgba(251,146,60,0.2); }
.about-card--blue  { border-color: rgba(96,165,250,0.2); }
.about-card--teal:hover  { border-color: rgba(216,164,143,0.5); box-shadow: 0 8px 30px rgba(216,164,143,0.1); }
.about-card--purple:hover{ border-color: rgba(141,111,131,0.5); box-shadow: 0 8px 30px rgba(141,111,131,0.15); }
.about-card--orange:hover{ border-color: rgba(251,146,60,0.5); box-shadow: 0 8px 30px rgba(251,146,60,0.1); }
.about-card--blue:hover  { border-color: rgba(96,165,250,0.5); box-shadow: 0 8px 30px rgba(96,165,250,0.1); }

/* ============================================================
   FEATURED PROJECT
   ============================================================ */
.featured {
  padding: 80px 0 120px;
  position: relative;
  z-index: 1;
}

.featured-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(141,111,131,0.25);
  border-radius: var(--radius-lg);
  padding: 0;
  margin: 48px 0 64px;
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 60px rgba(141,111,131,0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.featured-card.visible { opacity: 1; transform: translateY(0); }

.featured-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
}

.featured-card__badge {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(141,111,131,0.2);
  color: var(--accent-2);
  border: 1px solid rgba(141,111,131,0.35);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
}

.featured-card__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.featured-card__info {
  padding: 52px 48px 52px;
}

.featured-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.featured-card__title {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured-card__desc {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}
.feature-list__icon {
  color: var(--accent);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.featured-card__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.featured-card__contact {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: var(--text-muted);
}
.featured-card__contact a {
  color: var(--accent-2);
  transition: color 0.2s;
}
.featured-card__contact a:hover { color: var(--text); }

.featured-card__visual {
  background: rgba(46,37,48,0.02);
  border-left: 1px solid var(--border);
  padding: 52px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* App Demo */
.app-demo {
  width: 100%;
  max-width: 340px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(60,40,55,0.12);
}

.app-demo__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(46,37,48,0.02);
}
.app-demo__logo {
  font-weight: 800;
  font-size: 15px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.app-demo__nav { font-size: 13px; color: var(--text-muted); }

.app-demo__body { padding: 20px; }

.app-demo__prompt {
  background: rgba(141,111,131,0.08);
  border: 1px solid rgba(141,111,131,0.2);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 16px;
}
.app-demo__prompt-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.app-demo__prompt-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
}

.app-demo__divider {
  text-align: center;
  margin-bottom: 14px;
}
.app-demo__arrow {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.app-demo__tasks { display: flex; flex-direction: column; gap: 8px; }

.demo-task {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(46,37,48,0.02);
  transition: all 0.2s;
}
.demo-task:hover { border-color: rgba(141,111,131,0.3); background: rgba(141,111,131,0.05); }

.demo-task--done {
  color: rgba(46,37,48,0.35);
  text-decoration: line-through;
  background: transparent;
}
.demo-task--active {
  border-color: rgba(141,111,131,0.35);
  background: rgba(141,111,131,0.07);
  color: var(--text);
}

.demo-task__check {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}
.demo-task--done .demo-task__check {
  background: var(--green);
  color: #000;
}
.demo-task__check--active {
  border: 2px solid var(--accent);
  animation: spinRing 2s linear infinite;
  background: transparent;
}
@keyframes spinRing {
  0%   { box-shadow: 0 0 0 2px rgba(141,111,131,0.3); }
  50%  { box-shadow: 0 0 0 4px rgba(141,111,131,0.15); }
  100% { box-shadow: 0 0 0 2px rgba(141,111,131,0.3); }
}
.demo-task__check--empty {
  border: 2px solid var(--border);
  background: transparent;
}

/* ============================================================
   PROJECTS GRID
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.projects-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 40px;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
  cursor: default;
}
.project-card:hover {
  border-color: rgba(141,111,131,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(60,40,55,0.08), 0 0 40px rgba(141,111,131,0.07);
}

.project-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.project-card__icon { font-size: 28px; }
.project-link {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46,37,48,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.2s;
}
.project-link:hover {
  background: rgba(141,111,131,0.15);
  border-color: rgba(141,111,131,0.4);
  color: var(--accent-2);
}

.project-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.project-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.project-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* ============================================================
   SKILLS
   ============================================================ */
.skills {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.skill-group {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.skill-group:hover { border-color: rgba(141,111,131,0.2); }

.skill-group__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.skill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  background: rgba(46,37,48,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  transition: all 0.2s;
}
.chip:hover {
  background: rgba(141,111,131,0.1);
  border-color: rgba(141,111,131,0.35);
  color: var(--accent-2);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 100px 0 120px;
  position: relative;
  z-index: 1;
}

.contact__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact__inner .section-eyebrow { justify-content: center; }
.contact__inner .section-eyebrow::before { display: none; }

.contact__sub {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  transition: all 0.25s;
  text-align: left;
}
.contact-card:hover {
  border-color: rgba(141,111,131,0.35);
  transform: translateX(4px);
  background: rgba(141,111,131,0.05);
}
.contact-card--highlight {
  border-color: rgba(141,111,131,0.25);
}
.contact-card--highlight:hover {
  box-shadow: 0 0 30px rgba(141,111,131,0.15);
}

.contact-card__icon { font-size: 24px; }
.contact-card div { flex: 1; }
.contact-card strong { display: block; font-weight: 700; margin-bottom: 2px; }
.contact-card span  { font-size: 14px; color: var(--text-muted); }
.contact-card__arrow { font-size: 18px; color: var(--accent); opacity: 0.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  position: relative;
  z-index: 1;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 14px;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--accent-2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 40px 80px;
    text-align: center;
    gap: 60px;
  }
  .hero__visual { justify-content: center; }
  .hero__sub { margin: 0 auto 36px; }
  .hero__stats { justify-content: center; }
  .hero__actions { justify-content: center; }

  .about__inner          { grid-template-columns: 1fr; gap: 48px; }
  .featured-card__content{ grid-template-columns: 1fr; }
  .featured-card__visual { border-left: none; border-top: 1px solid var(--border); }
  .skills-grid           { grid-template-columns: 1fr 1fr; }
  .projects-grid         { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 100px 20px 60px; }
  .nav__links { display: none; }
  .about__cards { grid-template-columns: 1fr; }
  .skills-grid  { grid-template-columns: 1fr; }
  .projects-grid{ grid-template-columns: 1fr; }
  .featured-card__info { padding: 32px 24px; }
}

/* ============================================================
   LOGO IMAGE + LIGHT-THEME ADDITIONS
   ============================================================ */
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 2px 8px rgba(141,111,131,0.35);
}
.footer .nav__logo-img { width: 28px; height: 28px; }

/* Real project cards are now links */
a.project-card { text-decoration: none; color: inherit; display: block; }

/* Coming-soon card */
.project-card--soon {
  border-style: dashed;
  background: rgba(141,111,131,0.04);
}
.project-link--soon {
  width: auto;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
