:root {
  --surface: #ffffff;
  --surface-soft: #f6f6f3;
  --surface-alt: #eef0e7;
  --text: #131313;
  --muted: #6a6c69;
  --line: #d8d8d1;
  --accent: #b8ec4f;
  --accent-deep: #95cf22;
  --shadow-soft: 0 24px 70px rgba(16, 16, 16, 0.08);
  --shadow-hover: 0 26px 60px rgba(16, 16, 16, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: var(--text);
}

::selection {
  background: rgba(184, 236, 79, 0.55);
  color: #111111;
}

.page-shell {
  position: relative;
}

.page-shell::before {
  content: none;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 246, 243, 0.9));
  border: 1px solid rgba(216, 216, 209, 0.95);
  border-radius: 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.landing-screen {
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
  min-height: calc(100vh - 85px);
}

.landing-simple {
  display: grid;
  width: 100%;
  gap: 1.5rem;
  align-content: start;
}

.landing-top {
  display: grid;
  align-items: start;
  gap: 2.5rem;
}

.simple-panel {
  max-width: 31rem;
}

.simple-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.simple-name {
  margin-top: 0.75rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(3rem, 5vw, 5.1rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #111111;
}

.simple-headline {
  margin-top: 1.2rem;
  max-width: 30rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: #5f615f;
}

.simple-side-title {
  margin-top: 0.75rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.85rem, 2.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #111111;
}

.simple-copy {
  margin-top: 1.25rem;
  max-width: 31rem;
  font-size: 0.98rem;
  line-height: 1.85;
  color: #232323;
}

.simple-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.9rem;
}

.simple-list-item {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(216, 216, 209, 0.9);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.5;
  color: #1b1b1b;
}

.simple-bottom {
  border-top: 1px solid rgba(216, 216, 209, 0.9);
  padding-top: 1.25rem;
}

.simple-summary {
  max-width: 78rem;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #1f1f1f;
}

.simple-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
}

.simple-meta-item {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--muted);
  transition: color 180ms ease;
}

.simple-meta-item:hover {
  color: #111111;
}

.landing-shell {
  display: grid;
  width: 100%;
  gap: 1rem;
}

.metric-card {
  border: 1px solid rgba(216, 216, 209, 0.95);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  padding: 1.15rem 1.15rem 1rem;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.04);
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(216, 216, 209, 0.95);
  background: rgba(255, 255, 255, 0.84);
  padding: 0.8rem 1.05rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  color: #3a3a38;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.tag-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 17, 0.2);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
}

.tag-pill--compact {
  padding: 0.7rem 0.9rem;
  font-size: 0.78rem;
}

.tag-pill--micro {
  padding: 0.55rem 0.8rem;
  font-size: 0.74rem;
  font-weight: 700;
}

.cta-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 999px;
  padding: 0.4rem 0.4rem 0.4rem 1.25rem;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cta-button {
  background: #222222;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.16);
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #111111;
  box-shadow: 0 20px 38px rgba(17, 17, 17, 0.22);
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #111111;
  font-size: 1rem;
  font-weight: 800;
}

.secondary-button {
  padding: 0.95rem 1.35rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: #1c1c1c;
}

.secondary-button:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 17, 0.3);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
}

.secondary-button--light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #1b1b1b;
}

.hero-grid {
  display: grid;
}

.hero-portrait-wrap {
  align-self: center;
}

.hero-portrait-card {
  background: linear-gradient(180deg, rgba(246, 246, 243, 0.92), rgba(250, 250, 246, 0.85));
  transition: none;
}

.hero-portrait-card:hover {
  transform: none;
  box-shadow: var(--shadow-soft);
}

.portrait-backdrop {
  aspect-ratio: 1 / 1.16;
  min-height: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.portrait-image {
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.94) contrast(1.02);
}

.overview-grid {
  display: grid;
  gap: 1rem;
}

.overview-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(216, 216, 209, 0.95);
  border-radius: 1.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 247, 243, 0.94));
  padding: 1.15rem 1.15rem 1.1rem;
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.05);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 17, 17, 0.12);
  box-shadow: var(--shadow-hover);
}

.overview-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(184, 236, 79, 0.16);
  border: 1px solid rgba(149, 207, 34, 0.16);
  padding: 0.5rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #222222;
}

.overview-role + .overview-role {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(216, 216, 209, 0.9);
}

.overview-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(216, 216, 209, 0.86);
  padding: 0.7rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #2e2e2c;
  transition: border-color 180ms ease, transform 180ms ease;
}

