:root {
  /* ── CINEMATIC EDITORIAL PALETTE ────────────────────────────── */
  --ink:        #13100d;   /* Warm rich black — not cold digital black */
  --ink-soft:   #2a2520;   /* Warm dark for secondary text */
  --muted:      #7a7168;   /* Warm stone gray */
  --line:       #ddd5c5;   /* Warm parchment border */
  --paper:      #f5f1e8;   /* Warm ivory — the editorial base */
  --white:      #fdf9f3;   /* Cream white — never pure white */

  /* Warm surfaces */
  --sand:       #ece4d2;   /* Medium parchment */
  --sand-soft:  #f9f5ee;   /* Lightest warm surface */
  --dark-surface: #1e1a15; /* Deep warm charcoal for dark sections */
  --dark-mid:   #2d2820;   /* Medium dark surface */
  --mist:       #e8f0ec;   /* Very subtle mint */

  /* Primary accent — Deep bronze/amber */
  --bronze:     #b8914a;   /* Warm editorial bronze */
  --bronze-mid: #d4ac65;   /* Lighter bronze */
  --teal:       #0d7a70;   /* Deeper, richer teal — less startup */
  --teal-mid:   #14a89a;   /* Mid teal */
  --teal-glow:  rgba(13,122,112,0.15);

  /* Supporting accents */
  --coral:      #d4503a;   /* Muted warm coral */
  --green:      #3a7a5a;   /* Deep editorial green */
  --blue:       #2a4a8c;   /* Deep navy */

  /* Shadows — warm-toned */
  --shadow:        0 20px 60px rgba(19,16,13,0.10);
  --shadow-strong: 0 32px 80px rgba(19,16,13,0.18);
  --shadow-bronze: 0 16px 40px rgba(184,145,74,0.18);
  --radius: 8px;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  z-index: 100;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--bronze), var(--bronze-mid), var(--teal));
  border-radius: 0 2px 2px 0;
  transition: width 80ms linear;
  pointer-events: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", "Inter", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(245,241,232,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: "Source Sans 3", "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  gap: clamp(12px, 1.8vw, 24px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a.nav-active {
  color: var(--teal);
  position: relative;
}

.site-nav a.nav-active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

.nav-cta {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--teal);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.2);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 520px);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: clamp(72px, 9vw, 120px) clamp(18px, 4vw, 58px) 64px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(184,145,74,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(13,122,112,0.05) 0%, transparent 50%),
    var(--paper);
  position: relative;
  overflow: hidden;
}

