:root {

/* Keep the submit action aligned with the form fields when Turnstile loads. */
.contact-form .form-actions .contact-submit {
  order: -1;
}


/* Optical alignment: LinkedIn wordmark label only. */
.contact-links a[href*="linkedin.com"] > span {
  position: relative;
  top: 1px;
}
.footer-links a[href*="linkedin.com"] > span {
  transform: translateY(2px);
}

  --ink: #312d2a;
  --ink-soft: #544e49;
  --paper: #ffffff;
  --white: #ffffff;
  --line: #ded6d0;
  --red: #60231a;
  --red-dark: #4f1d16;
  --rose: #6c3f49;
  --rose-dark: #59343c;
  --eyebrow-rose: #975652;
  --featured: #5c5749;
  --range-surface: #fbf7f4;
  --about-surface: #fffcfb;
  --footer: #312d2a;
  --coral-light: #e4b5ad;
  --wash: #f9edec;
  --ivory: #f8f4ea;
  --shadow: 0 12px 34px rgba(49, 45, 42, 0.09);
  --radius: 16px;
  --shell: 1140px;
  --section-title-size: clamp(36px, 4vw, 52px);
  --section-body-size: 18px;
  --section-surface: var(--range-surface);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus { left: 16px; top: 16px; background: var(--white); padding: 10px 14px; z-index: 100; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(49, 45, 42, 0.11);
}
.site-header::before {
  content: "";
  display: block;
  font-size: 0;
  line-height: 0;
  width: 100%;
  height: 6px;
  background: url("https://lai-xu.com/wp-content/uploads/2026/09/color-stripe.png") center / cover no-repeat;
}
.nav-wrap { min-height: 78px; display: grid; grid-template-columns: 450px minmax(0, 1fr); align-items: center; gap: 40px; }
.wordmark { color: var(--red); font-weight: 800; letter-spacing: 0.17em; text-decoration: none; font-size: 20px; }
.wordmark-logo { display: grid; align-items: center; width: 60px; height: 48px; max-width: 60px; min-width: 60px; min-height: 48px; }
.wordmark-logo img { grid-area: 1 / 1; width: 60px; height: 48px; object-fit: contain; object-position: left center; transition: opacity .2s ease; }
.wordmark-logo .logo-hover { opacity: 0; }
.wordmark-logo:focus-visible .logo-default { opacity: 0; }
.wordmark-logo:focus-visible .logo-hover { opacity: 1; }
.wordmark-logo:focus-visible { outline: 2px solid var(--rose); outline-offset: 4px; border-radius: 4px; }
@media (hover: hover) {
  .wordmark-logo:hover .logo-default { opacity: 0; }
  .wordmark-logo:hover .logo-hover { opacity: 1; }
}
#primary-navigation { display: flex; align-items: center; gap: 8px; min-width: 0; margin-left: -12px; }
#primary-navigation a {
  padding: 9px 13px;
  text-decoration: none;
  font-size: 0.91176471em; /* 15.5px relative to the inherited 17px body size */
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
#primary-navigation a:hover:not(.nav-active), #primary-navigation a:focus-visible:not(.nav-active) {
  color: var(--rose);
  background: var(--wash);
}
#primary-navigation a:focus-visible { outline: 2px solid var(--coral-light); outline-offset: 2px; }
#primary-navigation a.nav-active, #primary-navigation a.nav-active:hover, #primary-navigation a.nav-active:focus-visible {
  color: var(--rose);
  background: var(--wash);
}
#primary-navigation a.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
}
#primary-navigation a.nav-icon .nav-link-icon { width: 19px; height: 19px; fill: currentColor; }
#primary-navigation a.nav-resume .nav-link-icon { width: 18px; height: 18px; }
#primary-navigation a.nav-resume { margin-left: auto; }


.nav-label { display: none; }
.menu-toggle { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); color: var(--ink); cursor: pointer; }
.menu-toggle:hover { background: var(--wash); }
.menu-toggle:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }
.menu-bars, .menu-bars::before, .menu-bars::after { display: block; width: 22px; height: 2px; background: currentColor; }
.menu-bars { position: relative; }
.menu-bars::before, .menu-bars::after { content: ""; position: absolute; left: 0; }
.menu-bars::before { top: -7px; }
.menu-bars::after { top: 7px; }
.menu-toggle[aria-expanded="true"] .menu-bars { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-bars::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-bars::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1060px) {
  .nav-wrap { grid-template-columns: minmax(240px, 360px) minmax(0, 1fr); gap: 38px; }
}