.overview-contact-row span:first-child {
  color: rgba(17, 17, 17, 0.56);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.67rem;
}

.overview-contact-row:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 17, 17, 0.14);
}

.image-showcase {
  position: relative;
}

.project-showcase-image {
  display: block;
  width: 100%;
  min-height: 515px;
  object-fit: contain;
  object-position: top;
  background: #ffffff;
  padding: 0.75rem;
}

.image-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.process-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.4rem 1.5rem;
}

.process-number {
  font-family: "Manrope", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(17, 17, 17, 0.7);
}

.project-grid-card {
  height: 100%;
  border: 1px solid rgba(216, 216, 209, 0.95);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 247, 243, 0.92));
  padding: 1.2rem;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.project-grid-card:hover,
.experience-card:hover,
.contact-card:hover,
.section-card:hover {
  transform: translateY(-4px);
}

.hero-portrait-card.section-card:hover {
  transform: none;
  box-shadow: var(--shadow-soft);
}

.project-grid-card:hover,
.experience-card:hover,
.contact-card:hover {
  border-color: rgba(17, 17, 17, 0.12);
  box-shadow: var(--shadow-hover);
}

.experience-card {
  position: relative;
  border: 1px solid rgba(216, 216, 209, 0.95);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.86);
  padding: 1.6rem;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.experience-marker {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(184, 236, 79, 0.22);
  margin-bottom: 1.35rem;
}

.contact-shell {
  background:
    linear-gradient(135deg, rgba(184, 236, 79, 0.68), rgba(184, 236, 79, 0.38) 26%, rgba(255, 255, 255, 0.86) 61%),
    linear-gradient(180deg, rgba(250, 250, 245, 0.95), rgba(239, 242, 230, 0.9));
  box-shadow: var(--shadow-soft);
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(216, 216, 209, 0.9);
  background: rgba(255, 255, 255, 0.86);
  padding: 1rem 1.15rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-label {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.56);
}

.contact-value {
  text-align: right;
  font-size: 0.96rem;
  font-weight: 700;
  color: #111111;
}

.mobile-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 240ms ease, opacity 220ms ease;
}

.mobile-menu.is-open {
  max-height: 520px;
  opacity: 1;
}

.menu-line,
.menu-line::before,
.menu-line::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111111;
  transition: transform 180ms ease, opacity 180ms ease;
  content: "";
}

.menu-line {
  position: relative;
}

.menu-line::before {
  position: absolute;
  top: -6px;
}

.menu-line::after {
  position: absolute;
  top: 6px;
}

#mobile-menu-button.is-open .menu-line {
  background: transparent;
}

#mobile-menu-button.is-open .menu-line::before {
  top: 0;
  transform: rotate(45deg);
}

#mobile-menu-button.is-open .menu-line::after {
  top: 0;
  transform: rotate(-45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (min-width: 1024px) {
  .landing-simple {
    grid-template-rows: auto auto;
  }

  .landing-top {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr) minmax(360px, 1.08fr);
  }

  #expertise.simple-panel {
    max-width: 36rem;
  }

  .simple-side-title {
    white-space: nowrap;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr) minmax(300px, 0.9fr);
  }

  .landing-screen .metric-card {
    padding: 0.95rem 0.95rem 0.9rem;
  }

  .overview-grid {
    grid-template-columns: 1.15fr 1.15fr 0.95fr 0.95fr 1.05fr;
    align-items: stretch;
  }

  .overview-card--about {
    grid-column: span 2;
  }
}

@media (max-width: 1023.98px) {
  .landing-screen {
    padding-bottom: 2.5rem;
    min-height: auto;
  }

  .landing-top {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .simple-panel {
    max-width: none;
  }

  .landing-shell {
    gap: 1.5rem;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .overview-card--about {
    grid-column: 1 / -1;
  }

  .project-showcase-image {
    min-height: 420px;
  }
}

@media (max-width: 767.98px) {
  .section-card,
  .project-grid-card,
  .experience-card,
  .contact-shell {
    border-radius: 1.6rem;
  }

  .process-item {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 1.2rem 1rem;
  }

  .process-number {
    font-size: 1.9rem;
  }

  .simple-name {
    font-size: 2.6rem;
  }

  .simple-side-title {
    font-size: 1.9rem;
  }

  .simple-headline,
  .simple-copy,
  .simple-summary {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .project-showcase-image {
    min-height: 0;
    height: auto;
    padding: 0.7rem;
  }

  .overview-card--about {
    grid-column: auto;
  }

  .overview-contact-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-value {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
