:root {
  --lp-ink: #151313;
  --lp-muted: #6f625e;
  --lp-soft: #fff8f4;
  --lp-line: #eaded8;
  --lp-accent: #d95b48;
  --lp-accent-2: #8b6b62;
  --lp-blue-gray: #5c6f91;
  --lp-container: 1180px;
  --lp-radius-xl: 34px;
  --lp-radius-lg: 26px;
  --lp-radius-md: 18px;
  --lp-shadow-soft: 0 18px 48px rgba(44, 33, 28, 0.055);
  --lp-shadow-card: 0 14px 34px rgba(44, 33, 28, 0.055);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--lp-ink);
  background: #fbfaf8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

img {
  max-width: 100%;
  height: auto;
}

.lp-container {
  width: min(100% - 48px, var(--lp-container));
  margin: 0 auto;
}

.lp-section {
  margin: 28px auto;
  padding: 34px;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-xl);
  box-shadow: var(--lp-shadow-soft);
}

.lp-section--cream {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(135deg, #fffaf4 0%, #fff2e5 54%, #fffdf8 100%);
}

.lp-section--mint {
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(135deg, #f5fff8 0%, #e4f6ee 55%, #fbfffc 100%);
}

.lp-section--blue {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.74), transparent 36%),
    linear-gradient(135deg, #f5faff 0%, #e4f0fb 56%, #fbfdff 100%);
}

.lp-section--lavender {
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(135deg, #fbf8ff 0%, #eee5ff 56%, #fffafd 100%);
}

.lp-section--peach {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(135deg, #fff8f4 0%, #ffe7de 56%, #fffdf9 100%);
}

.lp-eyebrow {
  margin: 0 0 12px;
  color: var(--lp-accent-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-heading {
  margin: 0;
  color: var(--lp-ink);
  font-size: clamp(34px, 4.3vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.lp-section-title {
  margin: 0;
  color: var(--lp-ink);
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.lp-section-intro {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--lp-muted);
  font-size: 16px;
}

.lp-button,
.vc_btn3.lp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 13px 20px;
  border: 1px solid var(--lp-ink);
  border-radius: 999px;
  background: var(--lp-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.lp-button:hover,
.vc_btn3.lp-button:hover {
  transform: translateY(-3px);
  background: var(--lp-accent);
  border-color: var(--lp-accent);
  color: #fff;
  box-shadow: 0 16px 34px rgba(217, 91, 72, 0.25);
}

.lp-button--secondary {
  background: transparent;
  color: var(--lp-ink);
}

/* Header */
.lp-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background:
    radial-gradient(circle at 78% 50%, rgba(205, 218, 241, 0.34), transparent 32%),
    linear-gradient(115deg, #f7f9fc 0%, #eef3f8 52%, #e8eef5 100%);
  border-bottom: 1px solid rgba(177, 190, 207, 0.52);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.70) inset, 0 10px 26px rgba(31, 45, 85, 0.035);
}

.lp-nav {
  width: min(100% - 48px, var(--lp-container));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.lp-brand {
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.lp-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lp-menu a {
  color: #554b47;
  font-size: 13px;
  font-weight: 750;
}

.lp-menu a:hover {
  color: var(--lp-accent);
}

.lp-header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  color: var(--lp-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.lp-header-contact span {
  color: var(--lp-accent-2);
  font-weight: 650;
}

/* Hero */
.lp-hero {
  padding: 0 0 28px;
}

.lp-hero-shell {
  display: grid;
  grid-template-columns: minmax(500px, 1fr) minmax(460px, 1fr);
  gap: 38px;
  min-height: 620px;
  padding: 34px clamp(42px, 5vw, 92px) 0;
  align-items: end;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 82% 22%, rgba(223, 228, 236, 0.38) 0%, rgba(223, 228, 236, 0) 28%),
    radial-gradient(circle at 10% 90%, rgba(217, 91, 72, 0.05) 0%, rgba(217, 91, 72, 0) 24%),
    linear-gradient(115deg, #fcfcfd 0%, #f6f7f9 48%, #eef1f4 100%);
  border: 1px solid rgba(190, 200, 214, 0.58);
  border-radius: 0 0 34px 34px;
}

.lp-hero-copy {
  align-self: center;
  max-width: 575px;
  padding-bottom: 42px;
  position: relative;
  z-index: 2;
}

.lp-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(58px, 5.8vw, 86px);
  line-height: 0.93;
  letter-spacing: -0.08em;
}

.lp-hero h1 span {
  font-weight: 400;
}

.lp-hero h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.05vw, 31px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.lp-hero p {
  max-width: 530px;
  margin: 0;
  color: var(--lp-muted);
  font-size: 16.5px;
  line-height: 1.58;
}

.lp-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.lp-proof-list li {
  font-size: 14px;
  font-weight: 650;
}

.lp-proof-list li::before {
  content: "○";
  margin-right: 9px;
  color: var(--lp-accent);
}

.lp-hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.lp-portrait-wrap {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.lp-portrait-wrap::before {
  content: "";
  position: absolute;
  width: min(610px, 48vw);
  height: min(610px, 48vw);
  left: 52%;
  top: 42px;
  transform: translateX(-50%);
  border-radius: 34% 66% 58% 42% / 45% 38% 62% 55%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 72% 74%, rgba(88, 114, 168, 0.16), rgba(88, 114, 168, 0) 34%),
    linear-gradient(135deg, rgba(231, 238, 248, 0.98) 0%, rgba(204, 216, 236, 0.92) 34%, rgba(181, 198, 226, 0.86) 68%, rgba(225, 233, 245, 0.82) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.60), 0 26px 72px rgba(48, 69, 110, 0.10);
  animation: lpHeroMorph 7s ease-in-out infinite alternate;
  z-index: 0;
}

.lp-portrait-card {
  width: min(455px, 36vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transform: translateX(-34px);
}

.lp-portrait-card img {
  width: 100%;
  height: 620px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter: drop-shadow(0 24px 30px rgba(24, 34, 70, 0.16));
}

.lp-script-words {
  position: absolute;
  right: -140px;
  top: 128px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: rotate(-4deg);
  pointer-events: none;
}

.lp-script-words span {
  font-family: "Italianno", "Monsieur La Doulaise", "Sacramento", "Allura", cursive;
  font-size: clamp(50px, 4.25vw, 80px);
  line-height: 0.76;
  opacity: 0.84;
}

.lp-script-words span:nth-child(1) {
  color: rgba(67, 92, 138, 0.82);
}

.lp-script-words span:nth-child(2) {
  margin-left: 28px;
  color: rgba(171, 110, 90, 0.80);
}

.lp-script-words span:nth-child(3) {
  margin-left: 66px;
  color: rgba(103, 122, 160, 0.76);
}

@keyframes lpHeroMorph {
  0% {
    border-radius: 34% 66% 58% 42% / 45% 38% 62% 55%;
    transform: translateX(-50%) rotate(0deg) scale(1);
  }

  50% {
    border-radius: 62% 38% 44% 56% / 50% 64% 36% 50%;
    transform: translateX(-50%) rotate(4deg) scale(1.035);
  }

  100% {
    border-radius: 42% 58% 36% 64% / 56% 35% 65% 44%;
    transform: translateX(-50%) rotate(-2deg) scale(1.045);
  }
}

/* Stats */
.lp-stats-section {
  width: min(100% - 48px, var(--lp-container));
  margin: 28px auto 36px;
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.lp-stat {
  position: relative;
  overflow: hidden;
  min-height: 86px;
  padding: 16px 16px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 12px 26px rgba(66, 56, 44, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.lp-stat strong {
  display: block;
  color: #141212;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.lp-stat span {
  display: block;
  margin-top: 6px;
  color: #5e5752;
  font-size: 11.5px;
  font-weight: 650;
  line-height: 1.25;
}

.lp-stat::before {
  content: "";
  position: absolute;
  right: -22px;
  top: 10px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  opacity: 0.52;
}

.lp-stat:nth-child(1) {
  background: radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 34%), linear-gradient(135deg, #e2f6df 0%, #cfeec8 100%);
  border-color: rgba(188, 220, 187, 0.95);
}

.lp-stat:nth-child(2) {
  background: radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0) 34%), linear-gradient(135deg, #ffe680 0%, #f7c83b 100%);
  border-color: rgba(234, 198, 98, 0.96);
}

.lp-stat:nth-child(3) {
  background: radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0) 34%), linear-gradient(135deg, #eee3ff 0%, #dcd0f7 100%);
  border-color: rgba(210, 193, 237, 0.96);
}

.lp-stat:nth-child(4) {
  background: radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0) 34%), linear-gradient(135deg, #ffe2da 0%, #f8bfb1 100%);
  border-color: rgba(238, 190, 178, 0.96);
}

.lp-stat:nth-child(5) {
  background: radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0) 34%), linear-gradient(135deg, #dff2ff 0%, #bedff5 100%);
  border-color: rgba(185, 217, 235, 0.96);
}

.lp-stat:nth-child(6) {
  background: radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0) 34%), linear-gradient(135deg, #ffe4f1 0%, #f6c1da 100%);
  border-color: rgba(236, 194, 215, 0.96);
}

/* Cards and grids */
.lp-grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

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

.lp-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(234, 222, 216, 0.72);
  border-radius: var(--lp-radius-lg);
  box-shadow: 0 10px 28px rgba(44, 33, 28, 0.035);
}

.lp-info-panel {
  padding: 26px;
}

/* Skill cards */
.lp-skill-card {
  position: relative;
  min-height: 170px;
  padding: 24px;
  overflow: hidden;
}

.lp-skill-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-accent);
  border: 1px solid rgba(234, 222, 216, 0.88);
  border-radius: 15px;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 45%), linear-gradient(135deg, rgba(217, 91, 72, 0.13), rgba(92, 111, 145, 0.12));
  box-shadow: 0 10px 24px rgba(44, 33, 28, 0.055);
}

.lp-skill-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-skill-card h3,
.lp-category-card h3,
.lp-project-card h3 {
  margin: 0 0 12px;
  color: var(--lp-ink);
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.lp-skill-card p,
.lp-category-card p,
.lp-project-card p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 14px;
}

/* Project categories */
.lp-category-card {
  min-height: 175px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.lp-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 91, 72, 0.45);
  box-shadow: 0 18px 42px rgba(44, 33, 28, 0.12);
}

.lp-category-index {
  display: block;
  margin-bottom: 42px;
  color: var(--lp-accent-2);
  font-size: 12px;
  font-weight: 900;
}

.lp-category-arrow {
  position: absolute;
  right: 22px;
  top: 20px;
  font-size: 22px;
}

/* Project cards */
.lp-project-card {
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.lp-project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 91, 72, 0.42);
  box-shadow: 0 24px 54px rgba(44, 33, 28, 0.12);
}

.lp-project-card img {
  width: 100%;
  height: 156px;
  object-fit: cover;
  display: block;
}

.lp-project-card-body {
  min-height: 188px;
  padding: 18px;
  display: grid;
  grid-template-rows: 18px 50px 1fr 34px 20px;
  row-gap: 6px;
}

.lp-project-type {
  color: var(--lp-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-project-result {
  color: var(--lp-ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

/* Logos */
.lp-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px 22px;
}

.lp-logo-cell {
  height: 72px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(234, 222, 216, 0.70);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(44, 33, 28, 0.035);
}

.lp-logo-cell img {
  width: 100%;
  max-width: 130px;
  height: 42px;
  object-fit: contain;
}

/* Education */
.lp-education-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.lp-education-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
}

.lp-education-item img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.lp-education-item h3 {
  margin: 0 0 4px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.lp-education-item p {
  margin: 0;
  color: var(--lp-muted);
}

/* Testimonials */
.lp-testimonial {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 34px;
  align-items: center;
}

.lp-quote {
  margin: 0;
  color: var(--lp-ink);
  font-size: 28px;
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.lp-testimonial-author {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
}

.lp-testimonial-author img {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  object-fit: cover;
}

/* All projects */
.lp-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.lp-filter-button {
  border: 1px solid rgba(234, 222, 216, 0.92);
  background: rgba(255, 255, 255, 0.78);
  color: #554b47;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.lp-filter-button:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 91, 72, 0.44);
  box-shadow: 0 14px 30px rgba(44, 33, 28, 0.08);
}

.lp-filter-button.is-active {
  background: var(--lp-ink);
  color: #fff;
  border-color: var(--lp-ink);
}

.lp-all-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.lp-filter-card.is-hidden {
  display: none;
}

/* Project detail */
.lp-project-hero {
  padding: 42px 0 30px;
}

.lp-back-link {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--lp-muted);
  font-size: 14px;
  font-weight: 650;
}

.lp-project-hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.lp-project-hero h1 {
  margin: 12px 0;
  font-size: clamp(48px, 5.6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.lp-project-hero .lp-lead {
  max-width: 520px;
  color: var(--lp-muted);
  font-size: 18px;
}

.lp-tag {
  display: inline-block;
  color: var(--lp-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-project-visual img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  border: 1px solid var(--lp-line);
  border-radius: 24px;
}

.lp-info-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 44px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 22px;
}

.lp-info-item {
  padding: 26px;
  border-right: 1px solid var(--lp-line);
}

.lp-info-item:last-child {
  border-right: 0;
}

.lp-info-item b {
  display: block;
  color: var(--lp-accent-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lp-info-item span {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 750;
}

.lp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.lp-process-step {
  padding: 24px;
}

.lp-process-step span {
  color: var(--lp-accent);
  font-size: 13px;
  font-weight: 900;
}

.lp-cta-banner {
  margin-top: 42px;
  margin-bottom: 30px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(135deg, #fff8f4 0%, #ffe7de 56%, #fffdf9 100%);
  border: 1px solid rgba(235, 205, 194, 0.84);
  border-radius: var(--lp-radius-xl);
  box-shadow: var(--lp-shadow-soft);
}

/* Footer */
.lp-site-footer {
  width: min(100% - 48px, var(--lp-container));
  margin: 0 auto;
  padding: 32px 0 54px;
  color: #6e6762;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.lp-featured-more { margin-top: 32px; text-align: center; }

.lp-all-project-list-section {
  margin-top: 24px;
}


/* Editable Header/Footer built with WPBakery layout blocks */
.lp-header-editable {
  width: 100%;
}

.lp-footer-editable {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.lp-site-footer {
  display: block;
}


/* Header template refinement matching index-figma-ready.html */
.lp-brand {
  color: #151313;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-menu a {
  color: #151313;
}

/* Hero banner full-width and borderless like index-figma-ready.html */
.lp-hero {
  padding: 0 0 28px;
}

.lp-hero > .lp-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.lp-hero-shell {
  border: 0;
  border-radius: 0;
}


/* Homepage About Me section */
.lp-about-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: stretch;
}

.lp-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.lp-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--lp-line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 9px 14px;
  color: #554b47;
  font-size: 12px;
  font-weight: 650;
}

.lp-about-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lp-about-panel p {
  color: var(--lp-muted);
}

.lp-about-facts {
  display: grid;
  gap: 18px;
  margin: 22px 0 0;
}

.lp-about-facts div {
  padding-top: 16px;
  border-top: 1px solid rgba(234, 222, 216, 0.86);
}

.lp-about-facts dt {
  color: var(--lp-accent-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-about-facts dd {
  margin: 4px 0 0;
  color: var(--lp-ink);
  font-weight: 750;
}

.lp-experience-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.lp-experience-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 26px;
  padding: 22px 24px;
  align-items: start;
}

.lp-experience-row span {
  color: var(--lp-muted);
  font-size: 13px;
  font-weight: 750;
}

.lp-experience-row h3 {
  margin: 0 0 8px;
  color: var(--lp-ink);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.lp-experience-row p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 14px;
}


/* About Me section — matched to index-figma-ready.html */
.lp-about-index-section {
  margin-top: 28px;
  margin-bottom: 28px;
  padding: clamp(38px, 4.8vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(225, 211, 230, 0.92);
  border-radius: 34px;
  background:
    radial-gradient(circle at 7% 8%, rgba(216, 194, 255, 0.42), transparent 28%),
    radial-gradient(circle at 95% 6%, rgba(255, 218, 232, 0.44), transparent 30%),
    linear-gradient(135deg, #fffaf7 0%, #fbf3ff 48%, #f1e9ff 100%);
  box-shadow: 0 18px 48px rgba(44, 33, 28, 0.055);
}

.lp-about-index-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.42fr) minmax(300px, 0.58fr);
  gap: 34px;
  align-items: stretch;
}

.lp-about-index-copy {
  padding-right: 28px;
}

.lp-about-index-copy .lp-eyebrow {
  display: inline-block;
  margin-bottom: 26px;
  padding: 2px 4px;
  background: rgba(161, 187, 217, 0.72);
  color: #8b6b62;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  line-height: 1;
}

.lp-about-index-copy h2 {
  max-width: 830px;
  margin: 0;
  color: #151313;
  font-size: clamp(40px, 4vw, 66px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.lp-about-index-copy > p {
  max-width: 860px;
  margin: 30px 0 0;
  color: #6f625e;
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: -0.035em;
}

.lp-about-index-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 18px;
  max-width: 720px;
  margin-top: 48px;
}

.lp-about-index-chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid #eaded8;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.84);
  color: #5d514d;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.lp-about-index-card {
  min-height: 312px;
  padding: clamp(28px, 2.7vw, 44px);
  border: 1px solid #eaded8;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(44, 33, 28, 0.035);
}

.lp-about-index-card span {
  display: block;
  margin-bottom: 22px;
  color: #8b6b62;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lp-about-index-facts {
  display: grid;
  align-content: start;
  gap: 36px;
}

.lp-about-index-facts h3 {
  margin: 0 0 6px;
  color: #8b6b62;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lp-about-index-facts p {
  margin: 0;
  color: #151313;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.045em;
}

.lp-about-index-connect {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.lp-about-index-connect > p {
  margin: 18px 0 34px;
  color: #151313;
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.045em;
}

.lp-about-index-connect div {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.lp-about-index-connect a {
  color: #151313;
  font-size: clamp(20px, 1.6vw, 27px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.04em;
}


/* What I do best — matched to index-figma-ready.html */
.lp-skills-index-section {
  margin-top: 28px;
  margin-bottom: 28px;
  padding: clamp(38px, 4.8vw, 64px);
  overflow: hidden;
  border: 1px solid #eaded8;
  border-radius: 34px;
  background:
    radial-gradient(circle at 5% 8%, rgba(236, 231, 205, 0.38), transparent 26%),
    radial-gradient(circle at 95% 6%, rgba(243, 221, 211, 0.42), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #fffaf3 48%, #fff3eb 100%);
  box-shadow: 0 18px 48px rgba(44, 33, 28, 0.055);
}

.lp-skills-index-section .lp-eyebrow {
  margin-bottom: 26px;
  color: #8b6b62;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.22em;
}

.lp-skills-index-section > h2 {
  max-width: 980px;
  margin: 0;
  color: #151313;
  font-size: clamp(42px, 4.1vw, 68px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.lp-skills-index-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  margin-top: 52px;
}

.lp-skills-index-card {
  min-height: 360px;
  padding: 38px 36px 34px;
  border: 1px solid #eaded8;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 14px 34px rgba(44, 33, 28, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.lp-skills-index-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e75f4f;
  border: 1px solid rgba(226, 206, 214, 0.95);
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 44%),
    linear-gradient(135deg, rgba(246, 211, 209, 0.62), rgba(232, 222, 255, 0.62));
  box-shadow: 0 16px 34px rgba(44, 33, 28, 0.08);
}

.lp-skills-index-card:nth-child(2) .lp-skills-index-icon,
.lp-skills-index-card:nth-child(5) .lp-skills-index-icon {
  color: #8d67ff;
}

.lp-skills-index-card:nth-child(4) .lp-skills-index-icon {
  color: #f05d9f;
}

.lp-skills-index-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-skills-index-card h3 {
  min-height: 106px;
  margin: 0 0 22px;
  color: #151313;
  font-size: clamp(25px, 1.7vw, 34px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.lp-skills-index-card p {
  margin: 0;
  color: #6f625e;
  font-size: clamp(17px, 1.25vw, 23px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.035em;
}

/* WordPress scroll safety */
html, body { overflow-y: auto; }


/* Subpage header polish: restore divider and brand icon */
body:not(.home):not(.front-page) .lp-site-header {
  border-bottom: 1px solid var(--line);
}

body:not(.home):not(.front-page) .lp-header-editable,
body:not(.home):not(.front-page) .lp-nav {
  border-bottom: 0;
}

.lp-site-header .lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lp-site-header .lp-brand::before {
  content: "✦";
  display: inline-block;
  color: currentColor;
  font-size: .95em;
  line-height: 1;
}


/* Global header: use the homepage header style on every page */
.lan-global-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

.lan-global-header .nav,
body:not(.home):not(.front-page) .lan-global-header .nav {
  height: 76px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  background: rgba(255, 252, 248, .86);
  backdrop-filter: blur(16px);
}

.lan-global-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .03em;
  color: var(--ink);
}

.lan-global-header .brand::before {
  content: "✦";
  display: inline-block;
  color: currentColor;
  font-size: .95em;
  line-height: 1;
  margin-right: 0;
}

.lan-global-header .menu {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 650;
}

.lan-global-header .menu a {
  color: var(--ink);
  opacity: .78;
}

.lan-global-header .menu a:hover {
  color: var(--accent);
  opacity: 1;
}

.lan-global-header .header-contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

.lan-global-header .header-contact-info span {
  color: var(--accent-2);
  font-weight: 650;
}

@media (max-width: 900px) {
  .lan-global-header .nav,
  body:not(.home):not(.front-page) .lan-global-header .nav {
    height: auto;
    min-height: 76px;
    padding: 18px 24px;
    flex-wrap: wrap;
    gap: 14px;
  }

  .lan-global-header .menu {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  .lan-global-header .header-contact-info {
    align-items: flex-end;
  }
}

@media (max-width: 640px) {
  .lan-global-header .nav,
  body:not(.home):not(.front-page) .lan-global-header .nav {
    justify-content: center;
    text-align: center;
  }

  .lan-global-header .header-contact-info {
    width: 100%;
    align-items: center;
  }
}


/* Project category / All Projects listing polish */
.lp-section.lp-section--mint,
.lp-section.lp-section--mint.soft-mint,
.lan-project-archive .lp-section--mint,
[data-lp-filter-container] .lp-section--mint {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .70), transparent 34%),
    linear-gradient(135deg, #faf3eb 0%, #fff8f1 52%, #fffdf8 100%);
  border-color: rgba(232, 221, 214, .86);
}

.lp-filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.lp-filter-button {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(232, 221, 214, .95);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #5c514c;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(44, 33, 28, .035);
  cursor: pointer;
}

.lp-filter-button.is-active,
.lp-filter-button:hover,
.lp-filter-button[data-lp-active="true"] {
  background: var(--lp-ink);
  border-color: var(--lp-ink);
  color: #fff;
}

.lp-project-card-body {
  min-height: 214px;
  padding: 18px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  row-gap: 10px;
}

.lp-project-meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.lp-project-meta-row--top {
  min-height: 18px;
}

.lp-project-meta-row--bottom {
  align-items: end;
  margin-top: 4px;
}

.lp-project-type {
  min-width: 0;
  color: var(--lp-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-project-sector,
.lp-project-category-name {
  flex: 0 0 auto;
  max-width: 46%;
  color: var(--lp-accent-2);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-project-category-name {
  color: var(--lp-muted);
  letter-spacing: .02em;
}

.lp-project-summary {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.lp-project-result {
  color: var(--lp-ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
}

@media (max-width: 680px) {
  .lp-filter-bar {
    gap: 10px;
  }

  .lp-filter-button {
    min-height: 40px;
    padding: 0 16px;
  }

  .lp-project-meta-row {
    align-items: flex-start;
  }

  .lp-project-sector,
  .lp-project-category-name {
    max-width: 42%;
  }
}


/* All Projects card visual refinement */
.lp-all-project-grid .lp-project-card,
.lan-project-archive .lp-project-card,
[data-lp-filter-container] .lp-project-card {
  border-color: rgba(232, 221, 214, .95);
  border-radius: 26px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(44, 33, 28, .055);
}

.lp-all-project-grid .lp-project-card > a,
.lan-project-archive .lp-project-card > a,
[data-lp-filter-container] .lp-project-card > a {
  display: block;
  height: 100%;
}

.lp-all-project-grid .lp-project-card img,
.lan-project-archive .lp-project-card img,
[data-lp-filter-container] .lp-project-card img {
  width: 100%;
  height: 190px;
  max-height: 190px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.lp-all-project-grid .lp-project-card-body,
.lan-project-archive .lp-project-card-body,
[data-lp-filter-container] .lp-project-card-body {
  min-height: 272px;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-all-project-grid .lp-project-meta-row,
.lan-project-archive .lp-project-meta-row,
[data-lp-filter-container] .lp-project-meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}

.lp-all-project-grid .lp-project-meta-row--top,
.lan-project-archive .lp-project-meta-row--top,
[data-lp-filter-container] .lp-project-meta-row--top {
  margin: 0 0 13px;
}

.lp-all-project-grid .lp-project-type,
.lan-project-archive .lp-project-type,
[data-lp-filter-container] .lp-project-type {
  min-width: 0;
  color: #df5b49;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-all-project-grid .lp-project-sector,
.lan-project-archive .lp-project-sector,
[data-lp-filter-container] .lp-project-sector {
  flex: 0 0 auto;
  max-width: 42%;
  color: #96766e;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-all-project-grid .lp-project-card h3,
.lan-project-archive .lp-project-card h3,
[data-lp-filter-container] .lp-project-card h3 {
  margin: 0 0 28px;
  color: #11100f;
  font-size: 24px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -.055em;
}

.lp-all-project-grid .lp-project-summary,
.lan-project-archive .lp-project-summary,
[data-lp-filter-container] .lp-project-summary {
  margin: 0;
  color: #6f6560;
  font-size: 17px;
  line-height: 1.38;
  font-weight: 500;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.lp-all-project-grid .all-project-bottom,
.lan-project-archive .all-project-bottom,
[data-lp-filter-container] .all-project-bottom {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 221, 214, .88);
  align-items: flex-end;
}

.lp-all-project-grid .lp-project-result,
.lan-project-archive .lp-project-result,
[data-lp-filter-container] .lp-project-result {
  color: #11100f;
  font-size: 30px;
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.055em;
}

.lp-all-project-grid .lp-project-category-name,
.lan-project-archive .lp-project-category-name,
[data-lp-filter-container] .lp-project-category-name {
  max-width: 48%;
  color: #6f6560;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 680px) {
  .lp-all-project-grid .lp-project-card img,
  .lan-project-archive .lp-project-card img,
  [data-lp-filter-container] .lp-project-card img {
    height: 190px;
    max-height: 190px;
  }

  .lp-all-project-grid .lp-project-card-body,
  .lan-project-archive .lp-project-card-body,
  [data-lp-filter-container] .lp-project-card-body {
    min-height: 250px;
    padding: 20px;
  }

  .lp-all-project-grid .lp-project-card h3,
  .lan-project-archive .lp-project-card h3,
  [data-lp-filter-container] .lp-project-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .lp-all-project-grid .lp-project-summary,
  .lan-project-archive .lp-project-summary,
  [data-lp-filter-container] .lp-project-summary {
    font-size: 15px;
  }

  .lp-all-project-grid .lp-project-result,
  .lan-project-archive .lp-project-result,
  [data-lp-filter-container] .lp-project-result {
    font-size: 27px;
  }
}


/* All Projects card exact typography + hover refinement */
.lp-all-project-grid .all-project-card,
.lan-project-archive .all-project-card,
[data-lp-filter-container] .all-project-card {
  border-color: rgba(232, 221, 214, .95);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.lp-all-project-grid .all-project-card:hover,
.lan-project-archive .all-project-card:hover,
[data-lp-filter-container] .all-project-card:hover {
  border-color: var(--lp-accent, var(--accent));
  box-shadow: 0 24px 54px rgba(217, 91, 72, .16);
}

.lp-all-project-grid .all-project-card h3,
.lan-project-archive .all-project-card h3,
[data-lp-filter-container] .all-project-card h3 {
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -.045em;
  margin: 0 0 12px;
  font-weight: 900;
  color: var(--lp-ink, var(--ink));
}

.lp-all-project-grid .all-project-card .lp-project-type,
.lp-all-project-grid .all-project-card .lp-project-sector,
.lan-project-archive .all-project-card .lp-project-type,
.lan-project-archive .all-project-card .lp-project-sector,
[data-lp-filter-container] .all-project-card .lp-project-type,
[data-lp-filter-container] .all-project-card .lp-project-sector {
  font-size: 10.5px;
  font-weight: 900;
  color: var(--lp-accent, var(--accent));
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.15;
}

.lp-all-project-grid .all-project-card p,
.lan-project-archive .all-project-card p,
[data-lp-filter-container] .all-project-card p,
.lp-all-project-grid .all-project-card .lp-project-summary,
.lan-project-archive .all-project-card .lp-project-summary,
[data-lp-filter-container] .all-project-card .lp-project-summary {
  color: var(--lp-muted, var(--muted));
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  margin: 0 0 18px;
}

.lp-all-project-grid .all-project-card .lp-project-result,
.lan-project-archive .all-project-card .lp-project-result,
[data-lp-filter-container] .all-project-card .lp-project-result {
  font-size: 26px;
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 900;
  color: var(--lp-ink, var(--ink));
}

.lp-all-project-grid .all-project-card .lp-project-category-name,
.lan-project-archive .all-project-card .lp-project-category-name,
[data-lp-filter-container] .all-project-card .lp-project-category-name {
  max-width: 150px;
  text-align: right;
  color: #8b6b62;
  font-size: 11px;
  font-style: normal;
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Project category filter buttons: fix vertical text alignment */
.lp-filter-bar .lp-filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
}

.lp-filter-bar a.lp-filter-button {
  text-decoration: none;
}

.lp-filter-bar .lp-filter-button:hover,
.lp-filter-bar .lp-filter-button.is-active,
.lp-filter-bar .lp-filter-button[data-lp-active="true"] {
  border-color: var(--lp-accent, var(--accent));
}


/* Project category final typography, hover and filter button behavior */
.lp-all-project-grid .all-project-card h3,
.lan-project-archive .all-project-card h3,
[data-lp-filter-container] .all-project-card h3 {
  font-weight: 700;
}

.lp-all-project-grid .all-project-card .lp-project-result,
.lan-project-archive .all-project-card .lp-project-result,
[data-lp-filter-container] .all-project-card .lp-project-result {
  font-weight: 700;
}

.lp-all-project-grid .all-project-card:hover,
.lan-project-archive .all-project-card:hover,
[data-lp-filter-container] .all-project-card:hover {
  border: 1px solid rgba(234, 222, 216, .84);
  box-shadow: 0 24px 54px rgba(44, 33, 28, .10);
}

.lp-filter-bar .lp-filter-button:hover {
  border-color: rgba(232, 221, 214, .95);
}

.lp-filter-bar .lp-filter-button.is-active,
.lp-filter-bar .lp-filter-button[data-lp-active="true"] {
  border-color: var(--lp-ink);
}


/* Project category filter button hover: keep white background and black text */
.lp-filter-bar .lp-filter-button:hover {
  background: #fff;
  color: var(--lp-ink, var(--ink));
  border: 1px solid rgba(234, 222, 216, .84);
}

.lp-filter-bar a.lp-filter-button:hover {
  background: #fff;
  color: var(--lp-ink, var(--ink));
  border: 1px solid rgba(234, 222, 216, .84);
  text-decoration: none;
}

.lp-filter-bar .lp-filter-button.is-active,
.lp-filter-bar .lp-filter-button[data-lp-active="true"] {
  background: var(--lp-ink, var(--ink));
  color: #fff;
  border-color: var(--lp-ink, var(--ink));
}


/* All Projects card summary font weight */
.lp-all-project-grid .all-project-card .lp-project-summary,
.lan-project-archive .all-project-card .lp-project-summary,
[data-lp-filter-container] .all-project-card .lp-project-summary {
  font-weight: 400;
}


/* Header WordPress menu support */
.lan-global-header .menu.menu--wp {
  display: flex;
  align-items: center;
}

.lan-global-header .lan-header-wp-menu,
.lan-global-header .menu.menu--wp > ul {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lan-global-header .lan-header-wp-menu li,
.lan-global-header .menu.menu--wp > ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lan-global-header .lan-header-wp-menu a,
.lan-global-header .menu.menu--wp > ul a {
  color: var(--ink);
  opacity: .78;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.lan-global-header .lan-header-wp-menu a:hover,
.lan-global-header .lan-header-wp-menu .current-menu-item > a,
.lan-global-header .lan-header-wp-menu .current_page_item > a,
.lan-global-header .menu.menu--wp > ul a:hover,
.lan-global-header .menu.menu--wp > ul .current-menu-item > a,
.lan-global-header .menu.menu--wp > ul .current_page_item > a {
  color: var(--accent);
  opacity: 1;
}

@media (max-width: 900px) {
  .lan-global-header .lan-header-wp-menu,
  .lan-global-header .menu.menu--wp > ul {
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }
}




/* Sticky header fixed behavior v2 */
.lan-global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 9999;
  box-sizing: border-box;
  transition: box-shadow .24s ease, background-color .24s ease, transform .24s ease;
}

body.lan-sticky-header-active {
  padding-top: var(--lan-header-height, 76px);
}

.admin-bar .lan-global-header {
  top: 32px;
}

.lan-global-header.is-sticky-disabled {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 100%;
}

.admin-bar .lan-global-header.is-sticky-disabled {
  top: auto;
}

/* Prevent WPBakery wrappers inside header from adding negative margins/extra width */
.lan-global-header .vc_row,
.lan-global-header .wpb_row,
.lan-global-header .wpb_column,
.lan-global-header .vc_column_container,
.lan-global-header .vc_column-inner,
.lan-global-header .wpb_wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.lan-global-header .nav,
body:not(.home):not(.front-page) .lan-global-header .nav {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
  background: rgba(255, 252, 248, .92);
}

.lan-global-header.is-scrolled .nav {
  background: rgba(255, 252, 248, .97);
  border-bottom-color: rgba(234, 222, 216, .96);
  box-shadow: 0 10px 34px rgba(44, 33, 28, .075);
}

.lan-global-header .brand {
  flex: 0 0 auto;
  white-space: nowrap;
}

.lan-global-header .menu {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
}

.lan-global-header .header-contact-info {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 28vw;
  overflow: hidden;
}

.lan-global-header .header-contact-info a,
.lan-global-header .header-contact-info span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1100px) {
  .lan-global-header .nav,
  body:not(.home):not(.front-page) .lan-global-header .nav {
    padding-left: 32px;
    padding-right: 32px;
  }

  .lan-global-header .header-contact-info {
    max-width: 32vw;
  }
}

@media (max-width: 900px) {
  body.lan-sticky-header-active {
    padding-top: var(--lan-header-height, 112px);
  }

  .lan-global-header .header-contact-info {
    max-width: none;
  }
}

@media (max-width: 782px) {
  .admin-bar .lan-global-header {
    top: 46px;
  }
}

@media (max-width: 600px) {
  .admin-bar .lan-global-header {
    top: 0;
  }
}


/* Tablet/mobile drawer header */
.lan-mobile-menu-toggle,
.lan-mobile-drawer,
.lan-mobile-drawer-overlay {
  display: none;
}

.lan-mobile-menu-toggle {
  appearance: none;
  border: 1px solid rgba(234, 222, 216, .84);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(44, 33, 28, .045);
}

.lan-mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  display: block;
}

.lan-mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(17, 16, 15, .28);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.lan-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: min(360px, 86vw);
  height: 100vh;
  background: rgba(255, 252, 248, .98);
  border-right: 1px solid rgba(234, 222, 216, .9);
  box-shadow: 24px 0 70px rgba(44, 33, 28, .16);
  transform: translateX(-104%);
  transition: transform .28s cubic-bezier(.22, .61, .36, 1);
  padding: 24px;
  box-sizing: border-box;
  overflow-y: auto;
}

.admin-bar .lan-mobile-drawer {
  top: 32px;
  height: calc(100vh - 32px);
}

.lan-mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(234, 222, 216, .84);
}

.lan-mobile-drawer-head .brand {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .03em;
}

.lan-mobile-drawer-close {
  appearance: none;
  border: 1px solid rgba(234, 222, 216, .84);
  border-radius: 999px;
  background: #fff;
  width: 42px;
  height: 42px;
  position: relative;
  flex: 0 0 auto;
  cursor: pointer;
}

.lan-mobile-drawer-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transform-origin: center;
}

.lan-mobile-drawer-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lan-mobile-drawer-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lan-mobile-drawer-nav,
.lan-header-drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.lan-header-drawer-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lan-mobile-drawer-nav a,
.lan-header-drawer-menu a {
  display: flex;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid rgba(234, 222, 216, .68);
  color: var(--ink);
  font-size: 22px;
  line-height: 1.08;
  font-weight: 750;
  letter-spacing: -.045em;
  text-decoration: none;
}

.lan-mobile-drawer-nav a:hover,
.lan-header-drawer-menu a:hover {
  color: var(--accent);
}

.lan-mobile-drawer-contact {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(234, 222, 216, .84);
  border-radius: 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lan-mobile-drawer-contact a,
.lan-mobile-drawer-contact span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.lan-mobile-drawer-contact span {
  color: var(--accent-2);
}

body.lan-mobile-drawer-open {
  overflow: hidden;
}

body.lan-mobile-drawer-open .lan-mobile-drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.lan-mobile-drawer-open .lan-mobile-drawer {
  transform: translateX(0);
}

@media (max-width: 1024px) {
  .lan-global-header .nav,
  body:not(.home):not(.front-page) .lan-global-header .nav {
    height: 72px;
    min-height: 72px;
    padding: 0 32px;
    justify-content: space-between;
    gap: 18px;
  }

  .lan-global-header .menu,
  .lan-global-header .header-contact-info {
    display: none;
  }

  .lan-mobile-menu-toggle,
  .lan-mobile-drawer,
  .lan-mobile-drawer-overlay {
    display: flex;
  }

  .lan-mobile-drawer-overlay {
    display: block;
  }

  .lan-global-header .brand {
    font-size: 15px;
  }
}

@media (max-width: 782px) {
  .admin-bar .lan-mobile-drawer {
    top: 46px;
    height: calc(100vh - 46px);
  }
}

@media (max-width: 640px) {
  .lan-global-header .nav,
  body:not(.home):not(.front-page) .lan-global-header .nav {
    padding: 0 18px;
  }

  .lan-mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .lan-mobile-drawer {
    width: min(330px, 88vw);
    padding: 20px;
  }

  .lan-mobile-drawer-nav a,
  .lan-header-drawer-menu a {
    font-size: 20px;
    min-height: 50px;
  }
}

@media (max-width: 600px) {
  .admin-bar .lan-mobile-drawer {
    top: 0;
    height: 100vh;
  }
}


/* Tablet/mobile drawer header repair */
@media (max-width: 1024px) {
  .lan-global-header .nav,
  body:not(.home):not(.front-page) .lan-global-header .nav {
    height: 72px;
    min-height: 72px;
    padding: 0 32px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    overflow: visible;
  }

  .lan-global-header .nav > .brand {
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100% - 64px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lan-global-header .nav > .menu,
  .lan-global-header .nav > .menu.menu--wp,
  .lan-global-header .nav > .menu .lan-header-wp-menu,
  .lan-global-header .nav > .menu.menu--wp > ul,
  .lan-global-header .nav > .header-contact-info {
    display: none;
  }

  .lan-global-header .nav > .lan-mobile-menu-toggle {
    display: inline-flex;
    flex: 0 0 44px;
    margin-left: auto;
  }

  .lan-global-header .lan-mobile-drawer-overlay {
    display: block;
  }

  .lan-global-header .lan-mobile-drawer {
    display: block;
    flex-direction: column;
    width: min(360px, 86vw);
    max-width: 86vw;
  }

  .lan-global-header .lan-mobile-drawer .brand {
    max-width: calc(100% - 58px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lan-global-header .lan-mobile-drawer-nav,
  .lan-global-header .lan-header-drawer-menu {
    width: 100%;
  }

  .lan-global-header .lan-mobile-drawer-contact {
    width: 100%;
    box-sizing: border-box;
  }

  .lan-global-header .lan-mobile-drawer-contact a,
  .lan-global-header .lan-mobile-drawer-contact span {
    display: block;
    width: 100%;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 640px) {
  .lan-global-header .nav,
  body:not(.home):not(.front-page) .lan-global-header .nav {
    height: 68px;
    min-height: 68px;
    padding: 0 18px;
  }

  .lan-global-header .nav > .brand {
    font-size: 14px;
    max-width: calc(100% - 58px);
  }

  .lan-global-header .nav > .lan-mobile-menu-toggle {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .lan-global-header .lan-mobile-drawer {
    width: min(330px, 88vw);
    max-width: 88vw;
  }
}


/* Mobile drawer visual tweak */
.lan-global-header .lan-mobile-menu-toggle {
  border-radius: 6px;
  border-color: #151313;
  background: #fff;
  box-shadow: none;
}

.lan-global-header .lan-mobile-menu-toggle span {
  background: #151313;
}

.lan-global-header .lan-mobile-drawer-nav a,
.lan-global-header .lan-header-drawer-menu a,
.lan-global-header .lan-header-drawer-menu .current-menu-item > a,
.lan-global-header .lan-header-drawer-menu .current_page_item > a,
.lan-global-header .lan-mobile-drawer-nav a:hover,
.lan-global-header .lan-header-drawer-menu a:hover {
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.02em;
  min-height: 46px;
}

.lan-global-header .lan-mobile-drawer-nav a:hover,
.lan-global-header .lan-header-drawer-menu a:hover {
  color: var(--accent);
}


/* Shrink global header when scrolled */
.lan-global-header.is-scrolled .nav,
body:not(.home):not(.front-page) .lan-global-header.is-scrolled .nav {
  height: 50px;
  min-height: 50px;
}

.lan-global-header.is-scrolled .brand {
  font-size: 15px;
}

.lan-global-header.is-scrolled .menu,
.lan-global-header.is-scrolled .lan-header-wp-menu,
.lan-global-header.is-scrolled .menu.menu--wp > ul {
  font-size: 12px;
}

.lan-global-header.is-scrolled .header-contact-info {
  font-size: 11px;
}

@media (max-width: 1024px) {
  .lan-global-header.is-scrolled .nav,
  body:not(.home):not(.front-page) .lan-global-header.is-scrolled .nav {
    height: 50px;
    min-height: 50px;
  }

  .lan-global-header.is-scrolled .lan-mobile-menu-toggle {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
}


/* Scrolled mobile burger transparent style */
.lan-global-header.is-scrolled .lan-mobile-menu-toggle {
  border: none;
  background: transparent;
}


/* Mobile drawer contact: soft-mint background */
.lan-global-header .lan-mobile-drawer-contact {
  background:
    radial-gradient(circle at 8% 12%, rgba(232, 91, 70, .12), transparent 28%),
    radial-gradient(circle at 94% 6%, rgba(139, 107, 98, .11), transparent 24%),
    linear-gradient(135deg, #f4fff8 0%, #fffaf3 48%, #fff4ee 100%);
  border-color: #eaded8;
}