/* Subtle noise texture overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.eyebrow,
.section-kicker {
  color: var(--bronze);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tag {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Merriweather", Georgia, serif;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5.8vw, 5rem);
  font-family: "Merriweather", Georgia, serif;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-family: "Space Grotesk", "Source Sans 3", sans-serif;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.hero-text {
  max-width: 620px;
  color: #3c424b;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.7;
}

.mobile-hero-photo {
  display: none;
}

.hero-actions,
.hero-meta,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  box-shadow: 0 12px 32px rgba(19,16,13,0.25);
}

.button.dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 28px rgba(23, 25, 31, 0.16);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.wa-dot {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
}

.hero-proof {
  margin-top: 22px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-proof span {
  padding: 8px 14px;
  border-left: 3px solid var(--teal);
  background: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.proof-icon {
  font-style: normal;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 900;
}

.hero-meta {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-meta span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(184,145,74,0.25);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(184,145,74,0.08), rgba(13,122,112,0.06));
  content: "";
}

.hero-visual img {
  width: min(100%, 520px);
  margin-left: auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center 20%;
  box-shadow: var(--shadow-strong);
}

.availability,
.visual-note {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 44px rgba(23, 25, 31, 0.16);
}

.availability {
  right: min(8vw, 42px);
  bottom: -24px;
  width: min(290px, 76%);
  padding: 18px;
}

.availability strong {
  display: block;
  font-size: 1.35rem;
}

.availability span,
.visual-note span {
  color: var(--muted);
  font-size: 0.92rem;
}

.visual-note {
  left: -24px;
  top: 28px;
  width: min(270px, 72%);
  padding: 14px 16px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.metrics article {
  min-height: 154px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.metrics article:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  line-height: 1;
}

.metrics span,
.section p,
.service-item p,
.timeline-item p,
.work-card p,
.work-card li,
.learning li,
.process-card p {
  color: var(--muted);
}

.section {
  padding: clamp(64px, 9vw, 122px) clamp(18px, 4vw, 58px);
}

.intro {
  display: grid;
  grid-template-columns: 220px minmax(0, 900px);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.intro p {
  max-width: 920px;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.process-section {
  background: var(--sand-soft);
  border-block: 1px solid var(--line);
}

.process-grid,
.work-grid {
  display: grid;
  gap: 18px;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.work-grid {
  grid-template-columns: repeat(3, 1fr);
}

.work-card,
.service-item,
.skill-block,
.timeline-item,
.education,
.learning,
.process-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
}

.work-card,
.process-card,
.service-item,
.skill-block,
.timeline-item,
.education,
.learning {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.work-card:hover,
.process-card:hover,
.service-item:hover,
.skill-block:hover,
.timeline-item:hover {
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 18px 42px rgba(23, 25, 31, 0.08);
  transform: translateY(-3px);
}

.process-card {
  min-height: 240px;
  padding: 26px;
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--teal);
  background: rgba(13,148,136,0.1);
  border: 1.5px solid rgba(13,148,136,0.22);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.work-card {
  min-height: 430px;
  padding: 28px;
  border-top-width: 3px;
}

.work-card--seo  { border-top-color: var(--teal); }
.work-card--paid { border-top-color: var(--coral); }
.work-card--social { border-top-color: var(--green); }

/* Work stat callout */
.work-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 16px;
  padding: 12px 14px;
  background: rgba(13,148,136,0.06);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.work-stat strong {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}

.work-stat span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

.work-card--paid .work-stat { border-left-color: var(--coral); background: rgba(244,63,94,0.06); }
.work-card--social .work-stat { border-left-color: var(--green); background: rgba(16,185,129,0.06); }

.tag {
  display: inline-flex;
  margin-bottom: 28px;
}

.tag.coral {
  color: var(--coral);
}

.tag.green {
  color: var(--green);
}

.work-card ul,
.learning ul {
  padding-left: 20px;
  margin: 22px 0 0;
}

.work-card li + li,
.learning li + li {
  margin-top: 10px;
}

.services-band {
  background: linear-gradient(135deg, rgba(232, 240, 236, 0.94), rgba(243, 223, 196, 0.42));
  border-top: 1px solid #d8e2dc;
  border-bottom: 1px solid #d8e2dc;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-item {
  min-height: 240px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 112px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  padding: 28px;
  border-left: 4px solid var(--teal);
}

.timeline-item span,
.education article span {
  color: var(--coral);
  font-weight: 800;
}

.company {
  margin-bottom: 14px;
  color: var(--ink) !important;
  font-weight: 700;
}

.skills-section {
  background: var(--ink);
  color: var(--white);
}

.skills-section .section-kicker {
  color: #8bd7ca;
}