.hero { min-height: 0; padding-block: 60px; }
.hero-layout { display: grid; grid-template-columns: 450px minmax(0, 1fr); gap: 40px; align-items: center; }
.hero-content { min-width: 0; }
.hero-art {
  width: min(100%, 450px);
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--wash);
  border: 1px solid #ddcbc5;
  border-radius: 50%;
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.eyebrow { margin: 0 0 18px; color: var(--eyebrow-rose); font-size: 14px; font-weight: 800; letter-spacing: 0.16em; line-height: 1.4; }
h1, h2, h3 { margin: 0; letter-spacing: -0.035em; line-height: 1.08; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; }
h1 { max-width: 650px; font-size: clamp(44px, 3.8vw, 54px); font-weight: 500; text-wrap: balance; }
h2 { font-size: var(--section-title-size); font-weight: 500; }
h3 { font-size: clamp(26px, 2.5vw, 34px); font-weight: 730; }
.section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--section-title-size);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.section-description {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: var(--section-body-size);
  line-height: 1.55;
}
.surface-soft { background: var(--section-surface); }
.hero-accent { color: var(--rose); }
.hero-copy { max-width: 760px; margin-top: 36px; color: var(--ink-soft); font-size: 20px; }
.hero-copy p { margin: 0 0 8px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 16px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: color .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.button-primary { color: var(--ivory); background: var(--rose); border-color: var(--rose); box-shadow: none; }
.button-primary:hover, .button-primary:focus-visible { color: var(--ivory); background: var(--rose-dark); border-color: var(--rose-dark); box-shadow: none; }
.button-secondary { color: var(--ink); background: transparent; border-color: #c9beb8; }
.button-secondary:hover, .button-secondary:focus-visible { color: var(--rose); background: var(--wash); border-color: transparent; box-shadow: none; }
.button:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }

.section { padding-block: 60px; scroll-margin-top: 88px; }
.section-heading { display: grid; grid-template-columns: 1fr minmax(280px, 440px); gap: 60px; align-items: end; margin-bottom: 40px; }
.section-heading > p { margin: 0 0 4px; color: var(--ink-soft); font-size: 18px; }
.stacked-heading { display: block; }
.stacked-heading > div { max-width: calc((100% - 26px) / 2); }
.stacked-heading > div > p:last-child { margin: 22px 0 0; color: var(--ink-soft); font-size: 18px; }
.case-grid, .range-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }

