:root {
  --cream: #faf8f5;
  --dark: #111111;
  --accent: #c8a96e;
  --accent2: #7c6f5e;
  --text: #2c2c2c;
  --muted: #7a7a7a;
  --border: #e8e4dd;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 30px rgba(0,0,0,0.07);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
}
a { color: inherit; text-decoration: none; }

/* NAV */
.navbar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  max-width: 1100px; margin: auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.nav-logo {
  font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; color: var(--dark);
}
.nav-logo em { color: var(--accent); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-family: system-ui, sans-serif; font-size: 0.88rem; font-weight: 500;
  color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-hire {
  font-family: system-ui, sans-serif; font-size: 0.85rem; font-weight: 600;
  border: 1.5px solid var(--dark); padding: 8px 20px; border-radius: 999px;
  color: var(--dark); transition: all 0.2s;
}
.nav-hire:hover { background: var(--dark); color: white; }

/* HERO */
.hero {
  max-width: 1100px; margin: 0 auto; padding: 96px 24px 80px;
  display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: center;
}
.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.03em; color: var(--dark);
  margin-bottom: 8px;
}
.hero-text h1 em { color: var(--accent); font-style: normal; }
.hero-sub {
  font-family: system-ui, sans-serif; font-size: 1rem;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 28px;
}
.hero-text p {
  font-size: 1.08rem; color: var(--muted); max-width: 480px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-dark {
  font-family: system-ui, sans-serif; font-weight: 600;
  background: var(--dark); color: white;
  padding: 13px 28px; border-radius: 999px; transition: opacity 0.2s;
}
.btn-dark:hover { opacity: 0.82; }
.btn-border {
  font-family: system-ui, sans-serif; font-weight: 600;
  border: 1.5px solid var(--border); color: var(--text);
  padding: 13px 28px; border-radius: 999px; transition: border-color 0.2s;
}
.btn-border:hover { border-color: var(--dark); }

.hero-photo {
  position: relative;
}
.photo-frame {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(145deg, #d4c4a8, #b8a88a);
  border-radius: 160px 160px 120px 120px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: rgba(255,255,255,0.5);
  overflow: hidden;
}
.hero-badge-float {
  position: absolute; bottom: 28px; left: -20px;
  background: white; border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  font-family: system-ui, sans-serif;
}
.hero-badge-float strong { display: block; font-size: 1.3rem; color: var(--dark); }
.hero-badge-float span { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* SECTION */
.section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: auto; }

.section-label {
  font-family: system-ui, sans-serif;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--accent);
  display: block; margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700; letter-spacing: -0.02em; color: var(--dark);
  margin-bottom: 14px;
}
.section-sub {
  font-family: system-ui, sans-serif;
  color: var(--muted); font-size: 1rem; max-width: 520px;
}

/* WORK GRID */
.work-header { margin-bottom: 48px; }
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 24px; }

.work-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.3s;
}
.work-card:hover { transform: translateY(-5px); }

.work-thumb {
  height: 220px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.work-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.work-card:hover .work-overlay { opacity: 1; }
.work-overlay a {
  font-family: system-ui, sans-serif; font-size: 0.85rem; font-weight: 700;
  color: white; border: 2px solid white; padding: 10px 22px; border-radius: 999px;
}
.work-body { padding: 24px; }
.work-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.work-tag {
  font-family: system-ui, sans-serif; font-size: 0.73rem; font-weight: 600;
  background: var(--cream); color: var(--accent2);
  padding: 4px 12px; border-radius: 999px; border: 1px solid var(--border);
}
.work-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.work-body p { font-family: system-ui, sans-serif; font-size: 0.9rem; color: var(--muted); }

/* SKILLS */
.skills-bg { background: var(--dark); color: white; }
.skills-bg .section-label { color: var(--accent); }
.skills-bg .section-title { color: white; }
.skills-inner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 48px; }
.skills-text p { color: rgba(255,255,255,0.65); margin-bottom: 28px; }

.skill-bars { display: flex; flex-direction: column; gap: 22px; }
.skill-item {}
.skill-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.skill-header span:first-child { font-family: system-ui, sans-serif; font-size: 0.9rem; font-weight: 600; }
.skill-header span:last-child { font-family: system-ui, sans-serif; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.skill-track { height: 6px; background: rgba(255,255,255,0.1); border-radius: 999px; overflow: hidden; }
.skill-fill { height: 100%; background: linear-gradient(90deg, var(--accent), #e8c490); border-radius: 999px; }

.tools-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 48px; }
.tool-tag {
  font-family: system-ui, sans-serif; font-size: 0.85rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.75);
  padding: 8px 18px; border-radius: 999px; transition: all 0.2s;
}
.tool-tag:hover { border-color: var(--accent); color: var(--accent); }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
}
.quote { font-size: 2rem; color: var(--accent); line-height: 1; margin-bottom: 14px; }
.testimonial-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 24px; }
.tester { display: flex; align-items: center; gap: 14px; }
.tester-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: system-ui, sans-serif; font-weight: 700; font-size: 0.9rem;
}
.tester-info strong { font-size: 0.9rem; color: var(--dark); display: block; }
.tester-info span { font-family: system-ui, sans-serif; font-size: 0.8rem; color: var(--muted); }

/* CTA */
.hire-cta {
  background: linear-gradient(135deg, #1a1a1a, #2c2416);
  color: white; padding: 100px 24px; text-align: center;
}
.hire-cta h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; letter-spacing: -0.03em; }
.hire-cta p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 480px; margin: 0 auto 40px; }
.btn-gold {
  font-family: system-ui, sans-serif; font-weight: 700;
  background: var(--accent); color: var(--dark);
  padding: 15px 36px; border-radius: 999px; font-size: 1rem;
  transition: opacity 0.2s;
}
.btn-gold:hover { opacity: 0.88; }

/* FOOTER */
footer {
  background: #0a0a0a; color: rgba(255,255,255,0.45);
  padding: 36px 24px; text-align: center;
  font-family: system-ui, sans-serif; font-size: 0.85rem;
}
footer a { color: var(--accent); }

/* RESPONSIVE */
@media(max-width:768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .nav-links { display: none; }
  .skills-inner-grid { grid-template-columns: 1fr; gap: 36px; }
}