.skills-section h2 {
  color: var(--white);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.skill-block {
  min-height: 270px;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #222733, #1b202b);
}

.skill-block:hover {
  border-color: rgba(139, 215, 202, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill-list span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #d9e1ea;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}

.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.education,
.learning {
  padding: clamp(24px, 4vw, 38px);
}

.education article {
  padding-top: 26px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.languages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.languages span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 84px);
  padding: clamp(64px, 9vw, 122px) clamp(18px, 4vw, 58px);
  color: var(--white);
  background:
    radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(135deg, var(--dark-surface) 0%, #1a130c 60%, #0f1a15 100%);
  background-size: 32px 32px, 100% 100%;
}

/* Studying badge */
.studying-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.studying-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.contact-section .section-kicker,
.contact-section p {
  color: #d7f3ee;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, transform 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.contact-link span {
  color: #bbe8df;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-link strong {
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  padding: 28px clamp(18px, 4vw, 58px);
  color: var(--muted);
  background: var(--white);
}

.footer-brand span,
.site-footer a {
  color: var(--ink);
  font-weight: 800;
}

.footer-brand p {
  max-width: 540px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: rgba(13,148,136,0.4);
  background: var(--mist);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-socials a:nth-child(2) svg {
  fill: none;
  stroke: currentColor;
}

.back-top {
  white-space: nowrap;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 18px 42px rgba(15, 118, 110, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  box-shadow: 0 24px 54px rgba(15, 118, 110, 0.38);
  transform: translateY(-3px);
}

.floating-whatsapp span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.floating-whatsapp strong {
  font-size: 0.92rem;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms ease;
}

.animations-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .process-grid,
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .hero,
  .split,
  .contact-section,
  .credentials,
  .intro {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual img {
    width: 100%;
    max-height: 680px;
  }

  .metrics,
  .work-grid,
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    border-radius: var(--radius);
    text-align: center;
  }

  .metrics,
  .work-grid,
  .process-grid,
  .service-list,
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .metrics article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics article:last-child {
    border-bottom: 0;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-visual {
    display: none;
  }

  .mobile-hero-photo {
    display: grid;
    gap: 12px;
    margin: 26px 0 4px;
  }

  .mobile-hero-photo img {
    width: 100%;
    max-height: 420px;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: var(--radius);
    object-fit: cover;
    object-position: center 18%;
    box-shadow: 0 22px 52px rgba(23, 25, 31, 0.14);
  }

  .mobile-hero-photo span {
    padding: 12px 14px;
    border-left: 3px solid var(--teal);
    color: var(--muted);
    background: rgba(255, 255, 255, 0.78);
    font-weight: 700;
  }

  .availability,
  .visual-note {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .work-card,
  .service-item,
  .skill-block,
  .process-card {
    min-height: auto;
  }

  .floating-whatsapp {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding-bottom: 28px;
  }
}

@media (max-width: 520px) {
  .brand {
    max-width: calc(100% - 62px);
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding-top: 54px;
  }

  .eyebrow {
    max-width: 330px;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  h1 {
    max-width: 390px;
    font-size: clamp(2.35rem, 11.4vw, 3.15rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    line-height: 1.08;
  }

  .hero-text {
    font-size: 1.02rem;
  }

  .hero-proof {
    gap: 10px;
  }

  .hero-proof span {
    flex: 1 1 145px;
  }

}

/* Skills section kicker override — white for dark background */
.skills-section .section-kicker {
  color: var(--white);
}

/* ============================================================
   CV DOWNLOAD BUTTON UPGRADE
   ============================================================ */
.cv-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cv-button svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================================
   ANIMATED SKILL BARS
   ============================================================ */
.skill-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.skill-bar-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.skill-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.skill-pct {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.78rem;
}

.skill-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(15, 118, 110, 0.12);
  border-radius: 99px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), #22d3c8);
  border-radius: 99px;
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.skill-bar-fill.animated {
  /* width is set via JS */
}

/* ============================================================
   TOOLS GRID
   ============================================================ */
.tools-section {
  background: var(--sand-soft);
  border-radius: 16px;
  margin: 0 clamp(12px, 3vw, 40px);
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 64px);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--line);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(23, 25, 31, 0.1);
}

.tool-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px;
}

.tool-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

/* fallback if icon fails to load */
.tool-icon img[src=""] {
  display: none;
}

.tool-icon svg { width: 22px; height: 22px; }

.tool-icon--green  { background: rgba(77, 124, 72, 0.12);  color: var(--green); }
.tool-icon--blue   { background: rgba(49, 90, 140, 0.12);  color: var(--blue); }
.tool-icon--teal   { background: rgba(15, 118, 110, 0.12); color: var(--teal); }
.tool-icon--coral  { background: rgba(217, 93, 72, 0.12);  color: var(--coral); }
.tool-icon--purple { background: rgba(109, 40, 217, 0.12); color: #6d28d9; }
.tool-icon--pink   { background: rgba(219, 39, 119, 0.12); color: #db2777; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  padding: clamp(48px, 7vw, 96px) clamp(18px, 4vw, 58px);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--teal);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(23, 25, 31, 0.09);
}

.testimonial-stars {
  color: #f5a623;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #22d3c8);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.testimonial-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}


/* ── HERO SECONDARY LINE ────────────────────────────────────── */
.hero-secondary {
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
  margin-top: -8px;
  margin-bottom: 20px;
}

/* ── LINKEDIN CTA SECTION ───────────────────────────────────── */
.linkedin-cta-section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin: 0 clamp(18px, 4vw, 58px);
}

.linkedin-cta-inner {
  max-width: 560px;
  padding: clamp(40px, 6vw, 64px) clamp(28px, 5vw, 56px);
}

.linkedin-cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 8px 0 14px;
}

.linkedin-cta-inner p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* ── ABOUT LINKEDIN LINK ────────────────────────────────────── */
.linkedin-rec-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  transition: gap 180ms ease;
}
.linkedin-rec-link:hover { gap: 10px; }

/* ================================================================
   PREMIUM 2025 ADDITIONS
   ================================================================ */

/* Gradient text on h1 - Merriweather Black, warm editorial */
h1 {
  background: linear-gradient(150deg, var(--ink) 0%, var(--ink-soft) 55%, var(--bronze) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero floating particles */
@keyframes particle-float {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0.5; }
  33%  { transform: translateY(-28px) translateX(12px) scale(1.1); opacity: 0.8; }
  66%  { transform: translateY(-14px) translateX(-8px) scale(0.9); opacity: 0.6; }
  100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.5; }
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particle-float linear infinite;
}

/* Shimmer on brand mark */
@keyframes brand-shimmer {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13,148,136,0); }
  50% { box-shadow: 0 0 0 6px rgba(13,148,136,0.12); }
}
.brand-mark {
  animation: brand-shimmer 3s ease-in-out infinite;
}

/* Section kicker — gradient underline */
.section-kicker::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 4px;
  background: linear-gradient(90deg, var(--teal), var(--bronze));
  border-radius: 2px;
}