.case-card, .range-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: inherit;
  background: var(--white);
  border: 1px solid rgba(49, 45, 42, 0.10);
  border-radius: var(--radius);
  box-shadow: 0 5px 18px rgba(49, 45, 42, 0.055);
  text-decoration: none;
}
.case-card:focus-visible, .range-card:focus-visible { outline: 3px solid rgba(108, 63, 73, .42); outline-offset: 4px; }
.card-image, .range-image { overflow: hidden; aspect-ratio: 16 / 9; background: #e9e8e3; }
.inset-image .card-image, .inset-image .range-image { width: calc(100% - 36px); margin: 18px 18px 0; border-radius: 16px; }
.card-image img, .range-image img { width: 100%; height: 100%; object-fit: cover; }
.case-content, .range-content { display: flex; flex-direction: column; flex: 1; padding: 30px; }
.card-meta { margin: 0 0 4px; color: var(--eyebrow-rose); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.case-content > p:not(.card-meta), .range-content > p:not(.card-meta) { color: var(--ink-soft); }
.case-content > p:not(.card-meta) { margin: 18px 0 0; }
.range-content > p:not(.card-meta) { margin: 15px 0 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag-row span { padding: 5px 10px; color: #67514e; background: var(--wash); border-radius: 999px; font-size: 12px; font-weight: 700; }
.text-link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 24px; color: var(--ink); font-size: 15px; font-weight: 750; }

.case-page-hero {
  padding-block: 60px;
}
.case-page-work {
  padding: 0 0 60px;
  color: var(--ink);
  background: transparent;
}
.case-page .case-grid { align-items: stretch; }
.case-page .case-card {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(49, 45, 42, .16);
  box-shadow: 0 5px 18px rgba(49, 45, 42, .055);
}
.case-page .case-card h2 {
  font-family: inherit;
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 730;
  letter-spacing: -.035em;
  line-height: 1.08;
}
.case-page .case-story {
  margin: 15px 0 0 !important;
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.5;
}
.case-page .case-description {
  margin: 14px 0 0 !important;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
}
.case-page .case-content { min-height: 0; padding: 30px 30px 38px; }
.case-page .tag-row { margin-top: 20px; }
.case-page .case-access { color: var(--ink); }
.case-page .site-footer { margin-top: 0; }

.range-page-hero { padding-block: 60px; }
.range-portfolio { padding: 0 0 60px; }
.portfolio-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.portfolio-filters button {
  min-height: 44px;
  padding: 9px 15px;
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.portfolio-filters button:hover, .portfolio-filters button:focus-visible { color: var(--rose); background: var(--wash); }
.portfolio-filters button[aria-pressed="true"] { color: var(--rose); background: var(--wash); border-color: rgba(108, 63, 73, .14); }
.portfolio-filters button:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }
.portfolio-masonry { columns: 3; column-gap: 24px; }
.portfolio-item { break-inside: avoid; margin: 0 0 24px; }
.portfolio-item[hidden] { display: none; }
.portfolio-item a { display: block; overflow: hidden; border-radius: 12px; background: #eee9e5; }
.portfolio-item a:focus-visible { outline: 3px solid rgba(108, 63, 73, .48); outline-offset: 4px; }
.portfolio-item img { width: 100%; height: auto; }

.contact-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.contact-page.admin-bar {
  min-height: calc(100vh - 32px);
  min-height: calc(100dvh - 32px);
}
@media (max-width: 782px) {
  .contact-page.admin-bar {
    min-height: calc(100vh - 46px);
    min-height: calc(100dvh - 46px);
  }
}
.contact-page .site-header,
.contact-page .site-footer { flex: 0 0 auto; }
.contact-main { flex: 1 0 auto; min-height: 0; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: start;
  padding-block: 60px;
}
.contact-intro .section-title { color: var(--ink) !important; }
.contact-intro .section-description { max-width: 520px; }
.contact-links { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 28px; }
.contact-links a { display: inline-flex; align-items: center; gap: 8px; min-height: 28px; color: var(--ink); text-decoration: none; font-weight: 700; }
.contact-link-icon { display: block; flex: 0 0 18px; width: 18px; height: 18px; fill: currentColor; }
.contact-links a:hover, .contact-links a:focus-visible { color: var(--rose); }
.contact-links a:focus-visible { outline: 2px solid var(--rose); outline-offset: 4px; border-radius: 4px; }
.contact-form {
  display: grid;
  gap: 10px;
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(49, 45, 42, .12);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.form-field { display: grid; gap: 8px; }
.form-field label { font-size: 14px; font-weight: 750; letter-spacing: .02em; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfc5bf;
  border-radius: 10px;
  font: inherit;
  line-height: 1.4;
}
.form-field input { min-height: 50px; }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--rose); outline-offset: 2px; border-color: var(--rose); }
.contact-form-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contact-form-wrap .wpcf7 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.wpcf7 .hidden-fields-container { display: none; }
.wpcf7 .screen-reader-response {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}
.contact-form p { margin: 0; }
.contact-form br { display: none; }
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .02em;
}
.contact-form .wpcf7-form-control-wrap { display: block; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfc5bf;
  border-radius: 10px;
  font: inherit;
  line-height: 1.4;
}
.contact-form input[type="text"],
.contact-form input[type="email"] { min-height: 50px; }
.contact-form textarea { min-height: 130px; height: 130px; resize: vertical; }
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
  border-color: var(--rose);
}
.contact-form .wpcf7-not-valid-tip { margin-top: 6px; color: #8f2f3f; font-size: 14px; }
.contact-form .wpcf7-response-output { margin: 0; border-radius: 8px; }
.contact-form .wpcf7-response-output:empty { display: none; }
.contact-form .form-actions {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px 15px;
  margin-top: 5px;
}
.contact-form .form-actions .cf7-cf-turnstile { margin: 0 !important; }
.contact-form .wpcf7-spinner { align-self: center; margin: 0; }
.contact-submit { flex: 0 0 auto; align-self: flex-start; min-width: 148px; font-family: inherit; cursor: pointer; }
.range-page .site-footer { margin-top: 0; }

.about-page-hero { padding-block: 60px; background: var(--white); }
.about-hero-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(48px, 7vw, 80px); align-items: start; }
.about-hero-copy { max-width: 690px; }
.about-hero-copy > p:not(.eyebrow):not(.about-intro-note) { max-width: 650px; margin: 22px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.62; }
.about-hero-copy .about-hero-lede { color: var(--ink); font-size: 20px; }
.about-intro-note, .editorial-note { margin: 20px 0 0; color: var(--rose); font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-style: italic; }
.about-hero-actions { margin-top: 28px; }
.about-hero-photo { width: 360px; max-width: 100%; height: 450px; margin: 0; overflow: hidden; background: var(--wash); border-radius: 20px; box-shadow: var(--shadow); }
.about-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.about-canvas { padding-block: 48px; background: var(--range-surface); }
.about-card-stack { display: grid; gap: 48px; }
.about-panel { overflow: hidden; background: var(--white); border: 1px solid rgba(49,45,42,.1); border-radius: 20px; box-shadow: var(--shadow); }
.between-panel { display: grid; grid-template-columns: 382px minmax(0, 1fr); height: 550px; }
.between-image { width: 382px; height: 550px; background: #e8ddd8; }
.between-image img { width: 100%; height: 100%; object-fit: contain; }
.between-copy { align-self: center; padding: 48px; }
.between-copy h2, .about-page .section-intro h2 { max-width: 720px; font-size: clamp(32px, 3.4vw, 44px); }
.between-copy > p:not(.eyebrow):not(.editorial-note) { max-width: 620px; margin: 23px 0 0; color: var(--ink-soft); font-size: 18px; }
.work-around-panel, .fun-panel { padding: 48px; }
.principles-panel { padding: 48px; background: #fdf8f7; }
.principles-layout { display: grid; grid-template-columns: minmax(250px, .68fr) minmax(0, 1.32fr); gap: 48px; align-items: start; }
.section-intro { max-width: 760px; }
.section-intro > p:last-child { margin: 20px 0 0; color: var(--ink-soft); font-size: 18px; }
.principles-intro > p:not(.eyebrow) { margin: 20px 0 0; color: var(--ink-soft); font-size: 17px; }
.principles-intro > p:last-child { margin-top: 12px; }
.principle-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 0; }
.principle { padding: 24px; background: var(--white); border: 1px solid rgba(49,45,42,.12); border-radius: 16px; box-shadow: 0 7px 22px rgba(49,45,42,.06); }
.principle > span { color: var(--eyebrow-rose); font-size: 13px; font-weight: 800; letter-spacing: .14em; }
.principle h3 { margin-top: 14px; font-family: inherit; font-size: clamp(21px, 2vw, 26px); font-weight: 750; letter-spacing: -.025em; }
.principle p { margin: 14px 0 0; color: var(--ink-soft); font-size: 16px; }
.principle .principle-equation { color: var(--rose); font-weight: 750; }
.work-around-intro { margin-bottom: 40px; }
.leadership-stories { display: grid; gap: 0; max-width: 980px; margin-inline: auto; }
.leadership-story { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 42px; align-items: center; padding-block: 40px; border-top: 1px solid var(--line); }
.leadership-story:first-child { padding-top: 0; border-top: 0; }
.leadership-story:last-child { padding-bottom: 0; }
.leadership-story-reverse .leadership-image { grid-column: 2; }
.leadership-story-reverse > div:last-child { grid-column: 1; grid-row: 1; }
.leadership-image { overflow: hidden; aspect-ratio: 16 / 9; background: var(--range-surface); border-radius: 14px; }
.leadership-image img { width: 100%; height: 100%; object-fit: contain; }
.workshop-media { aspect-ratio: 16 / 9; }
.story-label { margin: 0 0 16px; color: var(--eyebrow-rose); font-size: 13px; font-weight: 800; letter-spacing: .14em; }
.leadership-story h3 { font-family: inherit; font-size: clamp(25px, 2.6vw, 32px); font-weight: 750; letter-spacing: -.025em; }
.leadership-story > div:last-child > p:not(.story-label):not(.editorial-note) { margin: 20px 0 0; color: var(--ink-soft); font-size: 17px; }
.leadership-more-link { display: inline-block; margin-top: 22px; color: var(--ink); font-size: 15px; font-weight: 750; text-decoration: none; }
.leadership-more-link:hover, .leadership-more-link:focus-visible { color: var(--rose); }
.leadership-more-link:focus-visible { outline: 2px solid var(--rose); outline-offset: 4px; border-radius: 2px; }
.fun-panel { background: var(--about-surface); }
.fun-intro { max-width: 850px; }
.fun-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 40px; }
.fun-card { overflow: hidden; background: var(--white); border: 1px solid rgba(49,45,42,.1); border-radius: 16px; }
.fun-card > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.fun-card > div { padding: 26px 28px 30px; }
.fun-card h3 { font-family: inherit; font-size: clamp(23px, 2.2vw, 29px); font-weight: 750; letter-spacing: -.025em; }
.fun-card p { margin: 16px 0 0; color: var(--ink-soft); font-size: 16px; }

.fun-card-link {
  display: block;
  color: var(--ink);
  text-decoration: none;
  transition: box-shadow .2s ease;
}
.fun-card-link:visited { color: var(--ink); }
.fun-card-link:hover,
.fun-card-link:focus-visible {
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(49, 45, 42, .10);
}
.fun-card-link:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 4px;
}


