/* ─── TOKENS ────────────────────────────────────────────────────────────────── */
:root {
  --ink:         #1a1a18;
  --ink-soft:    #4a4a44;
  --sand:        #f5f0e8;
  --sand-dark:   #ede7d9;
  --cream:       #faf8f4;
  --accent:      #2c5f8a;
  --accent-light:#3a7ab5;
  --accent-pale: #e8f0f7;
  --warm:        #c4784a;
  --warm-pale:   #f7ede4;
  --line:        #d8d2c8;

  --font-display: 'Lora', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --max-w: 1080px;
  --nav-h: 64px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── DARK MODE ─────────────────────────────────────────────────────────────── */
[data-theme="dark"] {
  --ink:         #f0ede8;
  --ink-soft:    #a8a49e;
  --sand:        #1e1c1a;
  --sand-dark:   #252320;
  --cream:       #171614;
  --accent:      #5a9fd4;
  --accent-light:#74b3e3;
  --accent-pale: #1a2a38;
  --warm:        #d4935a;
  --warm-pale:   #2a1f18;
  --line:        #2e2c28;
}
[data-theme="dark"] .nav.scrolled {
  background: rgba(23,22,20,0.96);
}
[data-theme="dark"] .hero-bg {
  background: linear-gradient(135deg, #1e1c1a 0%, #171614 55%, #1a2a38 100%);
}
[data-theme="dark"] .stats { background: #1a2a38; }
[data-theme="dark"] .service-card,
[data-theme="dark"] .workshop-card,
[data-theme="dark"] .workshops-cta,
[data-theme="dark"] .blog-placeholder-card { background: #1e1c1a; }
[data-theme="dark"] .about-photo-placeholder {
  background: linear-gradient(145deg, #252320 0%, #1e1c1a 100%);
}
[data-theme="dark"] .timeline-item--highlight .timeline-content { background: #1a2a38; }
[data-theme="dark"] .footer { background: #0f0e0d; }
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea { background: #1e1c1a; color: var(--ink); }

/* ─── RESET ─────────────────────────────────────────────────────────────────── */
*, *::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(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── UTILITIES ─────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-intro {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* ─── REVEAL ANIMATIONS ─────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); }
.btn-ghost {
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-ghost:hover { background: var(--accent-pale); }
.btn-outline {
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAV ───────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--accent-light); }
.nav-controls { display: flex; align-items: center; gap: 0.5rem; }
.toggle-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 6px;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.toggle-btn:hover { border-color: var(--accent); color: var(--accent); }
.toggle-btn svg { width: 15px; height: 15px; }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun  { display: none; }
[data-theme="dark"] .icon-moon { display: block; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; cursor: pointer; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: all 0.2s; }
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid var(--line);
}
.nav-mobile a { padding: 0.6rem 0; font-size: 0.95rem; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.nav-mobile.open { display: flex; }

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 55%, var(--accent-pale) 100%);
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.hero-shape-1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -100px; right: -150px;
}
.hero-shape-2 {
  width: 400px; height: 400px;
  background: var(--warm);
  bottom: -80px; left: -80px;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 4rem;
  padding-bottom: 6rem;
}
.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--accent);
  border-radius: 2px;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-name em {
  font-style: italic;
  color: var(--accent);
}
.hero-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.hero-title span {
  font-weight: 300;
  color: var(--ink-soft);
}
.hero-summary {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--ink-soft);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; width: 40px; }
  50% { opacity: 1; width: 60px; }
}

/* ─── STATS ─────────────────────────────────────────────────────────────────── */
.stats {
  background: var(--accent);
  padding: 2.5rem 0;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  padding: 0.5rem 3rem;
  flex: 1;
  min-width: 140px;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ─── ABOUT ─────────────────────────────────────────────────────────────────── */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: start;
}
.about-text p {
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.78;
}
.about-text p strong { color: var(--ink); }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.about-tags span {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
  background: var(--accent-pale);
  color: var(--accent);
  letter-spacing: 0.02em;
}
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--sand) 0%, var(--sand-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.about-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(44,95,138,0.08) 100%);
}
.photo-initials {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
}
.about-credentials { display: flex; flex-direction: column; gap: 0.75rem; }
.credential {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.credential:last-child { border-bottom: none; }
.credential-year {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.credential-text {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ─── SERVICES ──────────────────────────────────────────────────────────────── */
.services { background: var(--sand); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.service-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(44,95,138,0.08);
}
.service-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--ink);
  line-height: 1.3;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-audience {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm);
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--warm);
  border-radius: 2rem;
}
.services-cta { text-align: center; }

/* ─── EXPERIENCE TIMELINE ───────────────────────────────────────────────────── */
.experience { background: var(--cream); }
.timeline {
  position: relative;
  margin-top: 3.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--line);
}
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0.6rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line);
  transform: translate(-50%, 0);
  z-index: 1;
}
.timeline-item--highlight::before {
  background: var(--accent);
  width: 11px; height: 11px;
  box-shadow: 0 0 0 3px var(--accent-pale);
}
.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 2rem;
  padding-top: 0.2rem;
}
.timeline-year {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-align: right;
}
.timeline-content { padding-left: 1.5rem; }
.timeline-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.timeline-tag--un {
  color: #fff;
  background: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.timeline-link {
  color: inherit;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s, color 0.2s;
}
.timeline-link:hover { color: var(--accent); border-color: var(--accent); }
.timeline-location {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}
.timeline-content p:last-child {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.72;
}
.timeline-item--highlight .timeline-content {
  background: var(--accent-pale);
  border: 1px solid rgba(44,95,138,0.12);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}

/* ─── WORKSHOPS ─────────────────────────────────────────────────────────────── */
.workshops { background: var(--sand); }
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.workshop-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.workshop-card:hover { border-color: var(--accent); }
.workshop-year {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.workshop-card h4 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.workshop-client {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  line-height: 1.4;
}
.workshops-cta {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}
.workshops-cta p {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

/* ─── BLOG ──────────────────────────────────────────────────────────────────── */
.blog { background: var(--cream); }
.blog-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.blog-placeholder-card {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 1.75rem;
  opacity: 0.65;
}
.blog-placeholder-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm);
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--warm);
  border-radius: 2rem;
  margin-bottom: 0.75rem;
}
.blog-placeholder-card h4 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.blog-placeholder-card p {
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-style: italic;
}
.blog-notify {
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.blog-notify a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── CONTACT ───────────────────────────────────────────────────────────────── */
.contact { background: var(--sand); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-left p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: 1rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--accent); }
.contact-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.contact-lang {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.25rem;
  font-style: italic;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  padding: 0.65rem 0.85rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group select { appearance: none; cursor: pointer; }
.form-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 0.25rem;
}