/* Work card — premium hover glow */
.work-card {
  transition: transform 250ms cubic-bezier(0.22,1,0.36,1),
              box-shadow 250ms cubic-bezier(0.22,1,0.36,1),
              border-color 250ms ease;
}
.work-card:hover {
  box-shadow: 0 24px 60px rgba(11,13,20,0.13), 0 0 0 1px rgba(13,148,136,0.2);
}

/* Service items — hover accent line */
.service-item {
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(11,13,20,0.09);
}

/* Skill bar gradient */
.skill-bar-fill {
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
}

/* Studying badge new color */
.studying-badge {
  background: rgba(13,148,136,0.1);
  color: var(--teal);
}
.studying-badge::before {
  background: var(--teal);
}

/* Contact section kicker/p override */
.contact-section .section-kicker {
  color: rgba(255,255,255,0.55);
}
.contact-section .section-kicker::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.5), transparent);
}
.contact-section p { color: rgba(255,255,255,0.7); }
.contact-section h2 {
  background: linear-gradient(135deg, #ffffff, rgba(255,255,255,0.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Tool icon hover */
.tool-card:hover {
  border-color: rgba(13,148,136,0.3);
  box-shadow: 0 12px 30px rgba(13,148,136,0.1);
}

/* Nav active state — new teal */
.site-nav a.nav-active { color: var(--teal); }
.site-nav a.nav-active::after { background: var(--teal); }

/* Skills section kicker white on dark */
.skills-section .section-kicker { color: var(--white); }

/* Hero proof left border new teal */
.hero-proof span { border-left-color: var(--teal); }
.proof-icon { color: var(--teal); }

/* Testimonial card polish */
.testimonial-card::before { color: var(--teal); opacity: 0.2; }
.testimonial-card:hover {
  border-color: rgba(13,148,136,0.25);
  box-shadow: 0 18px 48px rgba(11,13,20,0.10);
}

/* Timeline accent */
.timeline-item::before { background: var(--teal); }

/* Tools section bg */
.tools-section { background: var(--sand-soft); border-radius: 20px; }

/* LinkedIn CTA section */
.linkedin-cta-section { border-color: var(--line); }
.linkedin-rec-link { color: var(--teal); }

/* Nav active bottom bar */
.site-nav a.nav-active::after { background: var(--teal); }

/* Pulsing availability dot */
@keyframes availability-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}


/* ── TESTIMONIALS FOOTER LINK ───────────────────────────────── */
.testimonials-footer {
  margin-top: 32px;
  text-align: center;
}
.testimonials-footer .linkedin-rec-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  padding: 10px 20px;
  border: 1.5px solid rgba(13,148,136,0.25);
  border-radius: 999px;
  transition: background 180ms ease, gap 180ms ease;
}
.testimonials-footer .linkedin-rec-link:hover {
  background: rgba(13,148,136,0.06);
  gap: 10px;
}