.range-child-page { background: var(--about-surface); }
.range-child-hero { padding: 60px 0 24px; background: var(--about-surface); }
.range-child-hero .section-title { font-size: clamp(24px, 2.1vw, 28px); line-height: 1.25; }
.range-child-hero .section-description { max-width: 860px; font-size: 16px; line-height: 1.55; }
.range-child-gallery { padding: 24px 0 60px; background: var(--about-surface); }
.range-child-stack { display: grid; gap: 24px; }
.range-child-stack img {
  width: 100%;
  height: auto;
  background: var(--white);
  border: 1px solid rgba(49, 45, 42, .08);
}
.publication-gallery .range-child-stack { justify-items: center; }
.publication-gallery img { max-width: 880px; }
.gallery-listing { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.gallery-listing figure, .marketing-portfolio-grid figure { margin: 0; overflow: hidden; background: var(--white); }
.gallery-listing a, .marketing-portfolio-grid a { display: block; color: inherit; }
.gallery-listing img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .3s ease, filter .3s ease; }
.gallery-listing a:hover img, .gallery-listing a:focus-visible img,
.marketing-portfolio-grid a:hover img, .marketing-portfolio-grid a:focus-visible img { transform: scale(1.018); filter: brightness(.93); }
.gallery-listing a:focus-visible, .marketing-portfolio-grid a:focus-visible { outline: 3px solid var(--rose); outline-offset: -3px; }
.marketing-lead { padding-bottom: 16px; }
.marketing-lead img { display: block; width: 100%; height: auto; border: 1px solid rgba(49, 45, 42, .08); }
.marketing-portfolio-section { padding: 16px 0 60px; background: var(--about-surface); }
.marketing-portfolio-grid { columns: 2; column-gap: 24px; }
.marketing-portfolio-grid figure { break-inside: avoid; margin-bottom: 24px; }
.marketing-portfolio-grid img { width: 100%; height: auto; transition: transform .3s ease, filter .3s ease; }
.masonry-gallery-section { padding: 24px 0 60px; background: var(--about-surface); }
.photo-masonry { columns: 3; column-gap: 24px; }
.photo-masonry-item { break-inside: avoid; margin: 0 0 24px; overflow: hidden; background: var(--white); }
.photo-masonry-item a { display: block; color: inherit; background: transparent; }
.photo-masonry-item img { width: 100%; height: auto; transition: transform .3s ease, filter .3s ease; }
.photo-masonry-item a:hover img, .photo-masonry-item a:focus-visible img { transform: scale(1.018); filter: brightness(.93); }
.photo-masonry-item a:focus-visible { outline: 3px solid var(--rose); outline-offset: 4px; }
.gallery-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  color: var(--white);
  background: rgba(20, 18, 17, .96);
  border: 0;
}
.gallery-lightbox::backdrop { background: rgba(20, 18, 17, .82); }
.gallery-lightbox-shell { display: grid; grid-template-columns: 56px minmax(0, 1fr) 56px; align-items: center; width: 100%; height: 100%; padding: 54px 28px 24px; }
.gallery-lightbox figure { display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 16px; justify-items: center; min-width: 0; height: 100%; margin: 0; }
.gallery-lightbox figure img { width: auto; max-width: 100%; height: auto; max-height: calc(100dvh - 132px); align-self: center; object-fit: contain; }
.gallery-lightbox figcaption { max-width: 760px; color: rgba(255,255,255,.86); font-size: 15px; line-height: 1.45; text-align: center; }
.gallery-lightbox button { color: var(--white); background: transparent; border: 0; cursor: pointer; }
.gallery-lightbox button:hover, .gallery-lightbox button:focus-visible { color: var(--coral-light); background: transparent; }
.gallery-lightbox button:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.gallery-lightbox-close { position: absolute; top: 18px; right: 24px; z-index: 1; width: 44px; height: 44px; padding: 0; font-size: 38px; font-weight: 300; line-height: 1; }
.gallery-lightbox-arrow { width: 44px; height: 56px; padding: 0; font-size: 30px; }
.range-project-nav { padding-block: 60px; background: var(--about-surface); }
.range-project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.range-project-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  max-width: 100%;
  padding: 0;
  color: var(--ink-soft);
  background: transparent;
  border-radius: 0;
  text-decoration: none;
}
.range-project-next { justify-self: end; align-items: flex-end; text-align: right; }
.range-project-link > img {
  width: 116px;
  height: 116px;
  object-fit: cover;
  border-radius: 50%;
}
.range-project-direction {
  visibility: hidden;
  margin-top: 14px;
  opacity: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: lowercase;
  transition: opacity .2s ease;
}
.range-project-nav .range-project-link:hover, .range-project-nav .range-project-link:focus-visible { color: var(--ink-soft); background: transparent; }
.range-project-link:hover .range-project-direction, .range-project-link:focus-visible .range-project-direction { visibility: visible; opacity: 1; }
.range-project-link:focus-visible { outline: 3px solid rgba(108, 63, 73, .48); outline-offset: 4px; }
.range-child-page .site-footer { margin-top: 0; }

