/* Migrated from Laura-Briceno-Astro-CLEAN. Source of truth: docs/DESIGN_SYSTEM.md */


/* ===== src/styles/tokens.css ===== */
:root {
  --ink: #2b2622;
  --ink-strong: #2b2622;
  --heading-color: var(--ink);
  --heading-emphasis: var(--ink);
  --paper: #f8f6f2;
  --white: #fcfbf8;
  --line: #d9d3ca;
  --muted: #706a63;
  --muted-2: #655f59;
  --accent: #2b2622;
  --cta-border: #8f8a80;
  --beige-1: #f2eee7;
  --beige-2: #f5f1eb;
  --beige-3: #f1ede6;
  --beige-4: #ece7df;
  --beige-5: #f7f3ed;
  --error: #a33a2b;
  --font-display: 'Chivo', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --container: min(1180px, calc(100% - 48px));
  --header-height: 100px;
  --ease: 180ms ease;
  --shadow-float: 0 28px 70px rgba(43, 38, 34, .12), 0 8px 24px rgba(43, 38, 34, .06);
}

@media (max-width: 800px) {
  :root {
    --container: calc(100% - 32px);
    --header-height: 76px;
  }
}


/* ===== src/styles/base.css ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body, button, input, textarea, select { font-family: var(--font-body); }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
img, svg { display: block; max-width: 100%; }
button { color: inherit; }
[hidden] { display: none !important; }

.container,
.wrap { width: var(--container); margin-inline: auto; }

h1, h2, h3, p, ul, ol, figure { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 100;
  letter-spacing: -.045em;
  color: var(--heading-color);
}
h1 em, h2 em, h3 em {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: inherit;
  color: var(--heading-emphasis);
}

.kicker,
.eyebrow,
.section-label,
.service-eyebrow,
.tagline {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lead {
  color: var(--muted-2);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.display {
  margin: 0;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: .98;
  letter-spacing: -.055em;
}

.section {
  padding-block: 120px;
  border-top: 1px solid var(--line);
}

.grid-label {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  text-decoration: none;
}
.skip-link:focus { transform: none; }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

::selection { background: var(--ink); color: var(--paper); }

@media (max-width: 800px) {
  .section { padding-block: 78px; }
  .grid-label { grid-template-columns: 1fr; gap: 28px; }
}

@media print {
  body { background: #fff; }
  .no-print, .site-header, .site-footer { display: none !important; }
  * { box-shadow: none !important; }
}


/* ===== src/styles/components/header.css ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 232, .96);
  backdrop-filter: blur(12px);
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}
.brand img {
  display: block;
  width: auto;
  height: 30px;
  max-width: 220px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.desktop-nav > a,
.desktop-nav__trigger {
  position: relative;
  border: 0;
  background: transparent;
  padding: 7px 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.desktop-nav > a::after,
.desktop-nav__services.active > .desktop-nav__trigger::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.desktop-nav > a:hover::after,
.desktop-nav > a.active::after,
.desktop-nav__services.active > .desktop-nav__trigger::after { transform: scaleX(1); }
.desktop-nav__services { position: relative; }
.desktop-nav__services::after {
  content: '';
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 24px;
}
.desktop-nav__trigger {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.desktop-nav__trigger .icon { width: 11px; height: 11px; transition: transform var(--ease); }
.desktop-nav__services.is-open .desktop-nav__trigger .icon { transform: rotate(180deg); }
.desktop-nav__submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: -20px;
  width: 310px;
  padding: 8px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.desktop-nav__submenu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: padding-left var(--ease);
}
.desktop-nav__submenu a:last-child { border-bottom: 0; }
.desktop-nav__submenu a:hover { padding-left: 5px; }

.mobile-nav-toggle { display: none; }
.mobile-nav { display: none; }

@media (max-width: 980px) {
  .brand img { height: 25px; max-width: 180px; }
  .desktop-nav { display: none; }
  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    border: 0;
    background: transparent;
    padding: 10px 0;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .mobile-nav {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-height);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav__inner { padding-block: 8px 18px; }
  .mobile-nav a,
  .mobile-nav__services-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    font-size: 12px;
    letter-spacing: .11em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
  }
  .mobile-nav__services-trigger .icon { width: 12px; height: 12px; transition: transform var(--ease); }
  .mobile-nav__services-trigger[aria-expanded='true'] .icon { transform: rotate(180deg); }
  .mobile-nav__services { padding-left: 18px; }
  .mobile-nav__services a {
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
  }
}


/* ===== src/styles/components/buttons.css ===== */
.button,
.outline-action {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.button:hover,
.outline-action:hover {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.text-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 10px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: 14px;
  text-decoration: none;
}
.text-link .icon { width: 17px; height: 17px; }
.circle-action {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  transition: background var(--ease), color var(--ease);
}
.circle-action:hover { background: var(--ink); color: var(--paper); }
.circle-action .icon { width: 19px; height: 19px; }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  width: 52px;
  height: 52px;
  border: 1px solid var(--cta-border);
  border-radius: 50%;
  background: rgba(244, 240, 232, .95);
  color: var(--ink);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: opacity var(--ease), visibility var(--ease), transform var(--ease), background var(--ease), color var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.back-to-top .icon { width: 18px; height: 18px; }

@media (max-width: 800px) {
  .button,
  .outline-action { width: 100%; }
  .back-to-top { right: 16px; bottom: 88px; }
  .circle-action {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    flex-basis: 48px;
  }
}


/* ===== src/styles/components/placeholders.css ===== */
.image-card { margin: 0; position: relative; }
.image-card--landscape { aspect-ratio: 4 / 3; }
.image-card--wide { aspect-ratio: 16 / 7; }
.image-card--portrait { aspect-ratio: 4 / 5; }
.image-card__placeholder {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: var(--beige-2);
}
.image-card__placeholder::before,
.image-card__placeholder::after {
  content: '';
  position: absolute;
  left: -20%;
  top: 50%;
  width: 140%;
  height: 1px;
  background: #b7b1a5;
  transform: rotate(36deg);
}
.image-card__placeholder::after { transform: rotate(-36deg); }
.image-card__meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.image-card__mark {
  position: relative;
  z-index: 1;
  align-self: center;
  font-family: var(--font-display);
  font-size: clamp(78px, 10vw, 126px);
  font-weight: 300;
  letter-spacing: -.06em;
  color: rgba(43, 38, 34, .16);
}
.image-card--filled { aspect-ratio: auto; }
.image-card--filled img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-card--filled.image-card--landscape img { aspect-ratio: 4 / 3; }
.image-card--filled.image-card--wide img { aspect-ratio: 16 / 7; }
.image-card--filled.image-card--portrait img { aspect-ratio: 4 / 5; }


/* ===== src/styles/components/footer.css ===== */
.site-footer {
  min-height: 100px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}
.site-footer nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 600px) {
  .site-footer { padding-block: 28px; }
  .site-footer__inner { align-items: flex-start; flex-direction: column; }
}


/* ===== src/styles/pages/home.css ===== */
.home-hero {
  min-height: 680px;
  padding: 110px 0 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-hero h1,
.home-hero__title {
  max-width: 1110px;
  margin: 38px 0 76px;
  font-size: clamp(54px, 7.1vw, 102px);
  line-height: .94;
  letter-spacing: -.055em;
}
.home-hero__title-line {
  display: block;
  white-space: nowrap;
}
.home-hero__visual {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: .86em;
  margin-inline: .045em;
  vertical-align: -.08em;
}
.home-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home-hero__visual--laptop {
  width: 1.08em;
  height: .84em;
  margin-left: .02em;
  margin-right: .03em;
  transform: rotate(-3deg);
}
.home-hero__visual--target {
  width: 1.04em;
  height: 1em;
  margin-left: -.34em;
  margin-right: .02em;
  vertical-align: -.13em;
}
.home-hero__visual--web {
  width: .9em;
  height: .84em;
  margin-left: .01em;
  margin-right: .04em;
  vertical-align: -.09em;
}
.home-hero__visual--laura {
  width: 1.02em;
  height: 1em;
  margin-left: .09em;
  vertical-align: -.16em;
}
.home-hero__keep { white-space: nowrap; }
.home-hero__highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.home-hero__highlight > img {
  position: absolute;
  z-index: -1;
  left: -.02em;
  bottom: -.075em;
  width: 104%;
  max-width: none;
  height: auto;
  pointer-events: none;
}
.home-hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 100px;
  align-items: end;
  margin-left: 33%;
}
.home-hero__bottom > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted-2);
  font-size: 19px;
  line-height: 1.6;
}
.home-hero__actions {
  min-width: 240px;
  display: grid;
  gap: 12px;
}
.home-hero__services-link { margin: 0; }

.home-services { padding: 130px 0; }
.home-services__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 78px;
}
.home-services__head > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  text-align: right;
}
.home-service {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 100px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.home-service__number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 12px;
}
.home-service h2 {
  margin: 14px 0 28px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.06;
}
.home-service__text {
  margin-bottom: 0;
  color: var(--muted-2);
  font-size: 17px;
  line-height: 1.65;
}
.home-service ul {
  list-style: none;
  padding: 22px 0 0;
  margin: 30px 0 12px;
  border-top: 1px solid var(--line);
}
.home-service li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
}
.home-service li .icon { width: 14px; height: 14px; }
.home-service .service-card-action {
  width: fit-content;
  min-width: 250px;
  margin-top: 26px;
}

.home-manifesto {
  --heading-color: var(--paper);
  --heading-emphasis: var(--paper);
  padding: 140px 0;
  background: var(--ink);
  color: var(--paper);
}
.home-manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
}
.home-manifesto h2 {
  margin: 0 0 48px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
}
.home-manifesto p:last-child {
  max-width: 650px;
  margin: 0 0 0 auto;
  color: #d5d0c5;
  font-size: 18px;
  line-height: 1.7;
}

.home-journey { padding: 120px 0; background: var(--white); }
.home-journey__line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
}
.home-journey article {
  position: relative;
  padding: 24px 40px 0 0;
  border-top: 1px solid var(--ink);
}
.home-journey article::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
}
.home-journey article > span {
  display: block;
  margin-bottom: 44px;
  font-size: 11px;
}
.home-journey h3 {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.1;
}
.home-journey article p { color: var(--muted); font-size: 14px; }

.home-diagnostic {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}
.home-diagnostic h2 {
  max-width: 820px;
  margin: 0 0 24px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
}
.home-diagnostic div > p {
  max-width: 590px;
  margin-bottom: 34px;
  color: var(--muted-2);
  line-height: 1.65;
}
.home-diagnostic .outline-action { width: min(360px, 100%); }

.home-contact { padding: 150px 0; }
.home-contact h2 {
  max-width: 1010px;
  margin: 34px 0 70px;
  font-size: clamp(45px, 6vw, 82px);
  line-height: 1.05;
}
.home-contact__link { width: min(460px, 100%); }

.home-footer {
  min-height: 100px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 800px) {
  .home-hero { min-height: 600px; padding: 72px 0 56px; }
  .home-hero h1,
  .home-hero__title { margin: 30px 0 54px; font-size: clamp(42px, 10vw, 60px); line-height: .96; }
  .home-hero__title-line { display: inline; white-space: normal; }
  .home-hero__visual--target { margin-left: .02em; }
  .home-hero__bottom { grid-template-columns: 1fr; gap: 36px; margin-left: 0; }
  .home-hero__bottom > p { font-size: 16px; }
  .home-hero__actions { width: 100%; }
  .home-services { padding: 90px 0; }
  .home-services__head { margin-bottom: 36px; }
  .home-service { grid-template-columns: 1fr; gap: 44px; padding: 64px 0; }
  .home-service:nth-of-type(even) .home-service__copy { order: 0; }
  .home-manifesto { padding: 90px 0; }
  .home-manifesto__grid { grid-template-columns: 1fr; gap: 34px; }
  .home-journey { padding: 84px 0; }
  .home-journey__line { grid-template-columns: 1fr; gap: 46px; }
  .home-journey article > span { margin-bottom: 18px; }
  .home-diagnostic { grid-template-columns: 1fr; gap: 30px; padding: 90px 0; }
  .home-contact { padding: 100px 0; }
}

@media (max-width: 520px) {
  .home-hero h1,
  .home-hero__title { font-size: 43px; }
  .home-hero__visual--web { display: none; }
  .home-hero__visual--laptop { width: 1em; }
  .home-hero__visual--target { width: .94em; height: .94em; }
  .home-hero__visual--laura { width: .96em; height: .96em; }
  .home-services__head > p:last-child { display: none; }
  .home-service h2 { font-size: 40px; }
  .home-contact h2 { font-size: 43px; }
  .home-footer span:last-child { display: none; }
}


/* ===== src/styles/pages/services.css ===== */
.service-sticky-cta {
  position: fixed;
  top: calc(var(--header-height) + 22px);
  right: max(24px, calc((100vw - 1180px) / 2));
  z-index: 82;
  min-width: 230px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(43, 38, 34, .16);
  transition: background var(--ease), color var(--ease);
}
.service-sticky-cta:hover { background: var(--paper); color: var(--ink); }
.service-sticky-cta .icon { width: 17px; height: 17px; }

.service-hero {
  min-height: 680px;
  padding: 92px 0 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-hero__meta {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 760px;
}
.service-hero__meta > span { color: var(--muted); font-size: 13px; }
.service-hero h1 {
  max-width: 980px;
  margin: 82px 0;
  font-size: clamp(66px, 8vw, 112px);
  line-height: .93;
  letter-spacing: -.06em;
}
.service-hero__bottom {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 100px;
}
.service-hero__bottom > p {
  width: min(690px, 68%);
  margin: 0;
  color: var(--muted-2);
  font-size: 20px;
  line-height: 1.6;
}

.service-intro { --heading-color: var(--paper); --heading-emphasis: var(--paper); padding: 125px 0; background: var(--ink); color: var(--paper); }
.service-intro__grid { display: grid; grid-template-columns: 1fr 3fr; gap: 60px; }
.service-intro h2 {
  margin: 0;
  font-size: clamp(40px, 5.3vw, 72px);
  line-height: 1.08;
}

.service-feature { padding: 120px 0; }
.service-process { padding: 40px 0 140px; }
.service-process__head {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  margin-bottom: 78px;
}
.service-process__head h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.08;
}
.service-process__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.service-process__grid article {
  padding: 25px 30px 35px 0;
  border-top: 1px solid var(--ink);
}
.service-process__grid article > span { display: block; margin-bottom: 48px; font-size: 11px; }
.service-process__grid h3 { margin: 0 0 18px; font-size: 28px; line-height: 1.1; }
.service-process__grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.service-deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  padding: 0 0 140px;
}
.service-deliverables h2 { margin: 28px 0 50px; font-size: 44px; line-height: 1.08; }
.service-deliverables ul { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.service-deliverables li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.service-deliverables li .icon { width: 15px; height: 15px; }

.service-result { padding: 130px 0; background: var(--white); }
.service-result__grid { display: grid; grid-template-columns: 1fr 3fr; gap: 60px; }
.service-result h2 { margin: 0 0 48px; font-size: clamp(42px, 5vw, 66px); line-height: 1.08; }
.service-result__grid > div > p {
  max-width: 650px;
  margin: 0 0 0 auto;
  color: var(--muted-2);
  font-size: 18px;
  line-height: 1.7;
}

.service-next { padding: 110px 0; border-bottom: 1px solid var(--line); }
.service-next > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 45px;
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.05em;
  text-decoration: none;
}
.service-next .icon { width: .68em; height: .68em; }

.service-contact { padding: 150px 0; }
.service-contact h2 {
  max-width: 1000px;
  margin: 35px 0 70px;
  font-size: clamp(45px, 6vw, 82px);
  line-height: 1.05;
}
.service-contact .text-link { width: min(560px, 100%); }
.service-footer {
  min-height: 100px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
}
.service-footer a { color: inherit; text-decoration: none; }

.services-index-hero {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  padding: 120px 0 110px;
}
.services-index-hero h1 {
  max-width: 950px;
  margin: 0 0 34px;
  font-size: clamp(54px, 6.5vw, 92px);
  line-height: .98;
}
.services-index-hero div > p { max-width: 620px; color: var(--muted-2); font-size: 18px; line-height: 1.65; }
.services-index-list { padding-bottom: 130px; }
.services-index-list article {
  display: grid;
  grid-template-columns: 100px 1fr 56px;
  gap: 54px;
  align-items: center;
  padding: 62px 0;
  border-top: 1px solid var(--line);
}
.services-index-list__number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 12px;
}
.services-index-list h2 { margin: 12px 0 18px; font-size: clamp(38px, 4.5vw, 58px); line-height: 1.05; }
.services-index-list article div > p:last-child { max-width: 680px; margin: 0; color: var(--muted-2); }