/* ── HERO PHOTO OBJECT POSITION (suit photo) ────────────────── */
.hero-visual img {
  object-position: center top;
}

/* ── HERO SECTION ANIMATED BACKGROUND ──────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 10%, rgba(13,148,136,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(124,58,237,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero-copy, .hero-visual { position: relative; z-index: 1; }

/* ── WORK CARD COLOR BORDERS ────────────────────────────────── */
.work-card--seo  { border-top-color: var(--teal); }
.work-card--paid { border-top-color: var(--coral); }
.work-card--social { border-top-color: var(--green); }


/* ================================================================
   CINEMATIC EDITORIAL REBRAND — New Component Styles
   ================================================================ */

/* ── HERO META DOTS ─────────────────────────────────────────── */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.hero-meta-dot { color: var(--bronze); opacity: 0.6; }

/* Hero availability card — updated warm */
.availability {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--dark-surface);
  color: var(--white);
  border-radius: 10px;
  padding: 14px 18px;
  border: 1px solid rgba(184,145,74,0.2);
}
.availability strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bronze-mid);
  margin-bottom: 3px;
}
.availability span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ── METRICS — WARM EDITORIAL ───────────────────────────────── */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--sand);
}

.metrics article {
  padding: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 32px);
  border-right: 1px solid var(--line);
}
.metrics article:last-child { border-right: none; }

.metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1;
  font-family: "Merriweather", Georgia, serif;
  font-weight: 900;
}

.metrics span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 500;
}

/* ── NAV — WARM EDITORIAL ───────────────────────────────────── */
.site-nav a.nav-active { color: var(--bronze); }
.site-nav a.nav-active::after { background: var(--bronze); }
.site-nav a:hover { color: var(--ink); }

/* ── SECTION KICKER — BRONZE UNDERLINE ─────────────────────── */
.section-kicker::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  margin-top: 5px;
  background: var(--bronze);
  border-radius: 2px;
}

/* ── PROCESS CARD NUMBERS — BRONZE ─────────────────────────── */
.process-card span {
  color: var(--bronze) !important;
  background: rgba(184,145,74,0.08) !important;
  border-color: rgba(184,145,74,0.2) !important;
}

/* ── WORK CARD BORDERS — EDITORIAL COLORS ──────────────────── */
.work-card--seo  { border-top-color: var(--teal); }
.work-card--paid { border-top-color: var(--coral); }
.work-card--social { border-top-color: var(--bronze); }
.work-card:hover { box-shadow: 0 24px 60px rgba(19,16,13,0.12); }

.work-stat {
  background: rgba(184,145,74,0.06);
  border-left-color: var(--bronze);
}
.work-card--paid .work-stat { border-left-color: var(--coral); background: rgba(212,80,58,0.05); }
.work-card--social .work-stat { border-left-color: var(--green); background: rgba(58,122,90,0.05); }

/* ── TOOL CARDS — WARM ──────────────────────────────────────── */
.tool-card:hover {
  border-color: rgba(184,145,74,0.3);
  box-shadow: 0 12px 30px rgba(184,145,74,0.08);
}