.featured-zone { color: var(--ivory); background: var(--featured); }
.featured-zone .work-section h2 { color: var(--ivory) !important; }
.featured-zone .stacked-heading > div > p:last-child { color: rgba(248, 244, 234, .82); }
.featured-zone .eyebrow { color: var(--coral-light); }
.featured-zone .case-card { color: var(--ink); background: var(--ivory); border-color: var(--ivory); }
.featured-zone .case-card .eyebrow { color: var(--eyebrow-rose); }
.work-section { padding-top: 60px; padding-bottom: 30px; }
.ai-section { padding-top: 30px; padding-bottom: 60px; }
.ai-feature {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  overflow: hidden;
  background: var(--ivory);
  color: var(--ink);
  border: 1px solid rgba(96, 35, 26, .12);
  border-radius: 20px;
  box-shadow: 0 7px 24px rgba(49, 45, 42, 0.08);
}
.ai-copy { display: flex; flex-direction: column; justify-content: center; padding: 38px 42px; }
.featured-zone .ai-feature .eyebrow { color: var(--eyebrow-rose); }
.ai-copy h2 { font-size: clamp(34px, 3.4vw, 46px); }
.ai-copy > p:not(.eyebrow) { margin: 20px 0 0; color: var(--ink-soft); }
.ai-media { min-height: 0; padding: 0; background: var(--ivory); display: flex; align-items: stretch; }
.ai-media video { width: 100%; height: 100%; object-fit: cover; border-radius: 0; box-shadow: none; }
.ai-note { display: flex; align-items: flex-start; gap: 10px; margin: 22px 0 0; padding: 0; color: #665e58; font-size: 14px; line-height: 1.45; text-align: left; }
.ai-note span { color: var(--red); }
.ai-copy .ai-note { margin-top: 22px; color: #665e58; }

.range-section {
  position: relative;
  isolation: isolate;
}
.range-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--range-surface);
}
.range-heading { margin-bottom: 40px; }
.range-heading .eyebrow { font-size: 15px; }
.range-card { min-height: 570px; }
.range-content { padding: 28px 30px 30px; }
.range-content h3 { font-size: clamp(25px, 2.3vw, 32px); }
.range-image { aspect-ratio: 16 / 8.5; }
.range-image img { object-position: center top; }