@media (max-width: 800px) {
  .service-sticky-cta {
    top: auto;
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    min-width: 0;
    min-height: 56px;
  }
  .service-hero { min-height: 610px; padding: 70px 0 58px; }
  .service-hero__meta { display: block; }
  .service-hero__meta > span { display: block; margin-top: 18px; }
  .service-hero h1 { margin: 66px 0; font-size: clamp(50px, 13vw, 68px); }
  .service-hero__bottom { gap: 26px; justify-content: space-between; }
  .service-hero__bottom > p { width: auto; max-width: 86%; font-size: 17px; }
  .service-intro { padding: 90px 0; }
  .service-intro__grid,
  .service-process__head,
  .service-result__grid,
  .services-index-hero { grid-template-columns: 1fr; gap: 28px; }
  .service-feature { padding: 72px 0; }
  .service-feature .image-card--wide { aspect-ratio: 4 / 3; }
  .service-process { padding: 34px 0 90px; }
  .service-process__grid { grid-template-columns: 1fr 1fr; }
  .service-deliverables { grid-template-columns: 1fr; gap: 58px; padding-bottom: 90px; }
  .service-result { padding: 90px 0; }
  .service-result__grid > div > p { margin-left: 0; }
  .service-next { padding: 80px 0; }
  .service-next > a { font-size: 48px; }
  .service-contact { padding: 100px 0 130px; }
  .services-index-hero { padding: 80px 0 70px; }
  .services-index-list { padding-bottom: 90px; }
  .services-index-list article { grid-template-columns: 48px 1fr; gap: 24px; }
  .services-index-list article > .circle-action { grid-column: 2; }
}

@media (max-width: 520px) {
  .service-hero__meta > span { display: none; }
  .service-hero h1 { font-size: 50px; }
  .service-intro h2 { font-size: 38px; }
  .service-process__grid { grid-template-columns: 1fr; }
  .service-process__grid article > span { margin-bottom: 20px; }
  .service-deliverables h2 { font-size: 38px; }
  .service-next > a { font-size: 38px; }
  .service-footer { padding: 28px 0 92px; align-items: flex-start; flex-direction: column; }
}


/* ===== src/styles/pages/blog.css ===== */
.blog-hero {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  padding: 120px 0 110px;
}
.blog-hero h1 { max-width: 960px; margin: 0 0 34px; font-size: clamp(54px, 6.5vw, 92px); line-height: .98; }
.blog-hero div > p { max-width: 650px; color: var(--muted-2); font-size: 18px; line-height: 1.65; }
.blog-list { padding-bottom: 130px; }
.blog-list article {
  display: grid;
  grid-template-columns: 150px 1fr 56px;
  gap: 48px;
  align-items: center;
  padding: 54px 0;
  border-top: 1px solid var(--line);
}
.blog-list__date { color: var(--muted); font-size: 12px; }
.blog-list h2 { margin: 12px 0 16px; font-size: clamp(32px, 3.4vw, 48px); line-height: 1.06; }
.blog-list article div > p:last-child { max-width: 680px; margin: 0; color: var(--muted-2); }
.blog-article-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 820px);
  gap: 72px;
  align-items: start;
  padding: 120px 0 150px;
}
.blog-toc {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  padding-top: 6px;
}
.blog-toc__label { margin-bottom: 18px; }
.blog-toc nav {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.blog-toc a {
  position: relative;
  display: block;
  padding: 11px 10px 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.38;
  text-decoration: none;
  transition:
    color var(--ease),
    background var(--ease),
    padding var(--ease),
    font-size var(--ease),
    font-weight var(--ease);
}
.blog-toc a:hover {
  color: var(--ink);
  background: var(--beige-2);
  padding-left: 10px;
}
.blog-toc a.is-active {
  margin: 4px 0;
  padding: 13px 14px;
  border-bottom-color: transparent;
  background: var(--ink);
  color: var(--paper);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.32;
}
.blog-toc a.is-active + a { border-top-color: transparent; }
.blog-toc a[data-level="3"] {
  padding-left: 14px;
  font-size: 11px;
}
.blog-toc a[data-level="3"]::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: .45;
  transform: translateY(-50%);
}
.blog-toc a[data-level="3"].is-active {
  margin: 2px 0;
  padding: 11px 12px 11px 18px;
  background: var(--beige-4);
  box-shadow: inset 3px 0 0 var(--ink);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}
.blog-toc a[data-level="3"].is-active::before { display: none; }
.blog-article { width: 100%; margin: 0; padding: 0; }
.blog-article__header { padding-bottom: 68px; border-bottom: 1px solid var(--line); }
.blog-article__header h1 { margin: 22px 0 30px; font-size: clamp(50px, 6.2vw, 84px); line-height: .98; }
.blog-article__header > p:last-child { color: var(--muted-2); font-size: 19px; line-height: 1.65; }
.blog-article__body { padding-top: 64px; color: var(--muted-2); font-size: 17px; line-height: 1.75; }
.blog-article__body h2 { margin: 68px 0 24px; color: var(--ink); font-size: 44px; line-height: 1.05; }
.blog-article__body h3 { margin: 48px 0 18px; color: var(--ink); font-size: 28px; }
.blog-article__body a { color: var(--ink); text-underline-offset: 4px; }
@media (max-width: 800px) {
  .blog-hero { grid-template-columns: 1fr; gap: 28px; padding: 80px 0 70px; }
  .blog-list { padding-bottom: 90px; }
  .blog-list article { grid-template-columns: 1fr 48px; gap: 20px; }
  .blog-list__date { grid-column: 1 / -1; }
  .blog-article-shell { width: var(--container); grid-template-columns: 1fr; gap: 32px; padding: 80px 0 100px; }
  .blog-toc { position: static; }
  .blog-toc nav { grid-template-columns: 1fr 1fr; column-gap: 22px; }
}


/* ===== src/styles/pages/legal.css ===== */
.legal-page { width: min(820px, calc(100% - 32px)); margin: 0 auto; padding: 110px 0 140px; }
.legal-page h1 { margin: 18px 0 36px; font-size: clamp(48px, 6vw, 78px); line-height: 1; }
.legal-page h2 { margin: 52px 0 18px; font-size: 34px; line-height: 1.1; }
.legal-page p { color: var(--muted-2); line-height: 1.75; }
.legal-warning { margin: 28px 0 34px; padding: 18px; border: 1px solid var(--error); color: var(--error); line-height: 1.55; }
@media(max-width:800px){.legal-page{padding:78px 0 100px}.legal-page h2{font-size:30px}}


/* ===== src/styles/pages/diagnostic.css ===== */
.diagnostic-page { min-height: 100vh; }
.diagnostic-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow: hidden;
  padding: 14px;
  background: rgba(103, 94, 82, .25);
}
.diagnostic-modal {
  width: min(1180px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  margin: 0 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-float);
  scrollbar-gutter: stable;
}
.diagnostic-nav {
  width: calc(100% - 64px);
  margin-inline: auto;
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 68px;
  border-bottom: 1px solid rgba(43, 38, 34, .07);
  background: rgba(244, 240, 232, .96);
  backdrop-filter: blur(12px);
  border-radius: 18px 18px 0 0;
}