/* ── SKILL BARS — TEAL (keep readable) ─────────────────────── */
.skill-bar-fill {
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
}
.skill-pct { color: var(--teal); }
.skills-section .section-kicker { color: var(--white); }
.skills-section .section-kicker::after { background: rgba(255,255,255,0.4); }

/* ── TOOLS SECTION BACKGROUND ───────────────────────────────── */
.tools-section { background: var(--sand); border-radius: 20px; }

/* ── STUDYING BADGE ─────────────────────────────────────────── */
.studying-badge { background: rgba(184,145,74,0.1); color: var(--bronze); }
.studying-badge::before { background: var(--bronze); }

/* ── FOOTER SOCIALS ─────────────────────────────────────────── */
.footer-socials a:hover {
  border-color: rgba(184,145,74,0.4);
  background: var(--sand);
  transform: translateY(-2px);
}

/* ── BRAND MARK ─────────────────────────────────────────────── */
.brand-mark {
  background: var(--ink);
  animation: none;
}

/* ── LINKEDIN REC LINK ──────────────────────────────────────── */
.linkedin-rec-link { color: var(--bronze); }
.linkedin-rec-link:hover { gap: 10px; }
.testimonials-footer .linkedin-rec-link {
  border-color: rgba(184,145,74,0.25);
}
.testimonials-footer .linkedin-rec-link:hover {
  background: rgba(184,145,74,0.06);
  gap: 10px;
}

/* ── CONTACT SECTION OVERRIDES ──────────────────────────────── */
.contact-section .section-kicker { color: rgba(255,255,255,0.5); }
.contact-section .section-kicker::after { background: rgba(184,145,74,0.5); }
.contact-section h2 {
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-section p { color: rgba(255,255,255,0.65); }

/* ── HERO PROOF — REMOVE (using meta instead) ───────────────── */
.hero-proof { display: none; }
.hero-secondary { display: none; }

/* ── HERO BACKGROUND OVERLAY ────────────────────────────────── */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 10%, rgba(184,145,74,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(13,122,112,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero-copy, .hero-visual { position: relative; z-index: 1; }

/* ================================================================
   EDITORIAL PULL QUOTES — Testimonials
   ================================================================ */
.testimonials-editorial {
  padding: clamp(64px, 8vw, 100px) clamp(18px, 4vw, 58px);
  background: var(--dark-surface);
  color: var(--white);
}

.testimonials-editorial .section-heading { margin-bottom: clamp(48px, 6vw, 72px); }

.testimonials-editorial .section-kicker {
  color: var(--bronze-mid);
}
.testimonials-editorial .section-kicker::after {
  background: var(--bronze);
}
.testimonials-editorial h2 {
  background: linear-gradient(135deg, var(--white), rgba(255,255,255,0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quotes-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}

.pull-quote {
  position: relative;
  padding: clamp(36px, 5vw, 56px) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0;
}
.pull-quote:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.08); }

.pull-quote--right {
  padding-left: clamp(32px, 6vw, 80px);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.pull-quote__mark {
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  color: var(--bronze);
  opacity: 0.25;
  line-height: 0.7;
  margin-bottom: 16px;
  user-select: none;
}

.pull-quote__text {
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin: 0 0 28px;
  max-width: 700px;
}

.pull-quote__credit {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pull-quote__dash {
  font-size: 1.2rem;
  color: var(--bronze);
  font-weight: 700;
}

.pull-quote__credit strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
}

.pull-quote__credit span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-family: "Source Sans 3", sans-serif;
  font-style: normal;
}

.testimonials-footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── ABOUT SECTION — WARM EDITORIAL ─────────────────────────── */
.intro { background: var(--sand-soft); }
.intro h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }

/* ── TIMELINE ACCENT ────────────────────────────────────────── */
.timeline-item::before { background: var(--bronze); }
.timeline-item span { color: var(--bronze); }

/* ================================================================
   REVEAL ANIMATIONS — Smoother, Cinematic
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .pull-quote--right { padding-left: 0; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metrics article { border-bottom: 1px solid var(--line); }
  .testimonials-editorial { padding: 48px 20px; }
}