.about-card {
  display: grid;
  grid-template-columns: minmax(360px, .62fr) 1fr;
  min-height: 720px;
  overflow: hidden;
  background: var(--wash);
  border: 1px solid rgba(108, 63, 73, .10);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.about-section {
  position: relative;
  isolation: isolate;
  padding-block: 60px;
}
.about-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--about-surface);
}
.about-photo { min-height: 720px; background: #d8d0cb; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.about-content { align-self: center; padding: 40px 44px; }
.about-content h2 { font-size: clamp(36px, 3.5vw, 42px); }
.about-content > p:not(.eyebrow) { margin: 16px 0 0; color: var(--ink-soft); }
.stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 22px; }
.stat { min-height: 104px; display: flex; flex-direction: column; justify-content: space-between; padding: 14px 16px; background: rgba(255, 255, 255, .76); border: 1px solid rgba(49, 45, 42, .08); border-radius: 12px; }
.stat strong { color: var(--red); font-size: 34px; line-height: 1; letter-spacing: -.04em; }
.stat span { margin-top: 8px; color: var(--ink-soft); font-size: 14px; line-height: 1.35; }
.about-buttons { margin-top: 30px; }
.about-buttons .button-secondary { background: var(--about-surface); }
.about-buttons .button-secondary:hover, .about-buttons .button-secondary:focus-visible { color: var(--rose); background: #ebcfcb; border-color: #c9beb8; box-shadow: none; }

.site-footer { margin-top: 0; padding-block: 48px 22px; color: var(--ivory); background: var(--footer); }
.footer-invite .eyebrow, .footer-contact .eyebrow { color: var(--coral-light); }
.footer-grid { display: grid; grid-template-columns: 1.05fr .55fr 1fr; gap: 42px; align-items: start; }
.footer-invite h2 { max-width: 440px; color: var(--ivory) !important; font-size: clamp(28px, 2.8vw, 38px); line-height: 1.12; }
.footer-invite h2 span { display: block; }
.footer-contact, .status-card { margin-top: 38px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 0; }
.footer-links a { display: inline-grid; grid-template-columns: 18px auto; align-items: center; gap: 8px; min-height: 22px; line-height: 18px; text-decoration: none; font-weight: 700; }
.footer-links a > span { display: block; line-height: 18px; transform: translateY(1px); }
.footer-link-icon { display: block; flex: 0 0 18px; width: 18px; height: 18px; fill: currentColor; }
.footer-link-icon.contact-icon { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; filter: none; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--coral-light); }
.status-card { align-self: start; padding: 0; color: var(--ivory); background: transparent; border-radius: 0; }
.status-card .eyebrow { margin-bottom: 10px; color: var(--ivory); }
.status-card p:not(.eyebrow) { margin: 0; color: rgba(248, 244, 234, .76); font-size: 15px; line-height: 1.5; }
.status-card p:last-child { margin-bottom: 0; }
.status-dot { display: inline-block; width: 9px; height: 9px; margin-right: 4px; background: #4ab980; border-radius: 50%; box-shadow: 0 0 0 4px rgba(74,185,128,.14); animation: status-pulse 1.8s ease-in-out infinite; }
@keyframes status-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 4px rgba(74,185,128,.14); }
  50% { opacity: .42; box-shadow: 0 0 0 7px rgba(74,185,128,.05); }
}
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(248,244,234,.18); }
.copyright { color: rgba(248,244,234,.65); font-size: 13px; }
.top-button {
  position: fixed;
  right: 24px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  color: var(--ink);
  background: var(--ivory);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(20, 10, 13, .2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background-color .2s ease;
}
.top-button.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.top-button:hover, .top-button:focus-visible { background: var(--wash); }
.top-button:focus-visible { outline: 2px solid var(--coral-light); outline-offset: 3px; }

@media (max-width: 900px) {
  .photo-masonry { columns: 2; }
  .gallery-listing { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #primary-navigation { gap: 2px; margin-left: -7px; }
  #primary-navigation a { padding-inline: 8px; }
  .hero { min-height: 0; padding-block: 60px; }
  .hero-layout { grid-template-columns: minmax(240px, 360px) minmax(0, 1fr); gap: 38px; }
  .section { padding-block: 60px; }
  .work-section { padding-top: 60px; padding-bottom: 30px; }
  .ai-section { padding-top: 30px; padding-bottom: 60px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .ai-feature, .about-card, .footer-grid { grid-template-columns: 1fr; }
  .ai-copy, .about-content { padding: 42px; }
  .ai-media { min-height: 360px; padding: 0; }
  .ai-media video { border-radius: 0; box-shadow: none; }
  .about-photo { min-height: 480px; max-height: 580px; }
  .about-section { padding-block: 60px; }
  .footer-grid { gap: 48px; }
  .footer-contact, .status-card { margin-top: 0; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 18px; }
  .case-page-hero { padding-block: 60px; }
  .range-page-hero { padding-block: 60px; }
  .portfolio-masonry { columns: 2; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-hero-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 42px; }
  .about-hero-photo { width: 320px; height: 420px; }
  .between-panel { grid-template-columns: 382px minmax(0, 1fr); }
  .principles-layout { grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr); gap: 34px; }
  .principles-panel { padding: 40px; }
  .principle { padding: 22px; }
  .leadership-story { gap: 34px; }
  .range-child-hero { padding: 60px 0 24px; }
}

@media (max-width: 1060px) {
  .nav-wrap { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
  .menu-toggle { display: inline-flex; }
  #primary-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 12px 20px 20px;
    max-height: calc(100dvh - 85px);
    overflow-y: auto;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 20px rgba(49, 45, 42, .08);
  }
  #primary-navigation.is-open { display: flex; flex-direction: column; align-items: stretch; gap: 4px; }
  #primary-navigation a, #primary-navigation a.nav-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    height: auto;
    min-height: 44px;
    margin: 0;
    padding: 10px 14px;
    border-radius: 8px;
  }
  #primary-navigation a.nav-icon { display: grid; grid-template-columns: 20px minmax(0, 1fr); column-gap: 12px; }
  #primary-navigation a.nav-icon .nav-link-icon { width: 18px; height: 18px; justify-self: center; align-self: center; transform: translateY(-1px); }
  #primary-navigation a.nav-resume .nav-link-icon { width: 17px; height: 17px; }
  #primary-navigation a.nav-resume {
    margin-top: 8px;
    padding-top: 17px;
    border-top: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
  }
  #primary-navigation .nav-label { display: block; line-height: 20px; }
}