.nav-yes {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--accent) !important;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.nav-yes:hover { opacity: 0.7; }

/* ─── YES FEATURE BLOCK ─────────────────────────────────────────────────────── */
.yes-feature {
  background: var(--sand);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3.5rem 0;
}
.yes-feature-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.yes-feature-left {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}
.yes-feature-logo {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.yes-feature-text .section-label { margin-bottom: 0.25rem; }
.yes-feature-text h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.yes-feature-text p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 380px;
}
.yes-feature-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
  flex-shrink: 0;
}
.yes-feature-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.yes-feature-pills span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--cream);
}
.yes-feature-btn { white-space: nowrap; }

@media (max-width: 720px) {
  .yes-feature-inner { flex-direction: column; align-items: flex-start; }
  .yes-feature-right { align-items: flex-start; }
}
.nav-cv {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft) !important;
  border: 1.5px solid var(--line);
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.nav-cv:hover { border-color: var(--accent); color: var(--accent) !important; }

/* ─── CV DOWNLOAD SECTION ───────────────────────────────────────────────────── */
.cv-download {
  background: var(--accent);
  padding: 4rem 0;
}
.cv-download-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cv-download-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}
.cv-download-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}
.cv-btn {
  background: #fff !important;
  color: var(--accent) !important;
  white-space: nowrap;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
}
.cv-btn:hover { background: var(--sand) !important; transform: translateY(-1px); }
.cv-btn svg { width: 18px; height: 18px; }

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-left { display: flex; flex-direction: column; gap: 0.2rem; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}
.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.footer-right {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-aside { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
  .about-photo-placeholder { aspect-ratio: 1; }
  .services-grid { grid-template-columns: 1fr; }
  .workshops-grid { grid-template-columns: 1fr; }
  .blog-placeholder { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .timeline::before { left: 80px; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 1.5rem; }
  .timeline-item::before { left: 80px; }
}
@media (max-width: 640px) {
  .section { padding: 5rem 0; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-actions { flex-direction: column; }
  .stats-inner { gap: 0; }
  .stat { padding: 0.75rem 1.5rem; }
  .stat-divider { display: none; }
  .timeline::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .timeline-item::before { display: none; }
  .timeline-marker { align-items: flex-start; padding-right: 0; }
  .timeline-content { padding-left: 0; }
  .form-row { grid-template-columns: 1fr; }
  .about-aside { grid-template-columns: 1fr; }
}