.diagnostic-brand {
  justify-self: start;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
}
.diagnostic-brand img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.diagnostic-nav > span {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.diagnostic-close {
  justify-self: end;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  text-decoration: none;
}
.diagnostic-close .icon { width: 16px; height: 16px; }

.diagnostic-view { width: calc(100% - 64px); margin-inline: auto; padding: 86px 68px 72px; min-height: 640px; background: var(--paper); border-radius: 0 0 18px 18px; box-shadow: none; }
.diagnostic-start {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.diagnostic-start h1,
.diagnostic-question h1,
.diagnostic-contact h1 {
  max-width: 900px;
  margin: 28px 0 0;
  font-size: clamp(48px, 5.9vw, 82px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.diagnostic-start__bottom {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 80px;
}
.diagnostic-start__bottom > p {
  width: min(500px, 55%);
  margin: 0;
  color: var(--muted-2);
  line-height: 1.65;
}
.diagnostic-start__bottom .outline-action { width: 230px; }

.diagnostic-progress {
  display: grid;
  grid-template-columns: 120px 1fr 44px;
  gap: 18px;
  align-items: center;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.diagnostic-progress > div { height: 1px; background: var(--line); }
.diagnostic-progress i { display: block; height: 1px; background: var(--ink); }
.diagnostic-progress b { font-weight: 400; text-align: right; }
.diagnostic-question { padding: 88px 58px 34px; }
.diagnostic-question h1 { max-width: 940px; font-size: clamp(44px, 5vw, 72px); }
.diagnostic-help { max-width: 650px; margin: 24px 0 0; color: var(--muted); }

.scale-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 54px;
}
.scale-options button {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.scale-options button:hover,
.scale-options button.selected {
  transform: translateX(5px);
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.scale-options span { font-family: var(--font-display); font-size: 24px; font-weight: 500; }
.scale-options strong { font-size: 11px; font-weight: 400; line-height: 1.4; }
.diagnostic-back {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 8px 0;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.project-options { margin-top: 44px; border-top: 1px solid var(--line); }
.project-options button {
  width: 100%;
  display: grid;
  grid-template-columns: 58px 1fr 30px;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), color var(--ease), padding var(--ease);
}
.project-options button:hover,
.project-options button.selected { transform: translateX(5px); }
.project-options button.selected { padding-inline: 14px; background: var(--ink); color: var(--paper); }
.project-options strong { font-weight: 400; }
.project-options b { justify-self: end; font-size: 20px; font-weight: 300; }
.diagnostic-next { width: min(300px, 100%); margin: 36px 0 0 auto; }
.diagnostic-next:disabled { opacity: .38; cursor: not-allowed; }

.diagnostic-contact__head { max-width: 790px; margin-bottom: 56px; }
.diagnostic-contact h1 { font-size: clamp(42px, 5vw, 70px); }
.diagnostic-contact__head > p:last-child { margin-top: 22px; color: var(--muted-2); line-height: 1.65; }
.project-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 46px; }
.project-fields label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
}
.project-fields .full { grid-column: 1 / -1; }
.project-fields input,
.project-fields select {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
}
.project-fields textarea {
  width: 100%;
  min-height: 150px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 14px;
  color: var(--ink);
  outline: 0;
}
.project-fields input:focus,
.project-fields select:focus { border-bottom-color: var(--ink); }
.project-fields textarea:focus { border-color: var(--ink); }
.privacy { flex-direction: row !important; align-items: flex-start; gap: 12px !important; }
.privacy input { width: 16px; min-height: 16px; margin-top: 2px; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { min-height: 24px; margin: 28px 0 0; color: var(--muted); font-size: 13px; }
.form-status[data-state='error'] { color: var(--error); }
.diagnostic-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 38px;
}
.diagnostic-form-actions > button:first-child,
.diagnostic-form-actions > a:first-child {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 8px 0;
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
}
.diagnostic-form-actions .outline-action { width: min(300px, 100%); }
.brief-choice-field > p { margin: 0; color: var(--ink); font-size: 14px; }
.brief-choice-field > span { font-size: 11px; }
.brief-choice-grid { margin-top: 14px; border-top: 1px solid var(--line); }
.brief-choice-grid button {
  width: 100%;
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.brief-choice-grid button.selected { transform: translateX(5px); }

.diagnostic-result {
  position: relative;
  width: 100%;
  margin-top: -2px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: none;
}
.result-container { width: min(1040px, calc(100% - 96px)); margin-inline: auto; }
.request-status {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 26px;
  padding-top: 46px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line);
}
.status-check {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 15px;
}
.request-status h2 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}
.request-status p:last-child { max-width: 760px; margin: 0; color: var(--muted-2); }
.diagnostic-result__head {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 50px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 42px;
}
.diagnostic-result__head h1 {
  margin: 20px 0 24px;
  font-size: clamp(46px, 5.3vw, 74px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.diagnostic-result__head > div > p:last-child { max-width: 430px; color: var(--muted-2); }
.radar-wrap { width: min(100%, 560px); margin: auto; }
.radar-wrap svg { overflow: visible; }
.radar-ring { fill: none; stroke: #b9b3a7; stroke-width: 1; }
.radar-axis { stroke: var(--line); stroke-width: 1; }
.radar-value { fill: rgba(43, 38, 34, .12); stroke: var(--ink); stroke-width: 3; stroke-linejoin: round; }
.radar-label { font: 500 12px var(--font-body); letter-spacing: .05em; text-transform: uppercase; fill: var(--ink); }

.axis-explanation { padding-top: 68px; padding-bottom: 76px; border-top: 1px solid var(--line); }
.axis-explanation > div { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 38px; }
.axis-explanation article { margin-right: 24px; padding: 22px 22px 28px 0; border-top: 1px solid var(--ink); }
.axis-score { display: flex; align-items: baseline; gap: 10px; margin-bottom: 24px; }
.axis-score strong { font-family: var(--font-display); font-size: 18px; font-weight: 300; }
.axis-score b { color: var(--muted); font-size: 9px; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; }
.axis-explanation h3 { margin: 0 0 10px; font-size: 20px; font-weight: 500; letter-spacing: -.025em; }
.axis-explanation article p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.area-score-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 78px;
  border-top: 1px solid var(--line);
}
.area-score-grid article { padding: 28px 30px; border-right: 1px solid var(--line); }
.area-score-grid article:last-child { border-right: 0; }
.area-score-grid article.primary { background: var(--beige-3); }
.area-score-grid article > span { font-size: 10px; }
.area-score-grid h3 { margin: 24px 0 12px; font-size: 21px; font-weight: 500; letter-spacing: -.025em; }
.area-score-grid strong { font-family: var(--font-display); font-size: 40px; font-weight: 300; }
.area-score-grid i { display: block; height: 2px; margin-top: 22px; background: var(--line); }
.area-score-grid i b { display: block; height: 2px; background: var(--ink); }

.result-recommendation { padding: 88px 0 96px; background: var(--beige-1); }
.result-recommendation h2 {
  max-width: 980px;
  margin: 24px 0;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1;
}
.result-recommendation p { max-width: 720px; color: var(--muted-2); font-size: 17px; line-height: 1.65; }
.result-recommendation .button { width: min(260px, 100%); margin-top: 28px; }
.brief-success-actions { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 28px; }
.brief-success-actions a { display: inline-flex; gap: 7px; align-items: center; color: var(--ink); font-size: 13px; }
.brief-success-actions .icon { width: 14px; height: 14px; }

@media (max-width: 800px) {
  .diagnostic-overlay { padding: 10px; }
  .diagnostic-modal { width: calc(100vw - 20px); max-height: calc(100vh - 20px); border-radius: 14px; }
  .diagnostic-nav { width: calc(100% - 16px); min-height: 66px; padding: 0 22px; border-radius: 14px 14px 0 0; }
  .diagnostic-brand, .diagnostic-brand img { width: 40px; height: 40px; }
  .diagnostic-nav > span { display: none; }
  .diagnostic-view { width: calc(100% - 16px); min-height: calc(100vh - 86px); padding: 58px 28px 48px; border-radius: 0 0 14px 14px; }
  .diagnostic-start__bottom { display: block; }
  .diagnostic-start__bottom > p { width: auto; }
  .diagnostic-start__bottom .outline-action { width: 100%; margin-top: 34px; }
  .diagnostic-progress { grid-template-columns: 100px 1fr 38px; gap: 12px; }
  .diagnostic-question { padding: 62px 0 28px; }
  .scale-options { grid-template-columns: 1fr; }
  .scale-options button { min-height: 62px; flex-direction: row; align-items: center; }
  .project-fields { grid-template-columns: 1fr; }
  .project-fields .full { grid-column: auto; }
  .diagnostic-form-actions { align-items: stretch; flex-direction: column-reverse; }
  .diagnostic-form-actions .outline-action { width: 100%; }
  .result-container { width: calc(100% - 48px); }
  .diagnostic-result__head { grid-template-columns: 1fr; gap: 30px; }
  .axis-explanation > div { grid-template-columns: 1fr 1fr; }
  .area-score-grid { grid-template-columns: 1fr; }
  .area-score-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .area-score-grid article:last-child { border-bottom: 0; }
}

@media (max-width: 520px) {
  .diagnostic-view { padding-inline: 20px; }
  .diagnostic-start h1,
  .diagnostic-question h1,
  .diagnostic-contact h1 { font-size: 42px; }
  .diagnostic-progress { grid-template-columns: 82px 1fr 34px; font-size: 9px; }
  .axis-explanation > div { grid-template-columns: 1fr; }
  .radar-label { font-size: 10px; }
  .request-status { grid-template-columns: 1fr; }
  .result-container { width: calc(100% - 36px); }
}

@media print {
  .diagnostic-overlay { position: static; padding: 0; background: #fff; overflow: visible; }
  .diagnostic-modal { width: 100%; max-height: none; overflow: visible; border-radius: 0; box-shadow: none; }
  .diagnostic-nav, .diagnostic-form-actions { display: none !important; }
}



/* ===== Laravel public proposal ===== */
.proposal-public__hero{padding:90px 0 120px}
.proposal-public__top{display:flex;justify-content:space-between;border-bottom:1px solid var(--line);padding-bottom:20px;margin-bottom:90px;font-size:12px;text-transform:uppercase;letter-spacing:.12em}
.proposal-public__top a{text-decoration:none;font-family:var(--font-display);font-size:24px}
.proposal-public__hero h1{font-size:clamp(54px,7.5vw,104px);line-height:.96;max-width:1050px;margin:24px 0 36px}
.proposal-public__lead{font-size:clamp(18px,2vw,25px);max-width:760px;color:var(--muted-2)}
.proposal-public__meta{display:flex;gap:30px;margin-top:60px;font-size:12px;text-transform:uppercase;letter-spacing:.1em}
.proposal-public__context{padding:120px 0;display:grid;grid-template-columns:repeat(3,1fr);gap:55px;border-top:1px solid var(--line)}
.proposal-public__context h2{font-size:clamp(28px,3vw,42px);margin:24px 0}
.proposal-public__context p:last-child{color:var(--muted-2);white-space:normal}
.proposal-public__proposal{background:var(--ink);color:var(--paper);padding:130px 0}
.proposal-public__proposal h2,.proposal-public__cta h2{font-size:clamp(44px,5vw,72px);margin:30px 0}
.proposal-public__body{max-width:820px;font-size:19px;line-height:1.7;color:#e8e1d6}
.proposal-public__items{margin-top:70px;border-top:1px solid rgba(244,240,232,.35)}
.proposal-public__items article{display:grid;grid-template-columns:80px 1fr;padding:25px 0;border-bottom:1px solid rgba(244,240,232,.2)}
.proposal-public__items p{margin:0;font-size:20px}
.proposal-public__process{padding:120px 0;border-bottom:1px solid var(--line)}
.proposal-public__process>div{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;margin-top:60px}
.proposal-public__process article{border-top:1px solid var(--ink);padding-top:16px}
.proposal-public__process article span{font-size:11px;letter-spacing:.12em}
.proposal-public__process article p{font-size:18px;margin-top:22px}
.proposal-public__conditions{padding:90px 0;display:grid;grid-template-columns:1fr 1fr;gap:40px;border-bottom:1px solid var(--line)}
.proposal-public__conditions div{display:flex;flex-direction:column;gap:16px}
.proposal-public__conditions span{font-size:11px;text-transform:uppercase;letter-spacing:.14em}
.proposal-public__conditions strong{font-family:var(--font-display);font-weight:300;font-size:clamp(36px,4vw,56px)}
.proposal-public__cta{padding:130px 0;background:var(--beige-1)}
.proposal-public__cta p{max-width:700px}
.proposal-public__actions{display:flex;gap:30px;align-items:center;margin-top:45px}
.proposal-public__footer{padding:35px 0;display:flex;justify-content:space-between;font-size:12px;color:var(--muted)}
@media(max-width:800px){
 .proposal-public__hero{padding:55px 0 80px}.proposal-public__top{margin-bottom:55px}
 .proposal-public__context{grid-template-columns:1fr;padding:80px 0}
 .proposal-public__process>div{grid-template-columns:1fr 1fr}
 .proposal-public__conditions{grid-template-columns:1fr}
 .proposal-public__actions{flex-direction:column;align-items:stretch}
}

/* ===== courses.css · public course catalogue and course landing ===== */
.courses-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, .82fr);
  gap: 92px;
  align-items: center;
  padding: 92px 0 100px;
}
.courses-hero__copy h1 {
  max-width: 780px;
  margin: 34px 0 34px;
  font-size: clamp(58px, 6.9vw, 96px);
  line-height: .95;
}
.courses-hero__copy > p:not(.kicker) {
  max-width: 640px;
  margin-bottom: 36px;
  color: var(--muted-2);
  font-size: 18px;
  line-height: 1.68;
}
.courses-hero__action { width: min(320px, 100%); }
.courses-hero__visual {
  align-self: stretch;
  min-height: 520px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 1px solid var(--line);
  background: var(--beige-2);
}
.courses-hero__visual-top,
.courses-hero__visual-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.courses-hero__visual-top { border-bottom: 1px solid rgba(43,38,34,.22); }
.courses-hero__visual-bottom { border-top: 1px solid rgba(43,38,34,.22); }
.courses-hero__visual-bottom span { white-space: nowrap; }
.courses-hero__visual img { width: 100%; height: 100%; object-fit: cover; }

.courses-intro {
  --heading-color: var(--paper);
  --heading-emphasis: var(--paper);
  padding: 125px 0;
  background: var(--ink);
  color: var(--paper);
}
.courses-intro__grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
}
.courses-intro h2 {
  max-width: 940px;
  margin: 0 0 34px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.07;
}
.courses-intro__grid > div > p {
  max-width: 690px;
  margin: 0 0 0 auto;
  color: rgba(244,240,232,.72);
  font-size: 18px;
  line-height: 1.72;
}

.course-catalog { padding: 122px 0 140px; }
.course-catalog__head {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  margin-bottom: 74px;
}
.course-catalog__head h2 {
  margin: 0 0 22px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.06;
}
.course-catalog__head > div > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted-2);
  font-size: 17px;
  line-height: 1.7;
}
.course-catalog__list { border-top: 1px solid var(--line); }
.course-card {
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
  gap: 64px;
  padding: 62px 0;
  border-bottom: 1px solid var(--line);
}
.course-card__visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: var(--beige-2);
  text-decoration: none;
}
.course-card__visual img { width: 100%; height: 100%; object-fit: cover; }
.course-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.course-card__visual .course-status {
  position: absolute;
  left: 18px;
  top: 18px;
  background: var(--paper);
  color: var(--ink);
}
.course-card__content { display: flex; flex-direction: column; justify-content: center; }
.course-card__eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.course-card h3 { margin: 0 0 20px; font-size: clamp(38px, 4.2vw, 58px); line-height: 1.02; }
.course-card h3 a { text-decoration: none; }
.course-card__summary { max-width: 650px; margin-bottom: 32px; color: var(--muted-2); font-size: 17px; line-height: 1.65; }
.course-card__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 34px;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.course-card__meta div { padding: 16px 18px 16px 0; }
.course-card__meta div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.course-card__meta dt { margin-bottom: 4px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.course-card__meta dd { margin: 0; font-size: 13px; }
.course-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.course-card__price { font-family: var(--font-display); font-size: 28px; font-weight: 300; letter-spacing: -.04em; }
.course-card__footer .button { min-width: 220px; }

.course-formats { padding: 124px 0 138px; background: var(--white); }
.course-formats__head {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  margin-bottom: 70px;
}
.course-formats__head h2 { max-width: 850px; margin: 0; font-size: clamp(42px, 5vw, 68px); line-height: 1.07; }
.course-formats__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.course-formats__grid article { min-height: 310px; padding: 26px 34px 34px 0; border-top: 1px solid var(--ink); }
.course-formats__grid article + article { padding-left: 34px; border-left: 1px solid var(--line); }
.course-formats__grid article > span { display: block; margin-bottom: 72px; font-size: 11px; }
.course-formats__grid h3 { margin: 0 0 17px; font-size: 32px; line-height: 1.08; }
.course-formats__grid p { max-width: 330px; margin: 0; color: var(--muted-2); font-size: 14px; line-height: 1.7; }

.courses-service-bridge {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  padding: 128px 0 140px;
}
.courses-service-bridge h2 { max-width: 930px; margin: 0 0 26px; font-size: clamp(42px, 5vw, 70px); line-height: 1.06; }
.courses-service-bridge div > p { max-width: 650px; margin: 0 0 34px; color: var(--muted-2); line-height: 1.7; }
.courses-service-bridge .text-link { width: min(420px, 100%); }

.course-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(350px, .72fr);
  gap: 92px;
  align-items: center;
  padding: 78px 0 104px;
}
.course-back-link { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 54px; color: var(--muted); font-size: 12px; text-decoration: none; }
.course-back-link .icon { width: 15px; height: 15px; }
.course-detail-hero__labels { display: flex; align-items: center; gap: 14px; margin-bottom: 25px; }
.course-detail-hero__labels > span:last-child { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.course-detail-hero h1 { max-width: 800px; margin: 0 0 28px; font-size: clamp(60px, 7vw, 98px); line-height: .94; }
.course-detail-hero__copy > p { max-width: 690px; margin-bottom: 38px; color: var(--muted-2); font-size: 18px; line-height: 1.68; }
.course-detail-hero__actions { display: flex; align-items: center; gap: 28px; }
.course-detail-hero__actions .button { min-width: 220px; }
.course-detail-hero__actions .text-link { min-width: 250px; }
.course-detail-card { margin: 0; border: 1px solid var(--line); background: var(--white); }
.course-detail-card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.course-detail-card__body { padding: 28px; }
.course-detail-card__label { margin-bottom: 8px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.course-detail-card__body > strong { display: block; margin-bottom: 26px; font-family: var(--font-display); font-size: 44px; font-weight: 300; letter-spacing: -.05em; }
.course-detail-card dl { margin: 0; border-top: 1px solid var(--line); }
.course-detail-card dl div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.course-detail-card dt { color: var(--muted); font-size: 11px; }
.course-detail-card dd { margin: 0; font-size: 12px; text-align: right; }
.course-detail-card__notice { margin-top: 20px; padding: 16px 0 0; display: grid; gap: 4px; }
.course-detail-card__notice span { color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.course-detail-card__notice b { font-size: 13px; font-weight: 500; }

.course-outcomes {
  --heading-color: var(--paper);
  --heading-emphasis: var(--paper);
  padding: 122px 0;
  background: var(--ink);
  color: var(--paper);
}
.course-outcomes__grid { display: grid; grid-template-columns: 1fr 3fr; gap: 60px; }
.course-outcomes h2 { max-width: 900px; margin: 0 0 60px; font-size: clamp(42px, 5vw, 70px); line-height: 1.06; }
.course-outcomes__list { border-top: 1px solid rgba(244,240,232,.28); }
.course-outcomes__list article { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 20px 0; border-bottom: 1px solid rgba(244,240,232,.2); }
.course-outcomes__list article span { color: rgba(244,240,232,.55); font-size: 11px; }
.course-outcomes__list article p { max-width: 720px; margin: 0; font-size: 17px; line-height: 1.6; }

.course-facts { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; border-left: 1px solid var(--line); }
.course-facts article { min-height: 180px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.course-facts article span { color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.course-facts article strong { font-family: var(--font-display); font-size: 30px; font-weight: 300; line-height: 1.05; letter-spacing: -.04em; }

.course-program { padding: 126px 0 138px; }
.course-program__head { display: grid; grid-template-columns: 1fr 3fr; gap: 60px; margin-bottom: 72px; }
.course-program__head h2 { max-width: 900px; margin: 0 0 24px; font-size: clamp(42px, 5vw, 68px); line-height: 1.06; }
.course-program__head > div > p { max-width: 680px; margin: 0; color: var(--muted-2); font-size: 17px; line-height: 1.7; }
.course-program__modules { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.course-program__modules article { min-height: 260px; padding: 28px 34px 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.course-program__modules article > span { display: block; margin-bottom: 54px; color: var(--muted); font-size: 11px; }
.course-program__modules h3 { margin: 0 0 18px; font-size: 32px; line-height: 1.08; }
.course-program__modules p { max-width: 470px; margin: 0; color: var(--muted-2); line-height: 1.65; }

.course-cohort { padding: 120px 0 132px; background: var(--white); }
.course-cohort__grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: 92px; align-items: start; }
.course-cohort__intro h2 { margin: 28px 0 22px; font-size: clamp(48px, 5vw, 70px); line-height: 1; }
.course-cohort__intro > p:not(.section-label) { margin-bottom: 32px; color: var(--muted-2); line-height: 1.7; }
.course-cohort__intro dl { margin: 0; border-top: 1px solid var(--line); }
.course-cohort__intro dl div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.course-cohort__intro dt { color: var(--muted); font-size: 11px; }
.course-cohort__intro dd { margin: 0; font-size: 12px; text-align: right; }
.course-sessions { border-top: 1px solid var(--ink); }
.course-sessions article { display: grid; grid-template-columns: 42px minmax(0,1fr) auto; gap: 22px; align-items: center; padding: 23px 0; border-bottom: 1px solid var(--line); }
.course-sessions__number { color: var(--muted); font-size: 11px; }
.course-sessions article p { margin: 0 0 6px; color: var(--muted); font-size: 11px; }
.course-sessions article h3 { margin: 0; font-size: 22px; line-height: 1.15; }
.course-sessions__state { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

.course-includes { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; padding: 126px 0 138px; }
.course-includes h2 { max-width: 560px; margin: 28px 0 0; font-size: clamp(42px, 4.8vw, 64px); line-height: 1.06; }
.course-includes ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink); }
.course-includes li { display: flex; align-items: center; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.course-includes li .icon { width: 15px; height: 15px; }

.course-for-you { padding: 116px 0 126px; background: var(--white); }
.course-for-you__grid { display: grid; grid-template-columns: 1fr 3fr; gap: 60px; }
.course-for-you__grid > div { border-top: 1px solid var(--ink); }
.course-for-you article { display: grid; grid-template-columns: 60px 1fr; gap: 28px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.course-for-you article span { color: var(--muted); font-size: 11px; }
.course-for-you article p { max-width: 760px; margin: 0; font-family: var(--font-display); font-size: 28px; font-weight: 300; line-height: 1.2; letter-spacing: -.03em; }

.course-final-cta { padding: 138px 0 150px; }
.course-final-cta h2 { max-width: 980px; margin: 34px 0 26px; font-size: clamp(48px, 6vw, 82px); line-height: 1.03; }
.course-final-cta > p:not(.kicker) { max-width: 660px; margin-bottom: 44px; color: var(--muted-2); font-size: 17px; line-height: 1.7; }
.course-final-cta .text-link { width: min(420px, 100%); }

@media (max-width: 980px) {
  .courses-hero,
  .course-detail-hero { grid-template-columns: 1fr; gap: 54px; }
  .courses-hero__visual { min-height: 440px; }
  .course-card { grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: 42px; }
  .course-card__meta { grid-template-columns: 1fr; }
  .course-card__meta div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .course-cohort__grid { gap: 54px; }
}

@media (max-width: 800px) {
  .courses-hero { min-height: 0; padding: 72px 0 82px; }
  .courses-hero__copy h1 { font-size: clamp(48px, 12vw, 66px); }
  .courses-hero__visual { min-height: 380px; }
  .courses-hero__visual-bottom { flex-wrap: wrap; }
  .courses-intro { padding: 90px 0; }
  .courses-intro__grid,
  .course-catalog__head,
  .course-formats__head,
  .courses-service-bridge,
  .course-outcomes__grid,
  .course-program__head,
  .course-for-you__grid { grid-template-columns: 1fr; gap: 30px; }
  .courses-intro__grid > div > p { margin-left: 0; }
  .course-catalog { padding: 86px 0 96px; }
  .course-catalog__head { margin-bottom: 40px; }
  .course-card { grid-template-columns: 1fr; gap: 34px; padding: 42px 0 54px; }
  .course-card__visual { min-height: 0; aspect-ratio: 4 / 3; }
  .course-card__footer { align-items: stretch; flex-direction: column; }
  .course-card__footer .button { width: 100%; min-width: 0; }
  .course-formats { padding: 90px 0 96px; }
  .course-formats__grid { grid-template-columns: 1fr; }
  .course-formats__grid article { min-height: 0; padding: 24px 0 34px; }
  .course-formats__grid article + article { padding-left: 0; border-left: 0; }
  .course-formats__grid article > span { margin-bottom: 28px; }
  .courses-service-bridge { padding: 90px 0 104px; }
  .course-detail-hero { padding: 64px 0 90px; }
  .course-back-link { margin-bottom: 36px; }
  .course-detail-hero h1 { font-size: clamp(48px, 12vw, 68px); }
  .course-detail-hero__actions { align-items: stretch; flex-direction: column; }
  .course-detail-hero__actions .button,
  .course-detail-hero__actions .text-link { width: 100%; min-width: 0; }
  .course-outcomes { padding: 90px 0; }
  .course-facts { grid-template-columns: 1fr 1fr; }
  .course-program { padding: 90px 0 98px; }
  .course-program__modules { grid-template-columns: 1fr; }
  .course-cohort { padding: 90px 0 98px; }
  .course-cohort__grid { grid-template-columns: 1fr; gap: 50px; }
  .course-sessions article { grid-template-columns: 34px minmax(0,1fr); }
  .course-sessions__state { grid-column: 2; width: fit-content; }
  .course-includes { grid-template-columns: 1fr; gap: 48px; padding: 90px 0 100px; }
  .course-for-you { padding: 88px 0 96px; }
  .course-final-cta { padding: 96px 0 112px; }
}

@media (max-width: 520px) {
  .courses-hero__visual { min-height: 300px; }
  .course-card__meta { margin-bottom: 28px; }
  .course-facts { grid-template-columns: 1fr; border-left: 0; }
  .course-facts article { min-height: 130px; padding: 24px 0; border-right: 0; }
  .course-program__modules { border-left: 0; }
  .course-program__modules article { min-height: 0; padding: 26px 0 34px; border-right: 0; }
  .course-program__modules article > span { margin-bottom: 28px; }
  .course-for-you article { grid-template-columns: 38px 1fr; gap: 16px; }
  .course-for-you article p { font-size: 24px; }
}

/* ===== Student course area ===== */
.student-body{background:#f4f0e8;color:#2b2622;min-height:100vh}.student-header{min-height:78px;border-bottom:1px solid var(--line);display:flex;align-items:center;justify-content:space-between;padding:16px clamp(20px,4vw,64px);background:#f7f3ec;position:sticky;top:0;z-index:20}.student-brand img{display:block;width:150px;height:auto}.student-header nav{display:flex;align-items:center;gap:24px}.student-header nav a,.student-header nav button{font-size:12px;text-decoration:none;border:0;background:none;padding:0;cursor:pointer;color:inherit}.student-header nav form{margin:0}.student-main{width:min(1280px,calc(100% - 40px));margin:0 auto;padding:48px 0 90px}.student-flash{border:1px solid var(--ink);background:#faf7f1;padding:13px 16px;margin-bottom:24px}.student-page-head,.student-course-head{display:flex;justify-content:space-between;gap:24px;align-items:end;margin-bottom:34px}.student-page-head h1,.student-course-head h1{font:300 clamp(42px,6vw,72px)/.98 var(--font-display);letter-spacing:-.045em;margin:8px 0}.student-course-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.student-course-card{border:1px solid var(--line);background:#faf7f1}.student-course-card__image{aspect-ratio:16/10;background:#e8e1d7;overflow:hidden}.student-course-card__image img{width:100%;height:100%;object-fit:cover;display:block}.student-course-card>div:last-child{padding:22px}.student-course-card h2{font:300 27px/1.08 var(--font-display);margin:10px 0}.student-course-card p{color:var(--muted);line-height:1.6}.student-panel{border:1px solid var(--line);background:#faf7f1;padding:26px;margin-bottom:22px}.student-panel__head{display:flex;justify-content:space-between;align-items:center;gap:20px;margin-bottom:18px}.student-panel h2{font:300 29px var(--font-display);margin:0}.student-progress{height:7px;background:#ddd5ca;overflow:hidden}.student-progress span{display:block;height:100%;background:#2b2622}.student-progress--large{height:10px;margin:14px 0}.student-module{border-top:1px solid var(--line);padding:24px 0}.student-module:first-child{border-top:0}.student-module h3{font:300 25px var(--font-display);margin:0 0 12px}.student-lesson-list,.student-session-list,.student-resources{list-style:none;margin:0;padding:0}.student-lesson-list li,.student-session-list li,.student-resources li{display:flex;justify-content:space-between;gap:20px;align-items:center;border-top:1px solid var(--line);padding:14px 0}.student-lesson-list a,.student-session-list a,.student-resources a{text-decoration:none}.student-lesson-list li.is-locked{opacity:.48}.student-lesson-page{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:28px}.student-video{aspect-ratio:16/9;background:#191919;margin:0 0 24px}.student-video iframe,.student-video video{width:100%;height:100%;border:0}.student-richtext{line-height:1.8}.student-lesson-side{position:sticky;top:106px;align-self:start}.student-lesson-lead{font-size:18px;color:var(--muted);line-height:1.65}.student-next{display:flex;justify-content:space-between;gap:20px;margin-top:32px;padding-top:24px;border-top:1px solid var(--line)}.student-back{display:inline-block;margin-bottom:24px;text-decoration:none}.student-login-wrap{min-height:calc(100vh - 156px);display:grid;place-items:center}.student-login-card{width:min(460px,100%);border:1px solid var(--line);background:#faf7f1;padding:38px}.student-login-card h1{font:300 48px/1 var(--font-display);letter-spacing:-.04em}.student-login-card label:not(.student-remember){display:grid;gap:7px;margin:15px 0;font-size:11px;text-transform:uppercase;letter-spacing:.08em}.student-login-card input{width:100%;border:1px solid var(--line);background:#f4f0e8;padding:12px}.student-remember{display:flex;gap:8px;align-items:center;margin:15px 0}.student-remember input{width:auto}.student-empty{padding:60px 0;color:var(--muted)}.student-session-actions{display:flex;gap:8px;flex-wrap:wrap}.course-form-error{border:1px solid #a33a2b;color:#a33a2b;padding:12px 14px;margin:14px 0}
@media(max-width:900px){.student-course-grid{grid-template-columns:1fr 1fr}.student-lesson-page{grid-template-columns:1fr}.student-lesson-side{position:static}.student-header{align-items:flex-start;gap:16px}.student-header nav{gap:12px;flex-wrap:wrap;justify-content:flex-end}}
@media(max-width:620px){.student-main{width:min(100% - 28px,1280px);padding-top:30px}.student-header{position:static;flex-direction:column}.student-header nav{justify-content:flex-start}.student-course-grid{grid-template-columns:1fr}.student-page-head,.student-course-head{align-items:flex-start;flex-direction:column}.student-lesson-list li,.student-session-list li,.student-resources li{align-items:flex-start;flex-direction:column}}

/* ===== Public submission result / printable client copy ===== */
.submission-result{background:var(--paper);padding:48px 24px 80px;min-height:100vh}.submission-result__sheet{width:min(1080px,100%);margin:0 auto;background:var(--white);border:1px solid var(--line);padding:42px 56px}.submission-result__header{display:flex;align-items:center;justify-content:space-between;gap:24px;padding-bottom:28px;border-bottom:1px solid var(--line)}.submission-result__brand{display:flex;align-items:center;gap:12px;font-family:var(--font-display);font-weight:400}.submission-result__brand img{width:42px;height:42px;object-fit:contain}.submission-result__print{border:1px solid var(--ink);background:var(--ink);color:var(--paper);padding:11px 16px;cursor:pointer}.submission-result__hero{padding:70px 0 58px}.submission-result__hero h1{font:300 clamp(48px,7vw,88px)/.98 var(--font-display);letter-spacing:-.055em;max-width:850px;margin:14px 0 24px}.submission-result__lead{max-width:720px;font-size:18px;line-height:1.65;color:var(--muted)}.submission-result__meta{display:flex;gap:18px;flex-wrap:wrap;margin-top:28px;font-size:12px;text-transform:uppercase;letter-spacing:.08em}.submission-result__section{padding:56px 0;border-top:1px solid var(--line)}.submission-result__section>h2,.submission-result__recommendation h2{font:300 clamp(34px,4vw,54px)/1.05 var(--font-display);letter-spacing:-.04em;margin:12px 0 30px}.submission-result__scores{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.submission-result__scores article{border:1px solid var(--line);padding:20px;min-height:185px}.submission-result__scores article>span{font-size:11px;text-transform:uppercase;letter-spacing:.08em}.submission-result__scores strong{display:block;font:300 38px var(--font-display);margin:12px 0}.submission-result__scores strong small{font-size:18px}.submission-result__scores p{margin:0;color:var(--muted);line-height:1.5}.submission-result__recommendation{border-top:1px solid var(--ink);border-bottom:1px solid var(--ink);padding:56px 0}.submission-result__recommendation-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:60px}.submission-result__recommendation-grid>div>p{font-size:18px;line-height:1.65;margin:0}.submission-result__number{font:300 48px var(--font-display)}.submission-result__areas{display:grid;grid-template-columns:repeat(3,1fr);border:1px solid var(--line);margin-top:28px}.submission-result__areas div{padding:15px;border-right:1px solid var(--line)}.submission-result__areas div:last-child{border-right:0}.submission-result__areas span,.submission-result__areas strong{display:block}.submission-result__areas span{font-size:10px;text-transform:uppercase;letter-spacing:.07em}.submission-result__areas strong{font:300 26px var(--font-display);margin-top:6px}.submission-result__note{font-size:12px!important;color:var(--muted);margin-top:28px!important;max-width:760px}.submission-result__detail-grid{display:grid;grid-template-columns:1.4fr .6fr;gap:50px}.submission-result__project>span,.submission-result__detail-grid dt{font-size:10px;text-transform:uppercase;letter-spacing:.08em}.submission-result__project p{font-size:17px;line-height:1.7;margin:12px 0 0}.submission-result__detail-grid dl{margin:0}.submission-result__detail-grid dl div{padding:12px 0;border-top:1px solid var(--line)}.submission-result__detail-grid dd{margin:6px 0 0}.submission-result__lists{display:grid;grid-template-columns:1fr 1fr;gap:40px;margin-top:42px}.submission-result__lists h3{font:400 18px var(--font-display)}.submission-result__lists ul{padding-left:20px;line-height:1.65}.submission-result__footer{display:flex;justify-content:space-between;gap:20px;border-top:1px solid var(--line);padding-top:24px;font-size:12px}.submission-result .section-label{font-size:10px;text-transform:uppercase;letter-spacing:.13em;margin:0}
@media(max-width:760px){.submission-result{padding:0}.submission-result__sheet{border:0;padding:28px 22px}.submission-result__header{align-items:flex-start}.submission-result__hero{padding:48px 0}.submission-result__scores{grid-template-columns:1fr}.submission-result__recommendation-grid,.submission-result__detail-grid,.submission-result__lists{grid-template-columns:1fr;gap:24px}.submission-result__areas{grid-template-columns:1fr}.submission-result__areas div{border-right:0;border-bottom:1px solid var(--line)}.submission-result__areas div:last-child{border-bottom:0}.submission-result__print{font-size:12px}}
@media print{body{background:#fff!important}.submission-result{padding:0;background:#fff}.submission-result__sheet{width:100%;border:0;padding:0;background:#fff}.submission-result__print{display:none!important}.submission-result__header{padding-top:0}.submission-result__hero{padding:42px 0}.submission-result__section,.submission-result__recommendation{break-inside:avoid-page}.submission-result__scores article{break-inside:avoid}.submission-result__footer{margin-top:24px}@page{size:A4;margin:14mm}}

/* ===== Submission result brand: portrait + Laura Briceño wordmark ===== */
.submission-result__brand{display:flex;align-items:center;gap:14px}
.submission-result__brand .submission-result__portrait{display:block;width:38px!important;height:38px!important;object-fit:contain;flex:0 0 38px}
.submission-result__brand .submission-result__logo{display:block;width:130px!important;height:auto;max-width:42vw;object-fit:contain}
@media(max-width:560px){.submission-result__brand{gap:10px}.submission-result__brand .submission-result__portrait{width:32px!important;height:32px!important;flex-basis:32px}.submission-result__brand .submission-result__logo{width:130px!important;max-width:55vw}}
@media print{.submission-result__brand .submission-result__portrait{width:34px!important;height:34px!important;flex-basis:34px}.submission-result__brand .submission-result__logo{width:130px!important;max-width:none}}


/* ===== v2.3 layered editorial refinements ===== */
.site-header{background:rgba(248,246,242,.96)}
html,body{background:var(--paper)}
.button--light{background:var(--paper);color:var(--ink);border:1px solid rgba(248,246,242,.35)}
.button--light:hover{background:transparent;color:var(--paper);border-color:rgba(248,246,242,.6)}

.stack-panel{position:relative;overflow:hidden;isolation:isolate}
.stack-panel::before{content:"";position:absolute;inset:0;background:var(--panel-bg,var(--paper));border-radius:34px 34px 0 0;box-shadow:0 -14px 34px rgba(43,38,34,.08);z-index:0;transition:border-radius .18s ease, box-shadow .18s ease}
.stack-panel>*{position:relative;z-index:1}
.stack-panel+.stack-panel{margin-top:-34px}
.stack-panel.is-stuck::before{border-radius:0;box-shadow:none}
.stack-panel--paper{--panel-bg:var(--paper)}
.stack-panel--white{--panel-bg:var(--white)}
.stack-panel--dark{--panel-bg:var(--ink);color:var(--paper);--heading-color:var(--paper);--heading-emphasis:var(--paper)}
.stack-panel--dark .section-label,.stack-panel--dark .kicker,.stack-panel--dark .eyebrow,.stack-panel--dark .service-eyebrow{color:rgba(248,246,242,.72)}
.stack-panel--dark p{color:rgba(248,246,242,.78)}
.stack-panel--dark .button--outline,.stack-panel--dark .outline-action{border-color:rgba(248,246,242,.5);color:var(--paper)}
.stack-panel--dark .outline-action:hover,.stack-panel--dark .button--outline:hover{background:var(--paper);color:var(--ink)}

.home-method,.home-diagnostic,.home-contact,.service-intro,.service-feature,.service-process,.service-deliverables,.service-result{background:transparent}
.home-method{padding:128px 0 120px}
.home-method__grid{display:grid;grid-template-columns:1fr 3fr;gap:60px;margin-bottom:64px}
.home-method h2{margin:0 0 28px;font-size:clamp(42px,5vw,70px);line-height:1.04}
.home-method__grid div>p{max-width:700px;margin:0;color:rgba(248,246,242,.74);font-size:18px;line-height:1.75}
.home-method__steps{display:grid;grid-template-columns:repeat(3,1fr);gap:0;border-top:1px solid rgba(248,246,242,.28)}
.home-method__steps article{padding:26px 34px 0 0;border-right:1px solid rgba(248,246,242,.18)}
.home-method__steps article:last-child{border-right:0}
.home-method__steps span{display:block;margin-bottom:36px;font-size:10px;letter-spacing:.12em}
.home-method__steps h3{margin:0 0 14px;font-size:32px;line-height:1.08;color:var(--paper)}
.home-method__steps p{margin:0;font-size:14px;line-height:1.65;color:rgba(248,246,242,.66)}

.home-diagnostic{padding:106px 0 104px}
.home-diagnostic__grid{display:grid;grid-template-columns:1fr 3fr;gap:60px}
.home-diagnostic h2{max-width:820px;margin:0 0 22px;font-size:clamp(42px,5vw,68px);line-height:1.04}
.home-diagnostic p:last-child{max-width:600px;color:var(--muted-2)}

.home-contact{padding:120px 0 118px}
.home-contact__grid{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);gap:90px;align-items:center}
.home-contact h2{max-width:900px;margin:22px 0 22px;font-size:clamp(44px,5.4vw,78px);line-height:1.02}
.home-contact__copy>p:not(.kicker){max-width:620px;margin:0 0 34px;color:var(--muted-2);font-size:18px;line-height:1.7}
.home-contact .image-card{max-width:460px;margin-left:auto}
.home-contact__link{width:min(360px,100%)}

.service-hero{min-height:740px;padding:112px 0 110px}
.service-hero__bottom{gap:72px}
.service-hero__bottom>p{width:min(700px,72%)}
.service-intro{padding:156px 0 116px}
.service-intro__grid{display:grid;grid-template-columns:1fr 3fr;gap:60px}
.service-intro h2{max-width:900px}
.service-feature{padding:124px 0 116px}
.service-feature .image-card{box-shadow:none}
.service-process{padding:96px 0 128px}
.service-process__head{margin-bottom:56px}
.service-process__grid{gap:24px}
.service-process__grid article{padding:24px 26px 30px 0}
.service-deliverables{padding:104px 0 124px}
.service-deliverables__grid{display:grid;grid-template-columns:1fr 1fr;gap:100px;align-items:center}
.service-deliverables h2{margin:20px 0 38px;font-size:clamp(38px,4vw,54px)}
.service-deliverables .image-card{box-shadow:none}
.service-result{padding:118px 0 126px}
.service-result__grid{display:grid;grid-template-columns:1fr 3fr;gap:60px}
.service-result h2{margin:0 0 24px;font-size:clamp(44px,5vw,70px);line-height:1.04;color:var(--paper)}
.service-result__grid>div>p{max-width:720px;margin:0;color:rgba(248,246,242,.72);font-size:18px;line-height:1.7}
.service-result__cta{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:30px;align-items:end;margin-top:42px;padding-top:28px;border-top:1px solid rgba(248,246,242,.2)}
.service-result__cta p{margin:0;max-width:560px;font-size:15px;color:rgba(248,246,242,.72)}
.service-result__cta .button{min-width:260px}
.service-footer{padding:30px 0 48px}

.blog-list{position:relative;padding-bottom:130px}
.blog-list article{grid-template-columns:140px 1fr 56px;padding:60px 0;transition:transform var(--ease)}
.blog-list article:hover{transform:translateX(10px)}
.blog-list h2 a{text-decoration:none}
.blog-hover-preview{position:fixed;top:0;left:0;width:min(34vw,420px);pointer-events:none;z-index:120;transform:translate3d(24px,24px,0);mix-blend-mode:normal}
.blog-hover-preview img{width:100%;aspect-ratio:4/5;object-fit:cover;border:1px solid var(--line);box-shadow:var(--shadow-float);background:var(--white)}

@media (max-width: 980px){
  .home-contact__grid,.service-deliverables__grid{grid-template-columns:1fr;gap:52px}
  .home-contact .image-card{max-width:420px;margin-left:0}
  .service-result__cta{grid-template-columns:1fr;align-items:start}
}

@media (max-width: 800px){
  .stack-panel::before{border-radius:24px 24px 0 0}
  .stack-panel+.stack-panel{margin-top:-24px}
  .home-method,.home-diagnostic,.home-contact,.service-intro,.service-feature,.service-process,.service-deliverables,.service-result{padding-inline:0}
  .home-method{padding:90px 0 84px}
  .home-method__grid,.home-diagnostic__grid,.service-intro__grid,.service-result__grid{grid-template-columns:1fr;gap:26px}
  .home-method__steps{grid-template-columns:1fr;gap:28px;border-top:0}
  .home-method__steps article{border-right:0;border-top:1px solid rgba(248,246,242,.18);padding:20px 0 0}
  .home-diagnostic{padding:88px 0 84px}
  .home-contact{padding:90px 0 96px}
  .service-hero{min-height:620px;padding:76px 0 84px}
  .service-intro{padding:108px 0 88px}
  .service-feature{padding:84px 0 80px}
  .service-process{padding:78px 0 90px}
  .service-process__grid{grid-template-columns:1fr 1fr}
  .service-deliverables{padding:82px 0 92px}
  .service-result{padding:92px 0 100px}
  .blog-hover-preview{display:none}
}

@media (max-width: 520px){
  .home-contact h2,.service-result h2{font-size:42px}
  .home-method h2,.home-diagnostic h2,.service-intro h2{font-size:38px}
  .service-process__grid{grid-template-columns:1fr}
}

/* ===== v2.4 · restore real layered pinning + repair v2.3 layout collisions ===== */
.stack-panel{
  --panel-bg:var(--paper);
  position:relative;
  isolation:isolate;
  overflow:visible;
  background:var(--panel-bg)!important;
  border-radius:34px 34px 0 0;
  box-shadow:0 -28px 72px rgba(43,38,34,.13),0 -7px 22px rgba(43,38,34,.055);
  transition:border-radius .18s ease,box-shadow .18s ease;
}
.stack-panel::before{content:none!important}
.stack-panel>*{position:relative;z-index:1}
.stack-panel+.stack-panel{margin-top:0}
.stack-panel--paper{--panel-bg:var(--paper)}
.stack-panel--white{--panel-bg:var(--white)}
.stack-panel--dark{--panel-bg:var(--ink)}
.stack-panel.is-stuck{
  border-radius:0;
  box-shadow:none;
}
.pin-spacer{background:transparent!important}

@media (min-width:801px){
  .stack-panel{min-height:calc(100svh - var(--header-height))}
}

/* New wrapper-based sections must not inherit the old grid from the section itself. */
.home-diagnostic,
.service-deliverables{
  display:block!important;
  grid-template-columns:none!important;
  gap:0!important;
}
.home-diagnostic__grid{
  display:grid;
  grid-template-columns:1fr 3fr;
  gap:60px;
  align-items:start;
}
.service-deliverables__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:100px;
  align-items:center;
}

/* First service screen: generous hero with only a sliver of “La idea” showing. */
.service-hero{
  min-height:calc(100svh - var(--header-height) + 18px)!important;
  padding-top:112px;
  padding-bottom:94px;
}
.service-intro{margin-top:-34px}

/* Keep the restored service sequence full-width and stable. */
.service-feature,
.service-process,
.service-deliverables,
.service-result{width:100%}
.service-feature>.wrap,
.service-process>.wrap,
.service-deliverables>.wrap,
.service-result>.wrap{width:var(--container);margin-inline:auto}

/* Blog article featured image above category/date/title. */
.blog-article__feature{
  margin:0 0 44px;
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--white);
}
.blog-article__feature img{
  display:block;
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
}
.blog-article__feature + .blog-article__header{padding-top:0}

@media (max-width:980px){
  .service-deliverables__grid{grid-template-columns:1fr;gap:52px}
}

@media (max-width:800px){
  .stack-panel{
    min-height:0;
    border-radius:24px 24px 0 0;
    box-shadow:0 -18px 44px rgba(43,38,34,.11),0 -4px 14px rgba(43,38,34,.05);
  }
  .home-diagnostic__grid{grid-template-columns:1fr;gap:26px}
  .service-hero{
    min-height:0!important;
    padding:76px 0 74px!important;
  }
  .service-intro{margin-top:-20px}
  .blog-article__feature{margin-bottom:30px}
}

/* ===== v2.5 · annotated refinements ===== */
/* Home: hero now participates in the same layered sequence as Services. */
.home-hero{width:100%;padding:0;display:block}
.home-hero__inner{min-height:calc(100svh - var(--header-height));padding:110px 0 72px;display:flex;flex-direction:column;justify-content:space-between}
.home-services{width:100%;padding:0}
.home-services__inner{padding:130px 0}

/* Give breathing room around the separators in the dark methodology block. */
.home-method__steps{border-top:1px solid rgba(248,246,242,.28)}
.home-method__steps article{padding:28px 34px 4px;border-right:0}
.home-method__steps article+article{border-left:1px solid rgba(248,246,242,.18)}
.home-method__steps article:first-child{padding-left:0}
.home-method__steps article:last-child{padding-right:0}

/* Final service block: vertically balanced, footer integrated into the dark panel. */
.service-result{display:flex;flex-direction:column;justify-content:space-between;padding:0!important}
.service-result__grid{flex:1;width:var(--container);margin-inline:auto;padding:90px 0;align-content:center}
.service-footer{width:var(--container);min-height:54px;margin:0 auto;padding:12px 0;border-top:1px solid rgba(248,246,242,.18);background:transparent;color:rgba(248,246,242,.68)}
.service-footer a{color:inherit}

/* Diagnostic: remove the exposed rounded “ears” created by the inset nav/content. */
.diagnostic-nav{width:100%;margin-inline:0;border-radius:18px 18px 0 0}
.diagnostic-view{width:100%;margin-inline:0;border-radius:0 0 18px 18px}

/* Blog hover image: landscape, not portrait. */
.blog-hover-preview{width:min(42vw,560px)}
.blog-hover-preview img{aspect-ratio:16/10;object-fit:cover}

@media (max-width:800px){
  .home-hero__inner{min-height:0;padding:56px 0 50px}
  .home-services__inner{padding:72px 0}
  .home-method__steps article,.home-method__steps article:first-child,.home-method__steps article:last-child{padding:22px 0 0}
  .home-method__steps article+article{border-left:0}
  .service-result__grid{width:var(--container);padding:78px 0}
  .service-footer{min-height:50px;padding:12px 0}
  .diagnostic-nav{width:100%;border-radius:14px 14px 0 0}
  .diagnostic-view{width:100%;border-radius:0 0 14px 14px}
}

/* ===== v2.6 · targeted hierarchy fixes ===== */
/* Slightly tighter navigation now that the client area has a public entry point. */
.desktop-nav{gap:26px}

/* Home closing CTA: shorter line length and calmer type scale. */
.home-contact h2{
  max-width:760px;
  font-size:clamp(42px,4.7vw,66px);
  line-height:1.01;
}
.home-contact__copy>p:not(.kicker){max-width:590px}

/* Service hero: proposal CTA is visible in the first screen without becoming sticky. */
.service-hero__bottom{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:64px;align-items:end}
.service-hero__bottom>p{width:auto;max-width:700px}
.service-hero__actions{display:flex;align-items:center;gap:16px;justify-content:flex-end}
.service-hero__actions .button{min-width:310px;justify-content:space-between}
.service-hero__actions .circle-action{flex:0 0 auto}

@media(max-width:980px){
  .desktop-nav{gap:20px}
  .service-hero__bottom{grid-template-columns:1fr;gap:28px}
  .service-hero__actions{justify-content:flex-start}
}
@media(max-width:800px){
  .home-contact h2{font-size:40px;max-width:100%}
  .service-hero__actions{width:100%;display:grid;grid-template-columns:1fr 52px;gap:12px}
  .service-hero__actions .button{min-width:0;width:100%}
}
@media(max-width:520px){
  .home-contact h2{font-size:37px}
}

/* ===== Home hero · composición final grande + HD 2026-08-20 =====
   Esta sección manda sobre las reglas anteriores del hero.
   Los dibujos ocupan su tamaño real dentro de la línea (sin escalado CSS borroso). */
.home-hero__visual {
  overflow: visible;
}

.home-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

/* Desktop: tamaño y posición según la composición de referencia. */
.home-hero__visual--laptop {
  width: 1.34em;
  height: 1.05em;
  margin-left: .05em;
  margin-right: .10em;
  vertical-align: -.16em;
  transform: rotate(-3deg);
}

.home-hero__visual--target {
  width: 1.28em;
  height: 1.28em;
  margin-left: -.34em;
  margin-right: .08em;
  vertical-align: -.22em;
}

.home-hero__visual--web {
  display: inline-flex;
  width: 1.16em;
  height: 1.10em;
  margin-left: .04em;
  margin-right: .08em;
  vertical-align: -.15em;
}

.home-hero__visual--laura {
  width: 1.30em;
  height: 1.30em;
  margin-left: .12em;
  vertical-align: -.23em;
}

/* Subrayado de “conseguir”: debajo de las letras y no atravesándolas. */
.home-hero__highlight > img {
  left: .01em;
  bottom: -.18em;
  width: 101%;
  max-width: none;
  height: auto;
  transform: none;
}

@media (max-width: 800px) {
  .home-hero h1,
  .home-hero__title {
    max-width: 100%;
    margin: 30px 0 48px;
    font-size: clamp(36px, 10.8vw, 44px);
    line-height: .95;
    letter-spacing: -.055em;
  }

  /* Conservamos las cuatro líneas editoriales también en móvil. */
  .home-hero__title-line {
    display: block;
    white-space: nowrap;
  }

  .home-hero__visual--laptop {
    width: 1.08em;
    height: .86em;
    margin-left: .03em;
    margin-right: .06em;
    vertical-align: -.12em;
  }

  .home-hero__visual--target {
    width: 1.02em;
    height: 1.02em;
    margin-left: -.12em;
    margin-right: .05em;
    vertical-align: -.17em;
  }

  .home-hero__visual--web {
    display: inline-flex;
    width: .96em;
    height: .92em;
    margin-left: .02em;
    margin-right: .05em;
    vertical-align: -.12em;
  }

  .home-hero__visual--laura {
    width: 1.04em;
    height: 1.04em;
    margin-left: .06em;
    vertical-align: -.18em;
  }

  .home-hero__highlight > img {
    bottom: -.18em;
    width: 101%;
  }
}

@media (max-width: 360px) {
  .home-hero h1,
  .home-hero__title {
    font-size: 34px;
  }

  .home-hero__visual--laptop {
    width: 1em;
    height: .80em;
  }

  .home-hero__visual--target {
    width: .96em;
    height: .96em;
    margin-left: -.08em;
  }

  .home-hero__visual--web {
    width: .90em;
    height: .86em;
  }

  .home-hero__visual--laura {
    width: .98em;
    height: .98em;
  }
}

/* ===== Home hero · entrada + interacción ilustrada 2026-08-20 ===== */
/* Entrada editorial: cada línea sube suavemente y aparece en cascada. */
.home-hero__title-line {
  opacity: 0;
  transform: translate3d(0, .34em, 0);
  animation: homeHeroLineIn .82s cubic-bezier(.22, 1, .36, 1) forwards;
  will-change: transform, opacity;
}
.home-hero__title-line:nth-child(1) { animation-delay: .10s; }
.home-hero__title-line:nth-child(2) { animation-delay: .22s; }
.home-hero__title-line:nth-child(3) { animation-delay: .34s; }
.home-hero__title-line:nth-child(4) { animation-delay: .46s; }

.home-hero .kicker {
  opacity: 0;
  transform: translateY(8px);
  animation: homeHeroKickerIn .55s ease-out .02s forwards;
}

@keyframes homeHeroLineIn {
  from { opacity: 0; transform: translate3d(0, .34em, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes homeHeroKickerIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hover de las ilustraciones: crecen y giran sin mover el texto. */
.home-hero__visual img {
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), filter .28s ease;
  transform-origin: center center;
  will-change: transform;
}
.home-hero__visual--laptop { --hero-hover-rotate: 6deg; }
.home-hero__visual--target { --hero-hover-rotate: -7deg; }
.home-hero__visual--web    { --hero-hover-rotate: 5deg; }
.home-hero__visual--laura  { --hero-hover-rotate: -5deg; }

@media (hover: hover) and (pointer: fine) {
  .home-hero__visual:hover img {
    transform: scale(1.18) rotate(var(--hero-hover-rotate, 5deg));
  }
}

/* Globo tipo cómic que sigue al puntero. Se crea desde site.js. */
.hero-comic-bubble {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  max-width: 270px;
  padding: 13px 17px 14px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -.01em;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 6px, 0) rotate(-1deg) scale(.96);
  transform-origin: 18px 100%;
  transition: opacity .14s ease, transform .18s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .18s;
  box-shadow: 4px 5px 0 rgba(43, 38, 34, .08);
}
.hero-comic-bubble::before,
.hero-comic-bubble::after {
  content: '';
  position: absolute;
  left: 20px;
  bottom: -12px;
  width: 0;
  height: 0;
  border-style: solid;
  transform: rotate(8deg);
}
.hero-comic-bubble::before {
  border-width: 12px 11px 0 0;
  border-color: var(--ink) transparent transparent transparent;
}
.hero-comic-bubble::after {
  left: 22px;
  bottom: -7px;
  border-width: 8px 7px 0 0;
  border-color: var(--white) transparent transparent transparent;
}
.hero-comic-bubble.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) rotate(-1deg) scale(1);
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__title-line,
  .home-hero .kicker {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .home-hero__visual img,
  .hero-comic-bubble {
    transition: none;
  }
}

/* ===== v2.9 · mobile professional pass · 2026-08-20 =====
   Final mobile layer: consistent reading scale, spacing and overflow control
   across the public site. Desktop rules remain untouched. */
@media (max-width: 800px) {
  :root {
    --container: calc(100% - 40px);
    --header-height: 72px;
  }

  body {
    font-size: 16px;
    line-height: 1.62;
  }

  .kicker,
  .eyebrow,
  .section-label,
  .service-eyebrow,
  .tagline {
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: .12em;
  }

  .lead { font-size: 17px; line-height: 1.62; }
  .display { font-size: clamp(42px, 12vw, 56px); line-height: .98; }
  .section { padding-block: 72px; }

  .site-header { height: var(--header-height); }
  .site-header__inner { gap: 18px; }
  .brand img { height: 24px; max-width: 170px; }
  .mobile-nav-toggle { min-height: 44px; padding: 10px 0; }
  .mobile-nav { max-height: calc(100dvh - var(--header-height)); overflow-y: auto; }
  .mobile-nav__inner { padding-block: 4px 18px; }
  .mobile-nav a,
  .mobile-nav__services-trigger { min-height: 50px; padding: 14px 0; }

  .button,
  .outline-action {
    min-height: 50px;
    padding: 13px 18px;
    gap: 18px;
    font-size: 13px;
  }
  .text-link { min-height: 48px; padding: 14px 0 9px; }

  .stack-panel {
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -12px 30px rgba(43,38,34,.075), 0 -3px 10px rgba(43,38,34,.035);
  }

  /* Home */
  .home-hero__inner { padding: 46px 0 54px; }
  .home-hero h1,
  .home-hero__title {
    max-width: 100%;
    margin: 26px 0 38px;
    font-size: clamp(39px, 10.5vw, 44px);
    line-height: .98;
    letter-spacing: -.052em;
    overflow-wrap: normal;
  }
  .home-hero__title-line {
    display: block;
    white-space: normal;
  }
  .home-hero__keep { white-space: nowrap; }
  .home-hero__visual--laptop { width: 1.05em; height: .84em; }
  .home-hero__visual--target { width: 1em; height: 1em; margin-left: -.08em; }
  .home-hero__visual--web { width: .94em; height: .90em; }
  .home-hero__visual--laura { width: 1.02em; height: 1.02em; }
  .home-hero__bottom { gap: 24px; }
  .home-hero__bottom > p { max-width: 34rem; font-size: 16px; line-height: 1.62; }
  .home-hero__actions { gap: 10px; }

  .home-services__inner { padding: 72px 0 76px; }
  .home-services__head { margin-bottom: 28px; }
  .home-service { gap: 34px; padding: 54px 0; }
  .home-service__number { margin-bottom: 28px; }
  .home-service h2 { margin: 12px 0 20px; font-size: clamp(35px, 9.5vw, 42px); line-height: 1.04; }
  .home-service__text { font-size: 16px; line-height: 1.62; }
  .home-service ul { margin-top: 24px; padding-top: 18px; }
  .home-service li { padding: 9px 0; font-size: 14px; line-height: 1.45; }
  .home-service .service-card-action { width: 100%; min-width: 0; margin-top: 22px; }

  .home-method { padding: 74px 0 76px; }
  .home-method__grid { gap: 24px; margin-bottom: 42px; }
  .home-method h2 { margin-bottom: 20px; font-size: clamp(36px, 9.6vw, 43px); line-height: 1.04; }
  .home-method__grid div > p { font-size: 16px; line-height: 1.68; }
  .home-method__steps { gap: 30px; }
  .home-method__steps article { padding-top: 20px !important; }
  .home-method__steps span { margin-bottom: 20px; }
  .home-method__steps h3 { font-size: 28px; line-height: 1.08; }
  .home-method__steps p { font-size: 14px; line-height: 1.62; }

  .home-diagnostic { padding: 72px 0 76px; }
  .home-diagnostic__grid { gap: 24px; }
  .home-diagnostic h2 { margin-bottom: 18px; font-size: clamp(36px, 9.6vw, 43px); line-height: 1.04; }
  .home-diagnostic p:last-child { font-size: 16px; line-height: 1.65; }
  .home-diagnostic .outline-action { width: 100%; }

  .home-contact { padding: 74px 0 84px; }
  .home-contact__grid { gap: 38px; }
  .home-contact h2 { margin: 16px 0 20px; max-width: 100%; font-size: clamp(36px, 9.6vw, 42px); line-height: 1.04; }
  .home-contact__copy > p:not(.kicker) { margin-bottom: 28px; font-size: 16px; line-height: 1.65; }
  .home-contact .image-card { width: min(100%, 420px); }
  .home-footer { min-height: 0; padding: 26px 0; }

  /* Services */
  .services-index-hero { gap: 20px; padding: 64px 0 54px; }
  .services-index-hero h1 { margin-bottom: 22px; font-size: clamp(42px, 11.2vw, 52px); line-height: .99; }
  .services-index-hero div > p { font-size: 16px; line-height: 1.64; }
  .services-index-list { padding-bottom: 76px; }
  .services-index-list article { grid-template-columns: 42px minmax(0,1fr); gap: 18px; padding: 42px 0; }
  .services-index-list h2 { margin: 9px 0 14px; font-size: clamp(32px, 8.8vw, 39px); line-height: 1.04; }
  .services-index-list article div > p:last-child { font-size: 15px; line-height: 1.62; }
  .services-index-list article > .circle-action { grid-column: 2; }

  .service-hero { min-height: 0 !important; padding: 56px 0 64px !important; }
  .service-hero__meta > span { margin-top: 12px; }
  .service-hero h1 { margin: 42px 0 38px; font-size: clamp(46px, 12.5vw, 58px); line-height: .96; }
  .service-hero__bottom { gap: 24px; }
  .service-hero__bottom > p { max-width: 100%; font-size: 16px; line-height: 1.62; }
  .service-hero__actions { grid-template-columns: minmax(0,1fr) 48px; gap: 10px; }
  .service-hero__actions .circle-action { width: 48px; height: 48px; min-width: 48px; min-height: 48px; }

  .service-intro { margin-top: -14px; padding: 72px 0; }
  .service-intro__grid { gap: 22px; }
  .service-intro h2 { font-size: clamp(36px, 9.8vw, 44px); line-height: 1.06; }
  .service-feature { padding: 62px 0; }
  .service-process { padding: 68px 0 76px; }
  .service-process__head { gap: 22px; margin-bottom: 44px; }
  .service-process__head h2 { font-size: clamp(35px, 9.5vw, 42px); line-height: 1.05; }
  .service-process__grid article { padding: 22px 18px 28px 0; }
  .service-process__grid article > span { margin-bottom: 22px; }
  .service-process__grid h3 { font-size: 25px; }
  .service-process__grid p { font-size: 14px; line-height: 1.62; }
  .service-deliverables { padding: 70px 0 78px; }
  .service-deliverables__grid { gap: 38px; }
  .service-deliverables h2 { margin: 14px 0 28px; font-size: clamp(35px, 9.4vw, 41px); line-height: 1.05; }
  .service-deliverables li { padding: 14px 0; line-height: 1.45; }
  .service-result__grid { padding: 72px 0; }
  .service-result__grid { gap: 22px; }
  .service-result h2 { margin-bottom: 20px; font-size: clamp(36px, 9.8vw, 43px); line-height: 1.04; }
  .service-result__grid > div > p { font-size: 16px; line-height: 1.65; }
  .service-result__cta { gap: 22px; margin-top: 30px; }
  .service-result__cta .button { width: 100%; min-width: 0; }
  .service-footer { width: var(--container); padding: 20px 0 28px; }

  /* Blog */
  .blog-hero { gap: 20px; padding: 64px 0 54px; }
  .blog-hero h1 { margin-bottom: 22px; font-size: clamp(42px, 11.2vw, 52px); line-height: .99; }
  .blog-hero div > p { font-size: 16px; line-height: 1.64; }
  .blog-list { padding-bottom: 76px; }
  .blog-list article { grid-template-columns: minmax(0,1fr) 46px; gap: 18px; padding: 38px 0; }
  .blog-list h2 { margin: 10px 0 12px; font-size: clamp(29px, 8vw, 35px); line-height: 1.06; }
  .blog-list article div > p:last-child { font-size: 15px; line-height: 1.62; }
  .blog-article-shell { gap: 26px; padding: 56px 0 84px; }
  .blog-toc nav { grid-template-columns: 1fr; }
  .blog-toc a { padding: 9px 0; font-size: 12px; }
  .blog-article__feature { margin-bottom: 24px; }
  .blog-article__header { padding-bottom: 42px; }
  .blog-article__header h1 { margin: 16px 0 20px; font-size: clamp(40px, 10.8vw, 50px); line-height: 1; }
  .blog-article__header > p:last-child { font-size: 17px; line-height: 1.62; }
  .blog-article__body { padding-top: 42px; font-size: 16px; line-height: 1.72; }
  .blog-article__body h2 { margin: 54px 0 18px; font-size: clamp(31px, 8.6vw, 37px); line-height: 1.08; }
  .blog-article__body h3 { margin: 38px 0 14px; font-size: 24px; line-height: 1.12; }

  /* Legal */
  .legal-page { width: var(--container); padding: 64px 0 86px; }
  .legal-page h1 { margin: 14px 0 28px; font-size: clamp(42px, 11.2vw, 50px); line-height: 1; }
  .legal-page h2 { margin: 42px 0 14px; font-size: 28px; line-height: 1.12; }
  .legal-page p { line-height: 1.7; }

  /* Diagnostic / project forms */
  .diagnostic-overlay { padding: 0; background: var(--paper); }
  .diagnostic-modal {
    width: 100vw;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
    scrollbar-gutter: auto;
  }
  .diagnostic-nav {
    width: 100%;
    min-height: 64px;
    padding: 0 20px;
    border-radius: 0;
  }
  .diagnostic-brand,
  .diagnostic-brand img { width: 38px; height: 38px; }
  .diagnostic-close { width: 36px; height: 36px; }
  .diagnostic-view {
    width: 100%;
    min-height: calc(100dvh - 64px);
    padding: 44px 20px 36px;
    border-radius: 0;
  }
  .diagnostic-start h1,
  .diagnostic-question h1,
  .diagnostic-contact h1 {
    margin-top: 22px;
    font-size: clamp(39px, 10.5vw, 46px);
    line-height: 1.01;
  }
  .diagnostic-start__bottom { margin-top: 52px; }
  .diagnostic-start__bottom > p { font-size: 15px; line-height: 1.62; }
  .diagnostic-start__bottom .outline-action { margin-top: 24px; }
  .diagnostic-question { padding: 48px 0 26px; }
  .diagnostic-help { margin-top: 18px; font-size: 14px; line-height: 1.55; }
  .scale-options { gap: 8px; margin-top: 34px; }
  .scale-options button { min-height: 58px; padding: 12px 14px; }
  .scale-options span { font-size: 21px; }
  .project-options { margin-top: 32px; }
  .project-options button { grid-template-columns: 40px minmax(0,1fr) 22px; gap: 12px; padding: 15px 0; }
  .diagnostic-next { margin-top: 28px; }
  .diagnostic-contact__head { margin-bottom: 38px; }
  .diagnostic-contact__head > p:last-child { margin-top: 16px; }
  .project-fields { gap: 24px; }
  .project-fields input,
  .project-fields select { min-height: 50px; }
  .project-fields textarea { min-height: 140px; }
  .diagnostic-form-actions { gap: 16px; margin-top: 28px; }
  .result-container { width: calc(100% - 40px); }
  .request-status { gap: 18px; padding-top: 38px; padding-bottom: 38px; }
  .diagnostic-result__head h1,
  .result-recommendation h2 { font-size: clamp(39px, 10.5vw, 48px); line-height: 1.02; }
  .axis-explanation { padding-top: 58px; padding-bottom: 58px; }
  .axis-explanation > div { grid-template-columns: 1fr; }
  .area-score-grid { margin-top: 44px; }
  .result-recommendation { padding: 68px 0 76px; }

  /* Public proposal */
  .proposal-public__hero { padding: 52px 0 68px; }
  .proposal-public__top { align-items: flex-start; gap: 16px; margin-bottom: 48px; }
  .proposal-public__top a { font-size: 20px; }
  .proposal-public__hero h1 { margin: 18px 0 24px; font-size: clamp(42px, 11.2vw, 52px); line-height: .99; }
  .proposal-public__lead { font-size: 17px; line-height: 1.62; }
  .proposal-public__meta { gap: 14px 24px; flex-wrap: wrap; margin-top: 36px; }
  .proposal-public__context { gap: 34px; padding: 70px 0; }
  .proposal-public__context h2 { margin: 16px 0; font-size: 31px; }
  .proposal-public__proposal { padding: 76px 0; }
  .proposal-public__proposal h2,
  .proposal-public__cta h2 { margin: 20px 0; font-size: clamp(36px, 9.8vw, 44px); line-height: 1.04; }
  .proposal-public__body { font-size: 16px; line-height: 1.68; }
  .proposal-public__items { margin-top: 44px; }
  .proposal-public__items article { grid-template-columns: 48px 1fr; padding: 20px 0; }
  .proposal-public__items p { font-size: 17px; }
  .proposal-public__process { padding: 72px 0; }
  .proposal-public__process > div { gap: 24px; margin-top: 42px; }
  .proposal-public__conditions { padding: 68px 0; }
  .proposal-public__cta { padding: 76px 0; }
  .proposal-public__actions { gap: 12px; margin-top: 30px; }
}

@media (max-width: 620px) {
  .service-process__grid { grid-template-columns: 1fr; }
  .service-process__grid article { padding-right: 0; }
  .proposal-public__process > div { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  :root { --container: calc(100% - 32px); }
  .home-hero h1,
  .home-hero__title { font-size: 37px; }
  .home-hero__visual--web { display: inline-flex; }
  .service-hero h1 { font-size: 44px; }
  .diagnostic-start h1,
  .diagnostic-question h1,
  .diagnostic-contact h1 { font-size: 38px; }
}

/* ===== v3.0 · mobile corrections from real-device review · 2026-08-20 ===== */
@media (max-width: 800px) {
  /* Home hero: keep the current editorial wrapping, but use the available width better. */
  .home-hero h1,
  .home-hero__title {
    font-size: clamp(44px, 12vw, 52px);
    line-height: .96;
    letter-spacing: -.057em;
  }

  /* Mobile panels use natural document flow. The layered look stays via radius/shadow,
     without ScrollTrigger pinning sections on top of unfinished content. */
  .home-method,
  .courses-v3-bridge {
    position: relative;
  }

  /* Service detail: the process card meets the horizontal image instead of leaving
     a strip of the previous panel visible between both sections. */
  .service-feature {
    padding-top: 54px;
    padding-bottom: 24px;
  }
  .service-process {
    margin-top: -24px;
    padding-top: 72px;
  }

  /* Diagnostic start: avoid the empty half-screen created by justify-content:space-between. */
  .diagnostic-start {
    justify-content: flex-start;
  }
  .diagnostic-start__bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .diagnostic-start__bottom > p {
    width: 100%;
    max-width: 34rem;
  }
  .diagnostic-start__bottom .outline-action {
    width: 100%;
    margin-top: 0;
  }
}

@media (max-width: 380px) {
  .home-hero h1,
  .home-hero__title {
    font-size: 42px;
  }
}

/* ===== v3.2 · compact mobile art direction · 2026-08-20 ===== */
@media (max-width: 800px) {
  /* Stronger section rhythm without introducing accent colours. */
  .stack-panel {
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -10px 30px rgba(43,38,34,.075), 0 -1px 0 rgba(43,38,34,.06);
  }
  .stack-panel--white { --panel-bg: var(--white); }
  .stack-panel--paper { --panel-bg: var(--beige-1); }
  .stack-panel--dark { --panel-bg: var(--ink); }

  /* Home: shorter screens and tighter reading rhythm. */
  .home-hero__inner {
    padding-top: 40px;
    padding-bottom: 34px;
  }
  .home-hero h1,
  .home-hero__title {
    margin-top: 24px;
    margin-bottom: 32px;
    font-size: clamp(46px, 12.6vw, 55px);
    line-height: .94;
  }
  .home-hero__bottom { gap: 18px; }
  .home-hero__bottom > p { line-height: 1.52; }
  .home-hero__actions { gap: 8px; }

  .home-services__inner { padding: 50px 0 54px; }
  .home-services__head { margin-bottom: 18px; }
  .home-service {
    gap: 24px;
    margin: 0 -14px 12px;
    padding: 34px 14px 36px;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }
  .home-service:nth-of-type(odd) { background: rgba(252,251,248,.64); }
  .home-service:nth-of-type(even) { background: rgba(236,231,223,.48); }
  .home-service__number { margin-bottom: 18px; }
  .home-service h2 { margin: 9px 0 14px; }
  .home-service__text { line-height: 1.55; }
  .home-service ul { margin-top: 18px; padding-top: 13px; }
  .home-service li { padding: 7px 0; }
  .home-service .service-card-action { margin-top: 16px; }
  .home-service .image-card { box-shadow: 0 10px 30px rgba(43,38,34,.06); }

  .home-method { padding: 52px 0 56px; }
  .home-method__grid { gap: 18px; margin-bottom: 28px; }
  .home-method h2 { margin-bottom: 14px; }
  .home-method__grid div > p { line-height: 1.56; }
  .home-method__steps { gap: 16px; }
  .home-method__steps article { padding-top: 16px !important; }
  .home-method__steps span { margin-bottom: 12px; }
  .home-method__steps h3 { margin-bottom: 8px; font-size: 26px; }
  .home-method__steps p { line-height: 1.52; }

  .home-diagnostic { padding: 50px 0 54px; }
  .home-diagnostic__grid { gap: 16px; }
  .home-diagnostic h2 { margin-bottom: 14px; }
  .home-diagnostic p:last-child { margin-bottom: 22px; line-height: 1.55; }

  .home-contact { padding: 52px 0 58px; }
  .home-contact__grid { gap: 28px; }
  .home-contact h2 { margin: 12px 0 16px; }
  .home-contact__copy > p:not(.kicker) { margin-bottom: 22px; line-height: 1.55; }
  .home-contact .image-card { max-width: 340px; }
  .home-footer { padding: 18px 0; }

  /* Services index + service detail: less empty runway between content moments. */
  .services-index-hero { padding: 48px 0 38px; }
  .services-index-hero h1 { margin-bottom: 16px; }
  .services-index-list { padding-bottom: 54px; }
  .services-index-list article { padding: 32px 0; }

  .service-hero { padding: 42px 0 48px !important; }
  .service-hero h1 { margin: 30px 0 24px; }
  .service-hero__bottom { gap: 18px; }
  .service-intro { margin-top: -16px; padding: 52px 0 48px; }
  .service-feature { padding: 42px 0 18px; }
  .service-feature .image-card { box-shadow: none; }
  .service-feature .image-card--wide { aspect-ratio: auto; }
  .service-feature .image-card--filled.image-card--wide img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center center;
  }
  .service-process {
    margin-top: -18px;
    padding: 54px 0 58px;
  }
  .service-process__head { gap: 14px; margin-bottom: 26px; }
  .service-process__grid article { padding: 16px 0 18px; }
  .service-process__grid article > span { margin-bottom: 12px; }
  .service-process__grid h3 { margin-bottom: 8px; }
  .service-process__grid p { line-height: 1.52; }
  .service-deliverables { padding: 54px 0 58px; }
  .service-deliverables__grid { gap: 28px; }
  .service-deliverables .image-card { box-shadow: none; }
  .service-deliverables h2 { margin: 10px 0 20px; }
  .service-deliverables li { padding: 11px 0; }
  .service-result__grid { padding: 54px 0 58px; gap: 16px; }
  .service-result h2 { margin-bottom: 14px; }
  .service-result__grid > div > p { line-height: 1.55; }
  .service-result__cta { gap: 16px; margin-top: 22px; padding-top: 18px; }

  /* Blog / legal: keep long-form readable but remove oversized desktop spacing. */
  .blog-hero { padding: 48px 0 38px; }
  .blog-list { padding-bottom: 54px; }
  .blog-list article { padding: 28px 0; }
  .blog-article-shell { padding: 42px 0 62px; }
  .blog-article__header { padding-bottom: 30px; }
  .blog-article__body { padding-top: 30px; }
  .blog-article__body h2 { margin-top: 42px; }
  .legal-page { padding: 48px 0 62px; }
  .legal-page h2 { margin-top: 34px; }

  /* Diagnostic: compact single-screen start and visually separate form stages. */
  .diagnostic-view { padding: 34px 20px 28px; }
  .diagnostic-start h1,
  .diagnostic-question h1,
  .diagnostic-contact h1 { margin-top: 16px; }
  .diagnostic-start__bottom {
    gap: 18px;
    margin-top: 30px;
    padding-top: 20px;
    background: rgba(242,238,231,.62);
    border: 1px solid var(--line);
    border-left: 0;
    border-right: 0;
  }
  .diagnostic-question { padding: 34px 0 18px; }
  .diagnostic-help { margin-top: 12px; }
  .scale-options { margin-top: 24px; }
  .project-options { margin-top: 24px; }
  .diagnostic-next { margin-top: 22px; }
  .diagnostic-contact__head { margin-bottom: 28px; }
  .project-fields { gap: 18px; }
  .diagnostic-form-actions { margin-top: 22px; }
}

@media (max-width: 380px) {
  .home-hero h1,
  .home-hero__title { font-size: 44px; }
  .home-service { margin-inline: -10px; padding-inline: 10px; }
}

/* ==============================================================
   HOME MOBILE BENTO · 2026-08-20
   Solo móvil. El home editorial de escritorio permanece intacto.
   ============================================================== */
.home-mobile-only{display:none!important}
.home-shared-anchor{display:block;position:relative;scroll-margin-top:96px}

@media (max-width:800px){
  body:has(.home-bento-hero){background:#f7f4ee}
  .home-desktop-only{display:none!important}
  .home-mobile-only{display:block!important}
  #contenido:has(.home-bento-hero){padding:0 10px 10px;background:#f7f4ee;overflow:hidden}
  .home-shared-anchor{height:10px;margin-top:-10px;scroll-margin-top:88px}

  .home-bento-card{
    position:relative;
    overflow:hidden;
    border:1px solid #d8d1c6;
    border-radius:24px;
    background:#fcfbf8;
  }
  .home-bento-hero{padding-top:10px}
  .home-bento-hero__card{padding:26px 18px 24px}
  .home-bento-hero__card .kicker{margin:0 0 16px;font-size:10px;line-height:1.25;letter-spacing:.15em}
  .home-bento-hero__title{
    margin:0;
    font-family:var(--font-display);
    font-weight:300;
    font-size:clamp(56px,14.7vw,63px);
    line-height:.905;
    letter-spacing:-.064em;
  }
  .home-bento-hero__line{display:block;max-width:100%}
  .home-bento-hero__line{white-space:nowrap}
  .home-bento-inline{display:inline-flex;width:.84em;height:.84em;vertical-align:-.11em;margin:0 .025em;align-items:center;justify-content:center}
  .home-bento-inline img{display:block;width:100%;height:100%;object-fit:contain}
  .home-bento-inline--target{width:.98em;height:.98em;margin-left:-.05em;vertical-align:-.17em}
  .home-bento-inline--web{width:.88em;height:.88em;vertical-align:-.13em}
  .home-bento-inline--laura{width:.94em;height:.94em;vertical-align:-.16em}
  .home-bento-highlight{position:relative;display:inline-block}
  .home-bento-highlight>img{position:absolute;left:0;bottom:-.18em;width:101%;height:auto;max-width:none}

  .home-bento-hero__bottom{display:grid;grid-template-columns:1.12fr .88fr;gap:10px;margin-top:10px}
  .home-bento-hero__intro{padding:18px;border:1px solid #d8d1c6;border-radius:24px;background:#f3eee5;display:flex;align-items:flex-end;min-height:184px}
  .home-bento-hero__intro p{margin:0;font-size:15px;line-height:1.48;color:#5e5852}
  .home-bento-mini-cta{padding:14px;border-radius:24px;background:#2b2622;color:#fcfbf8;display:flex;min-height:184px;flex-direction:column;justify-content:space-between;gap:14px}
  .home-bento-mini-cta .section-label{color:#d7d0c7}
  .home-bento-mini-cta strong{font-family:var(--font-display);font-size:24px;line-height:1.02;font-weight:300;letter-spacing:-.04em}
  .home-bento-circle{width:38px;height:38px;border:1px solid currentColor;border-radius:50%;display:grid;place-items:center;font-size:20px;line-height:1;flex:0 0 auto}
  .home-bento-mini-cta .home-bento-circle{align-self:flex-end}

  .home-bento-services{display:grid!important;gap:10px}
  .home-bento-section-head{padding:20px 18px;min-height:156px;background:#eee8de;display:flex;flex-direction:column;justify-content:space-between}
  .home-bento-section-head h2{margin:19px 0 0;font-family:var(--font-display);font-size:36px;line-height:.96;font-weight:300;letter-spacing:-.05em}
  .home-bento-service-group{display:grid;gap:0}
  .home-bento-service-card{min-height:300px;padding:20px 18px;display:flex;flex-direction:column;justify-content:space-between}
  .home-bento-service-group--estrategia .home-bento-service-card{background:#f3eee5}
  .home-bento-service-group--branding .home-bento-service-card{background:#fcfbf8}
  .home-bento-service-group--campanas .home-bento-service-card{background:#eee8de}
  .home-bento-service-card__top{display:grid;grid-template-columns:minmax(0,1fr) 112px;gap:6px;align-items:start}
  .home-bento-service-number{width:34px;height:34px;border:1px solid #d8d1c6;border-radius:50%;display:grid;place-items:center;font-size:10px}
  .home-bento-service-card .service-eyebrow{margin:13px 0 0;max-width:220px;font-size:9px;letter-spacing:.14em}
  .home-bento-service-icon{width:112px;height:112px;object-fit:contain;justify-self:end;margin:-4px -2px 0 0}
  .home-bento-service-icon--branding{width:94px;height:94px;margin:0}
  .home-bento-service-icon--campanas{width:98px;height:98px;margin:0}
  .home-bento-service-card__copy{position:relative;padding-right:48px}
  .home-bento-service-card h2{margin:7px 0 7px;font-family:var(--font-display);font-size:36px;line-height:.94;font-weight:300;letter-spacing:-.05em;max-width:270px}
  .home-bento-service-card__copy>p{margin:0;color:#716a63;font-size:14px;line-height:1.45;max-width:285px}
  .home-bento-service-card__copy .home-bento-circle{position:absolute;right:0;bottom:0;width:36px;height:36px;font-size:18px}
  .home-bento-service-scene{display:block;position:relative;z-index:2;padding:10px 2px 16px;min-height:360px;background:transparent}
  .home-bento-service-scene img{width:100%;height:100%;max-height:390px;object-fit:contain;object-position:center}
  .home-bento-service-scene--branding{min-height:310px;padding:8px 2px 14px}
  .home-bento-service-scene--branding img{max-height:310px}
  .home-bento-service-scene--campanas{min-height:410px;padding:6px 0 18px}
  .home-bento-service-scene--campanas img{max-height:420px}

  .home-bento-method{margin-top:0;padding:20px 18px 18px;background:#2b2622;color:#fcfbf8;border-color:#2b2622}
  .home-bento-method__intro{padding-bottom:18px}
  .home-bento-method__intro .section-label{color:#cbc2b8}
  .home-bento-method__intro h2{margin:16px 0 0;font-family:var(--font-display);font-size:42px;line-height:.92;font-weight:300;letter-spacing:-.055em;color:#fcfbf8}
  .home-bento-method__intro em{font-style:normal;color:#cfc7bd}
  .home-bento-method__grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}
  .home-bento-method__grid article{min-height:210px;padding:16px;border-radius:16px;border:1px solid #504841;background:#38322d;display:flex;flex-direction:column;justify-content:space-between}
  .home-bento-method__grid article>span{font-size:9px;letter-spacing:.14em;color:#cfc7bd}
  .home-bento-method__grid h3{margin:0 0 7px;font-family:var(--font-display);font-size:23px;line-height:.98;font-weight:300;letter-spacing:-.04em;color:#fcfbf8}
  .home-bento-method__grid p{margin:0;color:#d1cac1;font-size:12px;line-height:1.43}
  .home-bento-method__grid .home-bento-method__wide{grid-column:1/-1;min-height:150px;display:grid;grid-template-columns:34px 1fr;gap:8px;align-items:start}
  .home-bento-method__grid .home-bento-method__wide h3{font-size:26px}

  .home-bento-diagnostic{margin-top:10px;padding:20px 18px;background:#eee8de;display:grid!important;grid-template-columns:minmax(0,1fr) 82px;gap:10px}
  .home-bento-diagnostic h2{margin:20px 0 10px;font-family:var(--font-display);font-size:36px;line-height:.94;font-weight:300;letter-spacing:-.052em}
  .home-bento-diagnostic__copy>p:last-child{margin:0;color:#716a63;font-size:13.5px;line-height:1.47}
  .home-bento-diagnostic__face{width:78px;height:78px;border:1px solid #d8d1c6;background:#fcfbf8;border-radius:50%;display:grid;place-items:center}
  .home-bento-diagnostic__face img{width:46px;height:46px;object-fit:contain}
  .home-bento-pill{grid-column:1/-1;min-height:48px;padding:0 16px;border:1px solid #2b2622;border-radius:999px;display:flex;align-items:center;justify-content:space-between;gap:12px;background:#fcfbf8;font-size:14px}

  .home-bento-contact{margin-top:10px;padding:20px 18px;background:#fcfbf8}
  .home-bento-contact h2{margin:17px 0 10px;font-family:var(--font-display);font-size:39px;line-height:.93;font-weight:300;letter-spacing:-.055em}
  .home-bento-contact>p:not(.section-label){margin:0;color:#716a63;font-size:12.5px;line-height:1.48;max-width:340px}
  .home-bento-contact__art{width:100%;height:300px;object-fit:contain;object-position:center;margin:3px 0 8px}
  .home-bento-contact .home-bento-pill{width:100%}
  .home-bento-footer{padding:16px 6px 8px!important;display:flex!important;justify-content:space-between;gap:10px;color:#716a63;font-size:9px;letter-spacing:.07em;text-transform:uppercase}

  /* Ajuste fino contra el wireframe aprobado */
  .home-bento-service-scene--estrategia{min-height:380px;padding:8px 0 16px}
  .home-bento-service-scene--estrategia img{max-height:390px}
  .home-bento-method__intro h2,.home-bento-method__grid h3{color:#fcfbf8}
  .home-bento-method__grid article>div{color:#fcfbf8}

  /* El botón flotante de volver arriba puede tapar CTAs pequeños en el bento. */
  body:has(.home-bento-hero) .back-to-top{right:16px;bottom:18px;width:48px;height:48px}
}

@media(max-width:390px){
  .home-bento-hero__title{font-size:clamp(52px,14.4vw,58px)}
  .home-bento-hero__bottom{grid-template-columns:1fr}
  .home-bento-mini-cta{min-height:150px}
  .home-bento-service-card__top{grid-template-columns:minmax(0,1fr) 100px}
  .home-bento-service-icon{width:100px;height:100px}
}
@media(max-width:360px){
  .home-bento-hero__title{font-size:50px}
  .home-bento-service-card h2{font-size:32px}
  .home-bento-method__intro h2{font-size:37px}
  .home-bento-contact h2{font-size:35px}
}

/* ==============================================================
   SOLICITUD GENERAL DE PRESUPUESTO
   ============================================================== */
.budget-page{padding:80px 0 110px;background:#f7f4ee;min-height:calc(100vh - 84px)}
.budget-page__grid{display:grid;grid-template-columns:minmax(0,.8fr) minmax(520px,1.2fr);gap:70px;align-items:start}
.budget-page__intro{position:sticky;top:118px}
.budget-page__intro h1{margin:22px 0 20px;font-family:var(--font-display);font-size:clamp(58px,6vw,92px);line-height:.9;font-weight:300;letter-spacing:-.065em}
.budget-page__intro>p:not(.kicker){margin:0;max-width:580px;color:#716a63;font-size:18px;line-height:1.55}
.budget-page__services{display:grid;gap:8px;margin-top:34px}
.budget-page__services span{padding:12px 0;border-top:1px solid #d8d1c6;font-size:12px;letter-spacing:.09em;text-transform:uppercase}
.budget-card{padding:28px;border:1px solid #d8d1c6;border-radius:28px;background:#fcfbf8}
.budget-options{margin:0 0 32px;padding:0 0 28px;border:0;border-bottom:1px solid #d8d1c6}
.budget-options legend,.budget-fields__title{display:flex;align-items:center;gap:12px;margin:0 0 8px;padding:0;font-family:var(--font-display);font-size:30px;line-height:1;font-weight:300;letter-spacing:-.04em}
.budget-options legend span,.budget-fields__title span{width:32px;height:32px;border:1px solid #d8d1c6;border-radius:50%;display:grid;place-items:center;font-family:var(--font-body);font-size:9px;letter-spacing:.08em}
.budget-options>p{margin:0 0 16px;color:#716a63;font-size:13px}
.budget-options label{display:grid;grid-template-columns:22px 1fr;gap:12px;align-items:start;padding:15px 0;border-top:1px solid #e7e1d9;cursor:pointer}
.budget-options input{width:18px;height:18px;margin-top:2px;accent-color:#2b2622}
.budget-options b{display:block;font-family:var(--font-display);font-size:21px;line-height:1;font-weight:300;letter-spacing:-.035em}
.budget-options small{display:block;margin-top:5px;color:#716a63;font-size:12px;line-height:1.4}
.budget-fields{display:grid;grid-template-columns:1fr 1fr;gap:18px 14px}
.budget-fields__title{grid-column:1/-1;margin-bottom:4px}
.budget-fields label{display:grid;gap:7px;color:#5f5953;font-size:13px}
.budget-fields input,.budget-fields select,.budget-fields textarea{width:100%;border:0;border-bottom:1px solid #beb6ac;border-radius:0;background:transparent;padding:10px 0;color:#2b2622;font:inherit;outline:none}
.budget-fields input:focus,.budget-fields select:focus,.budget-fields textarea:focus{border-color:#2b2622}
.budget-fields textarea{min-height:150px;resize:vertical;border:1px solid #d8d1c6;padding:14px}
.budget-field--full{grid-column:1/-1}
.budget-privacy{display:flex!important;grid-column:1/-1;grid-template-columns:none!important;flex-direction:row;align-items:flex-start;gap:10px!important;margin-top:4px}
.budget-privacy input{width:18px;height:18px;flex:0 0 auto;margin:1px 0 0;accent-color:#2b2622}
.budget-privacy a{text-decoration:underline}
.budget-status{min-height:24px;margin:18px 0 8px}
.budget-submit{width:100%;min-height:58px;padding:0 20px;border:1px solid #2b2622;border-radius:999px;background:#2b2622;color:#fcfbf8;display:flex;align-items:center;justify-content:space-between;font:inherit;font-size:15px;cursor:pointer}
.budget-submit:disabled{opacity:.55;cursor:wait}
.budget-success{padding:28px 4px 8px}
.budget-success__mark{width:58px;height:58px;border-radius:50%;display:grid;place-items:center;background:#2b2622;color:#fff;font-size:24px;margin-bottom:28px}
.budget-success h2{margin:16px 0 12px;font-family:var(--font-display);font-size:48px;line-height:.94;font-weight:300;letter-spacing:-.05em}
.budget-success>p:not(.section-label){margin:0 0 28px;color:#716a63;font-size:16px;line-height:1.5}

@media(max-width:900px){
  .budget-page{padding:34px 10px 50px}
  .budget-page__grid{display:block;padding:0}
  .budget-page__intro{position:static;padding:20px 8px 28px}
  .budget-page__intro h1{margin:16px 0 14px;font-size:48px;line-height:.92}
  .budget-page__intro>p:not(.kicker){font-size:15px;line-height:1.5}
  .budget-page__services{margin-top:22px}
  .budget-card{padding:18px;border-radius:24px}
  .budget-options legend,.budget-fields__title{font-size:26px}
  .budget-options label{padding:13px 0}
  .budget-fields{grid-template-columns:1fr;gap:17px}
  .budget-fields__title,.budget-field--full{grid-column:auto}
  .budget-success h2{font-size:40px}
}

/* ==============================================================
   HOME BENTO · TARJETAS DE SERVICIOS · AJUSTE FINAL MÓVIL
   Referencia aprobada: CTA abajo-izquierda + visual derecho
   ============================================================== */
@media (max-width:800px){
  .home-bento-service-card{
    position:relative;
    min-height:302px;
    padding:20px 18px 70px;
    display:block;
  }

  /* El bloque superior deja de reservar una columna para la imagen. */
  .home-bento-service-card__top{
    display:block;
  }

  .home-bento-service-number{
    width:34px;
    height:34px;
  }

  .home-bento-service-card .service-eyebrow{
    margin:17px 0 0;
    max-width:245px;
    font-size:9px;
    line-height:1.45;
    letter-spacing:.145em;
  }

  .home-bento-service-card__copy{
    position:static;
    padding:0;
    margin-top:49px;
  }

  .home-bento-service-card h2{
    margin:0 0 10px;
    max-width:275px;
    font-size:36px;
    line-height:.94;
    letter-spacing:-.05em;
  }

  .home-bento-service-card__copy>p{
    margin:0;
    max-width:282px;
    color:#716a63;
    font-size:14px;
    line-height:1.45;
  }

  /* CTA como en el wireframe: esquina inferior izquierda. */
  .home-bento-service-card__copy .home-bento-circle{
    position:absolute;
    left:18px;
    right:auto;
    bottom:18px;
    width:38px;
    height:38px;
    font-size:19px;
  }

  /* Las imágenes de apoyo tienen colocación individual. */
  .home-bento-service-icon{
    position:absolute;
    z-index:1;
    display:block;
    margin:0;
    object-fit:contain;
    pointer-events:none;
  }

  /* 01 · Laura con tablet: derecha y abajo, casi apoyada en el borde. */
  .home-bento-service-group--estrategia .home-bento-service-card{
    min-height:312px;
  }
  .home-bento-service-icon--estrategia{
    width:132px;
    height:158px;
    right:18px;
    top:auto;
    bottom:-3px;
    object-position:right bottom;
  }
  .home-bento-service-group--estrategia .home-bento-service-card__copy{
    margin-top:54px;
  }
  .home-bento-service-group--estrategia .home-bento-service-card h2{
    max-width:255px;
  }
  .home-bento-service-group--estrategia .home-bento-service-card__copy>p{
    max-width:270px;
    padding-right:42px;
  }

  /* 02 · Icono web/A: a la derecha, a la altura del título. */
  .home-bento-service-group--branding .home-bento-service-card{
    min-height:306px;
    background:#fcfbf8;
  }
  .home-bento-service-icon--branding{
    width:106px;
    height:106px;
    right:18px;
    top:116px;
    object-position:center;
  }
  .home-bento-service-group--branding .home-bento-service-card__copy{
    margin-top:51px;
  }
  .home-bento-service-group--branding .home-bento-service-card h2{
    max-width:248px;
  }
  .home-bento-service-group--branding .home-bento-service-card__copy>p{
    max-width:268px;
    padding-right:32px;
  }

  /* 03 · Sol: gran elemento inferior derecho y parcialmente cortado. */
  .home-bento-service-group--campanas .home-bento-service-card{
    min-height:294px;
    background:#eee8de;
  }
  .home-bento-service-icon--campanas{
    width:128px;
    height:128px;
    right:12px;
    top:auto;
    bottom:-46px;
    object-position:center bottom;
  }
  .home-bento-service-group--campanas .home-bento-service-card__copy{
    margin-top:44px;
  }
  .home-bento-service-group--campanas .home-bento-service-card h2{
    max-width:260px;
  }
  .home-bento-service-group--campanas .home-bento-service-card__copy>p{
    max-width:280px;
    padding-right:24px;
  }
}

@media (max-width:390px){
  .home-bento-service-card{
    min-height:292px;
    padding:18px 16px 66px;
  }
  .home-bento-service-card__copy .home-bento-circle{
    left:16px;
    bottom:16px;
  }
  .home-bento-service-card h2{font-size:34px}
  .home-bento-service-card__copy>p{font-size:13.5px}

  .home-bento-service-icon--estrategia{
    width:122px;
    height:148px;
    right:14px;
  }
  .home-bento-service-icon--branding{
    width:98px;
    height:98px;
    right:15px;
    top:112px;
  }
  .home-bento-service-icon--campanas{
    width:120px;
    height:120px;
    right:8px;
    bottom:-44px;
  }
}

@media (max-width:360px){
  .home-bento-service-card h2{font-size:31px}
  .home-bento-service-card .service-eyebrow{max-width:210px}
  .home-bento-service-group--estrategia .home-bento-service-card__copy>p,
  .home-bento-service-group--branding .home-bento-service-card__copy>p,
  .home-bento-service-group--campanas .home-bento-service-card__copy>p{
    max-width:245px;
  }
}

/* ===== v4.3 · Home CTA visibility + closing budget CTA ===== */
/* Desktop service CTAs: keep the action in the first reading sweep.
   The benefits become two columns so the button no longer falls below a tall list. */
@media (min-width: 981px){
  .home-service__copy{
    align-self:center;
  }
  .home-service ul{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    column-gap:34px;
    row-gap:0;
    margin:24px 0 8px;
    padding:18px 0 0;
  }
  .home-service li{
    min-width:0;
    padding:7px 0;
  }
  .home-service .service-card-action{
    margin-top:18px;
    min-width:270px;
    min-height:52px;
  }
}

/* Closing CTA: direct budget request, with the dedicated illustration on the right. */
.home-contact__grid{
  grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr);
  gap:72px;
}
.home-contact__visual{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  min-width:0;
}
.home-contact__art{
  display:block;
  width:min(100%,590px);
  height:auto;
  max-height:520px;
  margin-left:auto;
  object-fit:contain;
  object-position:center right;
}
.home-contact__link.button{
  width:min(360px,100%);
  justify-content:space-between;
  background:var(--ink);
  color:var(--paper);
  border-color:var(--ink);
}
.home-contact__link.button:hover{
  background:transparent;
  color:var(--ink);
}

/* Mobile closing CTA: primary action must read as a real CTA, not another outline control. */
@media (max-width: 800px){
  .home-bento-contact .home-bento-pill--dark{
    background:var(--ink);
    color:var(--paper);
    border-color:var(--ink);
  }
  .home-bento-contact .home-bento-pill--dark:hover,
  .home-bento-contact .home-bento-pill--dark:focus-visible{
    background:#37312c;
    color:var(--paper);
  }
}

@media (max-width: 1180px) and (min-width: 981px){
  .home-contact__grid{grid-template-columns:minmax(0,1fr) minmax(320px,.8fr);gap:52px}
  .home-contact__art{max-height:460px}
  .home-service ul{column-gap:24px}
}


/* ===== v4.4 · Home final spacing + label hierarchy ===== */
@media (min-width: 981px){
  /* The last service needs a calmer exit before the dark methodology panel. */
  .home-service:last-child{
    padding-bottom:140px;
  }

  /* Secondary services intro should be noticed without competing with section titles. */
  .home-services__head > p:last-child{
    max-width:360px;
    color:var(--ink);
    font-size:17px;
    line-height:1.5;
    font-weight:600;
  }
}

/* ===== v4.5 · Home desktop · single panel shadow ===== */
@media (min-width: 801px){
  /* The first panel does not need a top shadow. Keeping it caused its halo
     to remain visible behind Services while the next stacked panel entered. */
  .home-hero.stack-panel{
    box-shadow:none;
  }

  /* One restrained shadow is enough to communicate the Services overlap. */
  .home-services.stack-panel{
    box-shadow:0 -22px 58px rgba(43,38,34,.085);
  }
}


/* ===== v4.6 · Budget form: compact service selector + contextual close ===== */
.budget-page{position:relative}
.budget-close{
  position:fixed;
  z-index:45;
  top:118px;
  right:clamp(22px,3.2vw,58px);
  width:54px;
  height:54px;
  border:1px solid #bfb7ad;
  border-radius:50%;
  background:#f7f4ee;
  color:#2b2622;
  display:grid;
  place-items:center;
  transition:transform .2s ease,background .2s ease;
}
.budget-close:hover{transform:rotate(5deg) scale(1.04);background:#fcfbf8}
.budget-close svg{width:20px;height:20px}

/* The service list on the intro was repeating the same information as the form. */
.budget-page__services{display:none!important}

/* Two compact rows instead of four tall rows on desktop. */
.budget-options{margin-bottom:24px;padding-bottom:22px}
.budget-options>p{margin-bottom:12px}
.budget-options__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  border-top:1px solid #e2dbd2;
}
.budget-options__grid label{
  min-width:0;
  min-height:76px;
  padding:11px 14px 10px 0;
  border-top:0;
  align-content:start;
}
.budget-options__grid label:nth-child(even){
  padding-left:14px;
  border-left:1px solid #e2dbd2;
}
.budget-options__grid label:nth-child(n+3){border-top:1px solid #e2dbd2}
.budget-options__grid b{font-size:19px;line-height:1.05}
.budget-options__grid small{margin-top:4px;font-size:11px;line-height:1.32}
.budget-options__grid input{margin-top:1px}
.budget-fields__title{margin-top:0}

@media (max-width:900px){
  .budget-close{
    top:94px;
    right:14px;
    width:48px;
    height:48px;
  }
  .budget-page{padding-top:26px}
  .budget-page__intro{padding-right:54px;padding-bottom:20px}
  .budget-options{margin-bottom:20px;padding-bottom:18px}
  .budget-options__grid{grid-template-columns:1fr}
  .budget-options__grid label,
  .budget-options__grid label:nth-child(even){
    min-height:0;
    padding:10px 0;
    border-left:0;
    border-top:1px solid #e2dbd2;
  }
  .budget-options__grid label:first-child{border-top:0}
  .budget-options__grid b{font-size:18px}
  .budget-options__grid small{font-size:11px}
}

/* ===== Blog content blocks + contextual CTA ===== */
.blog-article__meta{display:flex;gap:10px;flex-wrap:wrap;align-items:center}.blog-article__meta .tagline{margin:0}.blog-article__reading{color:var(--muted);font-size:12px}
.blog-article__body>p{margin:0 0 28px}.blog-article__body strong{color:var(--ink);font-weight:500}.blog-article__body em{color:var(--ink)}
.blog-content-quote{margin:48px 0;padding:8px 0 8px 30px;border-left:2px solid var(--ink);color:var(--ink);font:300 clamp(25px,3vw,34px)/1.35 var(--font-display)}
.blog-content-highlight{margin:42px 0;padding:28px 30px;border:1px solid var(--line);background:var(--white);color:var(--ink);font-size:19px;line-height:1.55}
.blog-content-image{margin:46px 0}.blog-content-image img{display:block;width:100%;height:auto}.blog-content-image figcaption{margin-top:10px;color:var(--muted);font-size:12px;line-height:1.45}
.blog-content-list{margin:0 0 34px;padding-left:23px}.blog-content-list li{padding:4px 0 4px 5px}.blog-content-separator{border:0;border-top:1px solid var(--line);margin:58px 0}
.blog-context-cta{margin-top:74px;padding:38px;border:1px solid var(--ink);color:var(--ink)}.blog-context-cta__eyebrow{margin:0 0 14px;text-transform:uppercase;letter-spacing:.13em;font-size:10px}.blog-context-cta h2{margin:0 0 15px!important;font-size:clamp(30px,4vw,44px)!important}.blog-context-cta p{max-width:620px;margin:0 0 24px}.blog-context-cta .button{display:inline-flex}
@media(max-width:800px){.blog-content-quote{margin:38px 0;padding-left:20px}.blog-content-highlight{margin:34px 0;padding:22px}.blog-context-cta{margin-top:54px;padding:26px 22px}}

/* ========================================================================== 
   LB · GLOBAL PUBLIC HEADER + FOOTER · 2026-09-06
   Same navigation used across every view that extends layouts.app.
   ========================================================================== */
:root{
  --header-height:78px;
  --lb-global-shell:min(calc(100% - 2 * clamp(28px,4vw,80px)),1820px);
}

.site-header{
  height:var(--header-height);
  background:rgba(245,242,236,.97);
  border-bottom:1px solid #d3cec4;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.site-header__inner{
  width:var(--lb-global-shell);
  max-width:none;
  margin-inline:auto;
  gap:38px;
}

.brand img{
  width:230px;
  height:auto;
  max-width:32vw;
}

.desktop-nav{
  gap:28px;
  margin-left:auto;
}

.desktop-nav > a,
.desktop-nav__trigger{
  font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size:10px;
  font-weight:400;
  line-height:1;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#171715;
}

.desktop-nav__trigger{
  gap:7px;
  padding:9px 0;
}

.desktop-nav__trigger .icon{
  width:10px;
  height:10px;
}

.desktop-nav__services.is-open > .desktop-nav__trigger::after,
.desktop-nav__services:hover > .desktop-nav__trigger::after{
  transform:scaleX(1);
}

.desktop-nav__submenu{
  top:calc(100% + 19px);
  left:-22px;
  width:340px;
  padding:10px 22px;
  background:#f7f4ef;
  border:1px solid #d3cec4;
  box-shadow:none;
}

.desktop-nav__submenu a{
  padding:17px 0;
  border-bottom:1px solid #d3cec4;
  color:#2b2825;
  font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size:14px;
  font-weight:300;
  line-height:1.35;
  letter-spacing:0;
  text-transform:none;
}

.desktop-nav__submenu a:hover{
  padding-left:5px;
}

.desktop-nav > .desktop-nav__diagnostic{
  display:inline-flex;
  align-items:center;
  min-height:44px;
  padding:0 18px;
  border:1px solid #171715;
}
.desktop-nav > .desktop-nav__diagnostic::after{display:none}
.desktop-nav > .desktop-nav__diagnostic:hover,
.desktop-nav > .desktop-nav__diagnostic.active{
  background:#171715;
  color:#f5f2ec;
}

.desktop-nav > .desktop-nav__client{
  width:42px;
  height:42px;
  padding:0;
  display:grid;
  place-items:center;
  border:1px solid #d3cec4;
}
.desktop-nav > .desktop-nav__client::after{display:none}
.desktop-nav > .desktop-nav__client svg{width:15px;height:15px}
.desktop-nav > .desktop-nav__client:hover,
.desktop-nav > .desktop-nav__client.active{border-color:#171715}

.site-footer{
  min-height:96px;
  background:#f5f2ec;
  border-top:1px solid #d3cec4;
}
.site-footer__inner{
  width:var(--lb-global-shell);
  max-width:none;
  margin-inline:auto;
  color:#76716a;
  font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size:11px;
  font-weight:300;
}
.site-footer nav{gap:22px}
.site-footer__cookie-button{
  color:inherit;
  font:inherit;
  text-decoration:none;
}
.site-footer__cookie-button:hover{
  text-decoration:underline;
  text-underline-offset:4px;
}

@media(max-width:1100px){
  :root{--header-height:72px}
  .site-header__inner{gap:18px}
  .brand img{width:190px;max-width:52vw}
  .desktop-nav{display:none}
  .mobile-nav-toggle{
    display:inline-flex;
    align-items:center;
    border:0;
    background:transparent;
    padding:10px 0;
    font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size:10px;
    letter-spacing:.12em;
    text-transform:uppercase;
    cursor:pointer;
  }
  .mobile-nav{
    display:block;
    position:absolute;
    left:0;
    right:0;
    top:var(--header-height);
    max-height:calc(100dvh - var(--header-height));
    overflow-y:auto;
    background:#f5f2ec;
    border-bottom:1px solid #d3cec4;
  }
  .mobile-nav__inner{
    width:var(--lb-global-shell);
    max-width:none;
    margin-inline:auto;
    padding-block:6px 20px;
  }
  .mobile-nav a,
  .mobile-nav__services-trigger{
    min-height:52px;
    padding:15px 0;
    border-bottom:1px solid #d3cec4;
    font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size:11px;
    font-weight:400;
    line-height:1.2;
    letter-spacing:.11em;
    text-transform:uppercase;
  }
  .mobile-nav__services{padding-left:18px}
  .mobile-nav__services a{
    font-size:14px;
    font-weight:300;
    letter-spacing:0;
    text-transform:none;
  }
}

@media(max-width:600px){
  :root{--lb-global-shell:calc(100% - 36px)}
  .brand img{width:165px}
  .site-footer{padding-block:28px}
  .site-footer__inner{gap:22px}
  .site-footer nav{gap:16px 20px}
}