@media (max-width: 680px) {
  .masonry-gallery-section { padding: 18px 0 48px; }
  .photo-masonry { columns: 1; }
  .photo-masonry-item { margin-bottom: 18px; }
  .gallery-listing { grid-template-columns: 1fr; gap: 18px; }
  .marketing-portfolio-grid { columns: 1; }
  .marketing-portfolio-grid figure { margin-bottom: 18px; }
  .marketing-lead { padding-bottom: 9px; }
  .marketing-portfolio-section { padding: 9px 0 48px; }
  .gallery-lightbox-shell { grid-template-columns: 44px minmax(0, 1fr) 44px; padding: 58px 8px 18px; }
  .gallery-lightbox figcaption { padding-inline: 10px; font-size: 14px; }
  .gallery-lightbox-close { top: 8px; right: 8px; }
  .shell { width: min(calc(100% - 40px), var(--shell)); }
  .site-header { position: sticky; }
  .nav-wrap { min-height: 72px; }
  .hero { padding-block: 60px; }
  .hero-layout { grid-template-columns: 1fr; gap: 42px; }
  .hero-art { width: min(72vw, 290px); justify-self: center; }
  .section { padding-block: 60px; }
  .work-section { padding-top: 60px; padding-bottom: 30px; }
  .ai-section { padding-top: 30px; padding-bottom: 60px; }
  .about-section { padding-block: 60px; }
  h1 { font-size: clamp(48px, 14vw, 68px); }
  h2 { font-size: clamp(38px, 11vw, 52px); }
  .hero-copy { font-size: 18px; }
  .case-grid, .range-grid { grid-template-columns: 1fr; }
  .stacked-heading > div { max-width: 100%; }
  .case-content, .range-content { padding: 24px; }
  .range-card { min-height: 0; }
  .ai-copy, .about-content { padding: 30px 24px; }
  .ai-media { min-height: 0; aspect-ratio: 16 / 9; }
  .ai-media video { object-fit: contain; }
  .about-photo { min-height: 420px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat { min-height: 140px; padding: 16px; }
  .stat strong { font-size: 32px; }
  .site-footer { margin-top: 0; padding-top: 34px; }
  .footer-invite h2 { font-size: clamp(28px, 8vw, 36px); }
  .footer-bottom { align-items: flex-end; }
  .top-button { right: 14px; bottom: 14px; }
  .case-page-hero { padding-block: 50px; }
  .case-page-work { padding: 0 0 48px; }
  .case-page .case-content { min-height: 0; }
  .range-page-hero { padding-block: 50px; }
  .range-portfolio { padding: 0 0 48px; }
  .portfolio-filters { gap: 8px; margin-bottom: 26px; }
  .portfolio-filters button { width: 100%; justify-content: flex-start; text-align: left; border-radius: 10px; }
  .portfolio-masonry { columns: 1; }
  .portfolio-item { margin-bottom: 20px; }
  .contact-layout { gap: 34px; padding-block: 50px; }
  .contact-form { gap: 10px; padding: 26px 22px; border-radius: 16px; }
  .form-field textarea { min-height: 130px; }
  .about-page-hero { padding-block: 50px; }
  .about-canvas { padding-block: 40px; }
  .about-hero-layout, .between-panel, .principles-layout, .leadership-story { grid-template-columns: 1fr; }
  .about-hero-photo { width: min(100%, 340px); height: 425px; justify-self: start; }
  .about-card-stack { gap: 32px; }
  .between-panel { height: auto; }
  .between-image { width: min(100%, 382px); height: auto; aspect-ratio: 555 / 800; justify-self: center; }
  .between-copy, .principles-panel, .work-around-panel, .fun-panel { padding: 32px 24px; }
  .about-page .section-intro h2, .between-copy h2 { font-size: clamp(32px, 9vw, 40px); }
  .principle-grid, .fun-grid { grid-template-columns: 1fr; }
  .principle-grid { gap: 18px; margin-top: 8px; }
  .principle { padding: 28px 22px; }
  .work-around-intro { margin-bottom: 32px; }
  .leadership-story { gap: 24px; padding-block: 34px; }
  .leadership-story-reverse .leadership-image, .leadership-story-reverse > div:last-child { grid-column: auto; grid-row: auto; }
  .leadership-image { aspect-ratio: 16 / 9; }
  .fun-grid { gap: 22px; margin-top: 36px; }
  .fun-card > div { padding: 24px; }
  .about-hero-actions .button { width: auto; }
  .range-child-hero { padding: 50px 0 18px; }
  .range-child-gallery { padding: 18px 0 48px; }
  .range-project-nav { padding-block: 48px; }
  .range-child-stack { gap: 16px; }
  .range-project-link > img { width: 116px; height: 116px; }
  .range-project-direction { max-width: 150px; font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .status-dot { animation: none; }
}

/* WordPress adapter: preserve the approved mockup beneath the logged-in toolbar. */
body.admin-bar .site-header { top: 32px; }
body.lx-v2-page { font-weight: 400 !important; }
#wpadminbar { position: fixed; }
#primary-navigation img.nav-link-icon {
  object-fit: contain;
  filter: brightness(0) saturate(100%);
}
.footer-links img.footer-link-icon {
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(96%) sepia(10%) saturate(323%) hue-rotate(350deg) brightness(103%) contrast(95%);
}

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

/* Bernd's Kirki output marks heading typography !important; confine the
   approved heading rules to this template with equal priority. */
body.lx-v2-page h1,
body.lx-v2-page h2,
body.lx-v2-page h3 {
  letter-spacing: -0.035em !important;
  text-transform: none !important;
}
body.lx-v2-page h1,
body.lx-v2-page h2 {
  font-family: Georgia, "Times New Roman", serif !important;
  font-weight: 500 !important;
}
body.lx-v2-page h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
  font-weight: 730 !important;
}
body.lx-v2-page.case-page .case-card h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
  font-weight: 730 !important;
}

/* Final WordPress adapter: preserve icon contrast and optical alignment. */
#primary-navigation img.nav-link-icon {
  object-fit: contain !important;
  filter: brightness(0) saturate(100%) !important;
}
.footer-links img.footer-link-icon {
  object-fit: contain !important;
  filter: brightness(0) saturate(100%) invert(96%) sepia(10%) saturate(323%) hue-rotate(350deg) brightness(103%) contrast(95%) !important;
}
.footer-links a {
  display: inline-grid !important;
  grid-template-columns: 18px auto;
  align-items: center !important;
}
.footer-links a > span {
  align-self: center;
  line-height: 18px;
  transform: translateY(1px);
}

/* V2 TYPOGRAPHY LOCK
 * Keep the shared V2 system above Bernd's inline body typography.
 */
body.lx-v2-page {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
}

/* GLOBAL V2 CHROME LOCK
 * Canonical header/footer typography and micro-alignment.
 * Higher specificity prevents Bernd/Appearance inline CSS from drifting shared chrome.
 */
body.lx-v2-page .site-header,
body.lx-v2-page .site-footer {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
}

body.lx-v2-page #primary-navigation a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
  font-size: 15.5px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  letter-spacing: .08em !important;
}

body.lx-v2-page .site-footer {
  padding: 48px 0 22px !important;
  color: #f8f4ea !important;
  background: #312d2a !important;
}

body.lx-v2-page .site-footer .eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
  letter-spacing: .16em !important;
}

body.lx-v2-page .site-footer .footer-invite h2 {
  margin: 0 !important;
  color: #f8f4ea !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 38px !important;
  font-weight: 500 !important;
  line-height: 1.12 !important;
  letter-spacing: -.035em !important;
  transform: translateY(-1px) !important;
}

body.lx-v2-page .site-footer .footer-links a {
  display: inline-flex !important;
  grid-template-columns: none !important;
  align-items: center !important;
  gap: 8px !important;
  color: #f8f4ea !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 18px !important;
}

body.lx-v2-page .site-footer .footer-links a > span {
  align-self: auto !important;
  line-height: 18px !important;
  transform: none !important;
}

body.lx-v2-page .site-footer .footer-links a:nth-child(3) .footer-link-icon {
  transform: translateY(-1px) !important;
}

body.lx-v2-page .site-footer .status-card p:not(.eyebrow) {
  margin: 0 !important;
  color: rgba(248, 244, 234, .76) !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  transform: translateY(-1px) !important;
}

body.lx-v2-page .site-footer .copyright {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}


/* About + Range child footer raster-alignment normalization.
 * Shared footer markup remains canonical; integer line boxes prevent subpixel drift.
 */
body.lx-v2-page:is(.about-page, .range-child-page) .site-footer .footer-invite h2 {
  line-height: 42px !important;
  transform: translateY(-2px) !important;
}

body.lx-v2-page:is(.about-page, .range-child-page) .site-footer .footer-invite h2 span {
  line-height: 42px !important;
}

body.lx-v2-page:is(.about-page, .range-child-page) .site-footer .footer-links a:nth-child(3) .footer-link-icon {
  transform: translateY(-2px) !important;
}

body.lx-v2-page:is(.about-page, .range-child-page) .site-footer .status-card p:not(.eyebrow) {
  transform: translateY(-2px) !important;
}


/* RANGE CHILD CONTENT TYPES */
.range-square-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.range-lightbox-link {
  display: block;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(49, 45, 42, .08);
}

.range-lightbox-link img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .25s ease;
}

.range-lightbox-link:hover img,
.range-lightbox-link:focus-visible img {
  transform: scale(1.025);
}

.range-lightbox-link:focus-visible {
  outline: 3px solid rgba(108, 63, 73, .5);
  outline-offset: 4px;
}

.range-standard-stack {
  gap: 28px;
}

.range-standard-stack img,
.range-marketing-lead img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--white);
  border: 1px solid rgba(49, 45, 42, .08);
}

.range-marketing-lead {
  margin-bottom: 40px;
}

.range-visual-portfolio {
  width: 100%;
}

.range-visual-portfolio .vp-portfolio {
  margin: 0;
}

body.range-lightbox-open {
  overflow: hidden;
}

.range-lightbox[hidden] {
  display: none;
}

.range-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 36px;
  background: rgba(20, 18, 17, .94);
}

.range-lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  max-width: min(1200px, 92vw);
  max-height: 90vh;
  margin: 0;
}

.range-lightbox figure img {
  display: block;
  max-width: 100%;
  max-height: calc(90vh - 64px);
  margin: auto;
  object-fit: contain;
}

.range-lightbox figcaption {
  max-width: 900px;
  margin: 0 auto;
  color: #f8f4ea;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.range-lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #f8f4ea;
  background: rgba(49, 45, 42, .72);
  border: 1px solid rgba(248, 244, 234, .58);
  border-radius: 50%;
  font-size: 32px;
  font-weight: 300;
  line-height: 40px;
  cursor: pointer;
}

.range-lightbox-close:hover,
.range-lightbox-close:focus-visible {
  color: #312d2a;
  background: #f8f4ea;
}

@media (max-width: 860px) {
  .range-square-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .range-square-grid {
    grid-template-columns: 1fr;
  }

  .range-lightbox {
    padding: 64px 20px 24px;
  }

  .range-lightbox-close {
    top: 14px;
    right: 14px;
  }
}


/* GLOBAL FOOTER PIXEL-GRID NORMALIZATION
 * Keeps text and SVG rasterization consistent after variable-height page content.
 */
body.lx-v2-page .site-footer .eyebrow {
  line-height: 20px !important;
}

body.lx-v2-page .site-footer .status-card p:not(.eyebrow) {
  line-height: 22px !important;
}

body.lx-v2-page .site-footer .footer-grid {
  will-change: transform;
}


/* RANGE CHILD MEDIA CORNERS */
body.range-child-page .publication-image,
body.range-child-page .range-standard-stack img,
body.range-child-page .range-marketing-lead img,
body.range-child-page .range-lightbox-link,
body.range-child-page .range-visual-portfolio .vp-portfolio__item {
  border-radius: 14px !important;
}
body.range-child-page .range-lightbox-link,
body.range-child-page .range-visual-portfolio .vp-portfolio__item {
  overflow: hidden !important;
}