:root {
  --paper: #f9fafb;
  --paper-deep: #e5e7eb;
  --ink: #111827;
  --ink-soft: #4b5563;
  --night: #0f172a;
  --night-soft: #111827;
  --amber: #d97706;
  --amber-light: #f59e0b;
  --white: #f9fafb;
  --surface: #f9fafb;
  --line: #e5e7eb;
  --line-light: rgba(229, 231, 235, 0.25);
  --sans: "Instrument Sans", "Arial Narrow", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --page: min(1180px, calc(100vw - 40px));
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  color-scheme: light;
}

html[data-theme="dark"] {
  --paper: #0f172a;
  --paper-deep: #111827;
  --ink: #f9fafb;
  --ink-soft: #94a3b8;
  --night: #0f172a;
  --night-soft: #111827;
  --amber-light: #f59e0b;
  --surface: #111827;
  --line: rgba(148, 163, 184, 0.35);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  border: 10px solid var(--paper-deep);
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--amber);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px;
  width: var(--page);
  min-height: 82px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(10, 17, 16, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 80px;
  height: 3px;
  background: var(--amber);
  content: "";
}

.brand {
  display: inline-block;
  width: max-content;
  text-decoration: none;
}

.brand__logo {
  width: clamp(142px, 18vw, 180px);
  height: auto;
}

.brand__logo--dark {
  display: none;
}

html[data-theme="dark"] .brand__logo--light {
  display: none;
}

html[data-theme="dark"] .brand__logo--dark {
  display: block;
}

.theme-toggle {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms var(--ease);
}

.theme-toggle:hover {
  border-color: var(--amber);
  background: var(--paper-deep);
  transform: rotate(5deg);
}

.theme-toggle__icon {
  position: absolute;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition:
    opacity 180ms ease,
    transform 240ms var(--ease);
}

.theme-toggle__icon--moon {
  opacity: 0;
  transform: rotate(-25deg) scale(0.65);
}

html[data-theme="dark"] .theme-toggle__icon--sun {
  opacity: 0;
  transform: rotate(35deg) scale(0.65);
}

html[data-theme="dark"] .theme-toggle__icon--moon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.theme-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.menu-toggle {
  display: inline-flex;
  min-width: 58px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle i {
  display: none;
}

.main-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  display: none;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  max-height: calc(100vh - 82px);
  overflow-y: auto;
}

.main-nav.is-open {
  display: grid;
}

.main-nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.header-action {
  display: none;
}

.eyebrow {
  margin-bottom: 24px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 10px;
  background: var(--amber);
  content: "";
  vertical-align: middle;
}

.eyebrow--light {
  color: rgba(249, 250, 251, 0.7);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms var(--ease);
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  background: var(--amber);
  color: var(--white);
}

.button--primary:hover {
  background: var(--amber-light);
  color: var(--night);
}

.button--secondary {
  border-color: var(--amber);
  background: transparent;
  color: var(--amber);
}

.button--secondary:hover {
  background: var(--amber);
  color: var(--white);
}

.button--dark {
  background: var(--night);
  color: var(--white);
}

.button--dark:hover {
  background: var(--white);
  color: var(--night);
}

.button--amber {
  background: var(--amber-light);
  color: var(--night);
}

.button--amber:hover {
  background: var(--white);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.text-link--light {
  color: var(--white);
}

.hero {
  display: grid;
  width: var(--page);
  min-height: calc(100svh - 82px);
  margin: 0 auto;
  padding: 58px 0 72px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 930px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 12.5vw, 7rem);
  font-weight: 620;
  letter-spacing: -0.072em;
  line-height: 0.88;
}

.hero h1 em {
  display: block;
  margin-top: 0.14em;
  color: var(--amber);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero__summary {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero__terms {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.hero__studio {
  position: relative;
  min-height: 440px;
  margin-top: 52px;
}

.hero-project {
  margin: 0;
}

.hero-project--main {
  position: absolute;
  inset: 22px 16px 32px 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--surface);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(-1.2deg);
}

.hero-project--main::before {
  position: absolute;
  z-index: 2;
  top: -11px;
  left: 44%;
  width: 76px;
  height: 30px;
  background: var(--paper-deep);
  content: "";
  transform: rotate(3deg);
}

.hero-project--main img {
  width: 100%;
  height: 72%;
  object-fit: cover;
}

.hero-project--main figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 28%;
  padding: 14px 20px;
}

.hero-project--main figcaption span {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-project--main figcaption strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.hero-project--portrait {
  position: absolute;
  z-index: 3;
  right: -4px;
  bottom: -4px;
  width: 125px;
  padding: 7px 7px 11px;
  border: 1px solid var(--ink);
  background: var(--surface);
  box-shadow: 7px 7px 0 var(--amber);
  transform: rotate(4deg);
}

.hero-project--portrait img {
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-project--portrait figcaption {
  padding-top: 7px;
  font-size: 0.62rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.hero-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--ink);
  background: var(--amber-light);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-note span {
  font-family: var(--serif);
  font-size: 1rem;
}

.hero-note--top {
  top: 2px;
  left: 2px;
  transform: rotate(2deg);
}

.hero-note--bottom {
  right: 15px;
  bottom: 118px;
  transform: rotate(-3deg);
}

.hero-stamp {
  position: absolute;
  z-index: 4;
  top: 40px;
  right: 0;
  display: grid;
  width: 88px;
  aspect-ratio: 1;
  place-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.decision {
  padding: 86px max(20px, calc((100vw - 1180px) / 2));
  background: var(--night);
  color: var(--white);
}

.decision__intro {
  max-width: 800px;
  margin-bottom: 56px;
}

.decision h2,
.contrast h2,
.process h2,
.work h2,
.pricing h2,
.perspective h2,
.questions h2,
.closing h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 7vw, 5.4rem);
  font-weight: 570;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.decision-path {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.decision-path li {
  position: relative;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line-light);
}

.decision-path li::after {
  position: absolute;
  top: 25px;
  right: 0;
  color: var(--amber-light);
  content: "→";
  font-family: var(--serif);
  font-size: 2rem;
}

.decision-path span {
  display: block;
  margin-bottom: 26px;
  color: rgba(249, 250, 251, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.decision-path strong {
  display: block;
  max-width: 82%;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.1;
}

.decision-path p {
  max-width: 440px;
  margin-bottom: 0;
  color: rgba(249, 250, 251, 0.62);
  font-size: 0.92rem;
}

.contrast {
  width: var(--page);
  margin: 0 auto;
  padding: 96px 0;
}

.contrast__heading {
  max-width: 960px;
  margin-bottom: 64px;
}

.contrast__table {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.contrast__column {
  padding: 32px 0 26px;
}

.contrast__column + .contrast__column {
  border-top: 1px solid var(--ink);
}

.contrast__column h3 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500;
}

.contrast__column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contrast__column li {
  position: relative;
  padding: 15px 0 15px 34px;
  border-top: 1px solid var(--line);
}

.contrast__column li::before {
  position: absolute;
  left: 2px;
  content: "—";
}

.contrast__column--old {
  color: #4b5563;
}

.contrast__column--old li {
  text-decoration-color: rgba(75, 85, 99, 0.7);
  text-decoration-line: line-through;
}

.contrast__column--new h3 {
  color: var(--amber);
}

.contrast__column--new li::before {
  color: var(--amber);
  content: "✓";
  font-weight: 700;
}

.process {
  padding: 90px max(20px, calc((100vw - 1180px) / 2));
  background: var(--paper-deep);
}

.process__heading {
  display: grid;
  gap: 30px;
  margin-bottom: 64px;
}

.process__heading > p {
  max-width: 530px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.process-step {
  display: grid;
  gap: 16px;
  padding: 28px 0 34px;
  border-bottom: 1px solid var(--ink);
}

.process-step__number {
  color: var(--amber);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.process-step p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.process-step small {
  align-self: start;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process__scope {
  margin: 38px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

.work {
  width: var(--page);
  margin: 0 auto;
  padding: 100px 0 110px;
}

.work__heading {
  max-width: 900px;
  margin-bottom: 62px;
}

.case {
  overflow: hidden;
}

.case__image {
  display: block;
  overflow: hidden;
  background: var(--paper-deep);
}

.case__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.case__image:hover img {
  transform: scale(1.025);
}

.case__copy > p:first-child {
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case__copy h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 0.95;
}

.case__copy > p:not(:first-child) {
  max-width: 560px;
  color: var(--ink-soft);
}

.case--feature {
  display: grid;
  margin-bottom: 48px;
  border-top: 1px solid var(--ink);
}

.case--feature .case__image {
  aspect-ratio: 16 / 10;
}

.case--feature .case__copy {
  padding: 28px 0 8px;
}

.case-pair {
  display: grid;
  gap: 26px;
}

.case--portrait {
  display: grid;
  background: var(--amber-light);
}

.case--portrait .case__image {
  aspect-ratio: 1 / 0.9;
}

.case--portrait .case__copy {
  padding: 28px;
}

.case--portrait .case__copy > p:first-child,
.case--portrait .case__copy > p:not(:first-child) {
  color: var(--ink);
}

.case--speaker {
  display: grid;
  background: var(--night);
  color: var(--white);
}

.case--speaker .case__copy {
  padding: 28px;
}

.case--speaker .case__copy > p:first-child,
.case--speaker .case__copy > p:not(:first-child) {
  color: rgba(249, 250, 251, 0.64);
}

.case--speaker .case__image {
  aspect-ratio: 1;
}

.case--speaker .case__image img {
  filter: grayscale(1) contrast(1.1);
}

.pricing {
  padding: 100px max(20px, calc((100vw - 1180px) / 2));
  background: var(--surface);
}

.pricing__heading {
  display: grid;
  gap: 28px;
  margin-bottom: 68px;
}

.pricing__heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
}

.packages {
  border-bottom: 1px solid var(--ink);
}

.package {
  border-top: 1px solid var(--ink);
}

.package summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 18px;
  align-items: center;
  min-height: 116px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
}

.package summary::-webkit-details-marker {
  display: none;
}

.package__audience {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.package summary strong {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 5vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.package__price {
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
}

.package__price small {
  font-size: 0.58rem;
}

.package__toggle {
  display: none;
}

.package__body {
  display: grid;
  gap: 24px;
  padding: 4px 0 34px;
}

.package__body > p {
  max-width: 680px;
  margin: 0;
  font-size: 1.05rem;
}

.package__body ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package__body li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
}

.package__body li::before {
  position: absolute;
  left: 0;
  color: var(--amber);
  content: "↳";
}

.package__body .button {
  width: 100%;
}

.package--recommended {
  margin-right: -20px;
  margin-left: -20px;
  padding-right: 20px;
  padding-left: 20px;
  background: var(--amber-light);
}

.package--recommended .package__audience,
.package--recommended .package__body li {
  color: var(--ink);
}

.included {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.included > p {
  margin-bottom: 26px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.included ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
}

.included li::before {
  position: absolute;
  left: 0;
  color: var(--amber);
  content: "•";
}

.perspective {
  display: grid;
  gap: 64px;
  width: var(--page);
  margin: 0 auto;
  padding: 100px 0;
}

.perspective__copy > p:last-child {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--ink-soft);
}

.calculation {
  align-self: end;
  padding: 30px 0 0;
  border-top: 1px solid var(--ink);
}

.calculation label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.calculation output {
  display: block;
  margin-bottom: 24px;
  color: var(--amber);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 8vw, 4.7rem);
  line-height: 1;
}

.calculation input {
  width: 100%;
  height: 44px;
  margin: 0;
  accent-color: var(--amber);
  cursor: pointer;
}

.calculation__scale {
  display: flex;
  justify-content: space-between;
  margin-top: -6px;
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.calculation__formula {
  margin: 36px 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1.25;
}

.calculation__formula strong {
  color: var(--amber);
  font-weight: 500;
}

.calculation small {
  color: var(--ink-soft);
  font-size: 0.69rem;
}

.questions {
  display: grid;
  gap: 56px;
  padding: 100px max(20px, calc((100vw - 1180px) / 2));
  background: var(--paper-deep);
}

.questions__heading > p:last-child {
  margin: 26px 0 0;
  color: var(--ink-soft);
}

.questions__list {
  border-bottom: 1px solid var(--ink);
}

.questions__list details {
  border-top: 1px solid var(--ink);
}

.questions__list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 80px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 650;
  list-style: none;
}

.questions__list summary::-webkit-details-marker {
  display: none;
}

.questions__list summary span {
  color: var(--amber);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  transition: transform 200ms var(--ease);
}

.questions__list details[open] summary span {
  transform: rotate(45deg);
}

.questions__list details > p {
  max-width: 700px;
  margin: -2px 42px 26px 0;
  color: var(--ink-soft);
}

.closing {
  padding: 90px max(20px, calc((100vw - 1180px) / 2));
  background: var(--night);
  color: var(--white);
}

.closing h2 {
  max-width: 1060px;
  color: var(--white);
}

.closing__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 48px;
}

.closing__action p {
  margin: 0;
  color: rgba(249, 250, 251, 0.58);
  font-size: 0.78rem;
}

.closing__action p a {
  color: var(--white);
  text-decoration-color: var(--amber);
  text-underline-offset: 4px;
}

.site-footer {
  display: grid;
  gap: 26px;
  width: var(--page);
  margin: 0 auto;
  padding: 44px 0 94px;
  border-top: 1px solid var(--line);
}

.brand--footer .brand__logo {
  width: clamp(168px, 20vw, 210px);
}

.site-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.whatsapp-dock {
  position: fixed;
  z-index: 18;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: var(--night);
  box-shadow: 5px 5px 0 rgba(217, 119, 6, 0.82);
  color: var(--white);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms var(--ease);
}

.whatsapp-dock:hover {
  transform: translate(-2px, -2px);
}

.whatsapp-dock span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
}

.js .rise {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms var(--ease),
    transform 620ms var(--ease);
}

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

.js .hero__copy {
  animation: enter-copy 700ms var(--ease) both;
}

.js .hero__studio {
  animation: enter-studio 850ms 100ms var(--ease) both;
}

@keyframes enter-copy {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes enter-studio {
  from {
    opacity: 0;
    transform: translateY(24px) rotate(1deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@media (min-width: 700px) {
  :root {
    --page: min(1180px, calc(100vw - 72px));
  }

  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: clamp(12px, 1.5vw, 22px);
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    justify-content: center;
    gap: clamp(18px, 3vw, 38px);
    padding: 0;
    border: 0;
    background: transparent;
  }

  .main-nav a {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    border: 0;
    font-size: 0.76rem;
    font-weight: 650;
    text-decoration: none;
  }

  .main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 1px;
    background: var(--amber);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 200ms var(--ease);
  }

  .main-nav a:hover::after {
    transform: scaleX(1);
  }

  .header-action {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    background: var(--amber);
    color: var(--white);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    transition:
      background-color 180ms ease,
      transform 180ms var(--ease);
  }

  .header-action:hover {
    background: var(--amber-light);
    color: var(--night);
    transform: translateY(-2px);
  }

  .hero__actions {
    flex-direction: row;
    align-items: center;
  }

  .hero__studio {
    min-height: 590px;
  }

  .hero-project--main {
    inset: 30px 80px 30px 6%;
  }

  .hero-project--main figcaption {
    padding-right: 180px;
    padding-left: 28px;
  }

  .hero-project--main figcaption strong {
    font-size: 1.6rem;
  }

  .hero-project--portrait {
    right: 20px;
    bottom: 0;
    width: 185px;
  }

  .hero-note--top {
    top: 7px;
    left: 9%;
  }

  .hero-note--bottom {
    right: 64px;
    bottom: 150px;
  }

  .hero-stamp {
    top: 58px;
    right: 14px;
    width: 112px;
  }

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

  .decision-path li {
    padding: 30px 30px 34px 0;
  }

  .decision-path li + li {
    padding-left: 30px;
    border-left: 1px solid var(--line-light);
  }

  .decision-path li::after {
    right: 22px;
  }

  .contrast__table {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contrast__column {
    padding: 40px;
  }

  .contrast__column:first-child {
    padding-left: 0;
  }

  .contrast__column + .contrast__column {
    border-top: 0;
    border-left: 1px solid var(--ink);
  }

  .process__heading,
  .pricing__heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: end;
  }

  .process-step {
    grid-template-columns: 80px minmax(0, 1fr) 180px;
    gap: 24px;
    align-items: start;
    padding: 34px 0 40px;
  }

  .process-step small {
    padding-top: 7px;
    text-align: right;
  }

  .case--feature {
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  }

  .case--feature .case__image {
    aspect-ratio: 16 / 10;
  }

  .case--feature .case__copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 38px 0 10px 42px;
  }

  .case-pair {
    grid-template-columns: 0.83fr 1.17fr;
  }

  .case--portrait .case__copy,
  .case--speaker .case__copy {
    padding: 38px;
  }

  .case--speaker {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .case--speaker .case__copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .case--speaker .case__image {
    aspect-ratio: auto;
  }

  .package summary {
    grid-template-columns: 1.05fr 1.4fr auto 34px;
    gap: 24px;
    min-height: 124px;
  }

  .package__audience {
    grid-column: auto;
  }

  .package__toggle {
    display: block;
    justify-self: end;
    color: var(--amber);
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    transition: transform 200ms var(--ease);
  }

  .package[open] .package__toggle {
    transform: rotate(45deg);
  }

  .package__body {
    grid-template-columns: 1fr 1fr;
    padding: 0 58px 40px calc(26.25% + 24px);
  }

  .package__body .button {
    grid-column: 2;
    width: auto;
    justify-self: start;
  }

  .package--recommended {
    margin-right: -36px;
    margin-left: -36px;
    padding-right: 36px;
    padding-left: 36px;
  }

  .included ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .perspective {
    grid-template-columns: 1fr 0.85fr;
    align-items: end;
  }

  .questions {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 8vw;
  }

  .questions__heading {
    align-self: start;
  }

  .closing__action {
    flex-direction: row;
    align-items: center;
  }

  .site-footer {
    grid-template-columns: 1fr auto auto;
    align-items: end;
  }
}

@media (min-width: 1020px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(500px, 0.75fr);
    gap: clamp(30px, 5vw, 82px);
    align-items: center;
    padding: 44px 0 68px;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 6.8vw, 7.1rem);
  }

  .hero__studio {
    min-height: 620px;
    margin-top: 0;
  }

  .hero-project--main {
    inset: 58px 76px 68px 0;
  }

  .hero-project--main img {
    height: 75%;
  }

  .hero-project--main figcaption {
    height: 25%;
    padding-right: 30px;
  }

  .hero-project--portrait {
    right: 0;
    bottom: 40px;
  }

  .hero-note--top {
    top: 35px;
    left: 12px;
  }

  .hero-note--bottom {
    right: 56px;
    bottom: 180px;
  }

  .hero-stamp {
    top: 84px;
    right: -8px;
  }

  .decision,
  .process,
  .pricing,
  .questions,
  .closing {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .decision__intro {
    margin-bottom: 76px;
  }

  .contrast,
  .work,
  .perspective {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .case--feature {
    margin-bottom: 80px;
  }

  .case-pair {
    gap: 48px;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .rise {
    opacity: 1;
    transform: none;
  }
}

/* WordPress: navegación, contenido editorial y plantillas interiores */

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 10px;
  left: 10px;
  display: block;
  width: auto;
  height: auto;
  padding: 14px 18px;
  clip: auto;
  background: var(--surface);
  color: var(--ink);
}

.custom-logo-link {
  display: inline-block;
  width: max-content;
  line-height: 0;
}

.custom-logo {
  width: clamp(142px, 18vw, 180px);
  height: auto;
}

html[data-theme="dark"] .custom-logo-link {
  padding: 4px 8px;
  background: var(--white);
}

.main-nav__list,
.main-nav__list ul,
.footer-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav__list {
  display: grid;
}

.main-nav .current-menu-item > a,
.main-nav .current-menu-ancestor > a {
  color: var(--amber);
}

.site-footer__middle {
  display: grid;
  gap: 16px;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.footer-nav a {
  min-height: 32px;
  text-decoration-color: var(--amber);
  text-underline-offset: 4px;
}

.content-main {
  min-height: 60vh;
}

.content-hero {
  display: grid;
  gap: 40px;
  padding: clamp(84px, 11vw, 150px) max(20px, calc((100vw - 1180px) / 2));
  background: var(--night);
  color: var(--white);
}

.content-hero h1,
.archive-heading h1,
.single-header h1,
.page-header h1,
.project-header h1,
.not-found h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, 9vw, 7.4rem);
  font-weight: 570;
  letter-spacing: -0.068em;
  line-height: 0.9;
}

.content-hero > div:last-child,
.content-hero > p {
  max-width: 580px;
  align-self: end;
}

.content-hero > div:last-child > p,
.content-hero > p {
  color: rgba(249, 250, 251, 0.7);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.archive-heading,
.single-header,
.page-header,
.project-header {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(82px, 11vw, 150px) 0 clamp(54px, 8vw, 100px);
}

.archive-heading {
  border-bottom: 1px solid var(--ink);
}

.archive-heading h1 {
  max-width: 1020px;
}

.archive-heading > p,
.archive-heading__description {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.archive-heading--search .search-form {
  max-width: 720px;
  margin-top: 42px;
}

.post-index,
.work-archive {
  width: var(--page);
  margin: 0 auto;
  padding: 50px 0 clamp(90px, 12vw, 150px);
}

.post-card {
  display: grid;
  gap: 26px;
  padding: 32px 0 38px;
  border-top: 1px solid var(--ink);
}

.post-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--paper-deep);
  text-decoration: none;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.post-card__image:hover img {
  transform: scale(1.025);
}

.post-card__placeholder,
.work-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
  background: var(--amber-light);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(5rem, 16vw, 12rem);
  line-height: 1;
}

.post-card__copy {
  align-self: end;
}

.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-card h2,
.work-card h2 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.post-card h2 a,
.work-card h2 a {
  text-decoration: none;
}

.post-card__excerpt {
  max-width: 620px;
  color: var(--ink-soft);
}

.post-card__excerpt p {
  margin-bottom: 20px;
}

.navigation.pagination {
  padding-top: 44px;
  border-top: 1px solid var(--ink);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.page-numbers {
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  place-content: center;
  border: 1px solid var(--line);
  text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.page-numbers.prev,
.page-numbers.next {
  width: auto;
  padding: 0 16px;
}

.single-header,
.project-header {
  max-width: 1180px;
}

.single-header h1,
.project-header h1 {
  max-width: 1050px;
}

.single-lead,
.page-lead,
.project-lead {
  max-width: 760px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.35;
}

.single-lead p,
.page-lead p,
.project-lead p {
  margin: 0;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.entry-meta a {
  color: inherit;
}

.single-cover,
.page-cover,
.project-cover {
  width: min(1380px, calc(100vw - 20px));
  margin: 0 auto clamp(64px, 9vw, 116px);
}

.single-cover img,
.page-cover img,
.project-cover img {
  width: 100%;
  max-height: 820px;
  object-fit: cover;
}

.single-cover .single-cover__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
  margin-inline: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.single-cover figcaption,
.wp-element-caption,
.wp-caption-text,
.gallery-caption {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.entry-layout {
  width: var(--page);
  margin: 0 auto;
}

.entry-aside {
  margin-bottom: 48px;
  padding: 22px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.entry-aside > p {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.entry-aside__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.entry-aside__categories a,
.tag-list a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: 0.72rem;
}

.entry-content {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.entry-content > * {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.entry-content > .alignwide {
  max-width: 1180px;
}

.entry-content > .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
}

.entry-content > p,
.entry-content > ul,
.entry-content > ol,
.entry-content > blockquote,
.entry-content > .wp-block-group,
.entry-content > .wp-block-columns {
  margin-bottom: 1.65em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 1.8em;
  margin-bottom: 0.7em;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.entry-content h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.entry-content h3 {
  font-size: clamp(1.55rem, 4vw, 2.3rem);
}

.entry-content a {
  text-decoration-color: var(--amber);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.entry-content blockquote,
.wp-block-quote {
  padding-left: clamp(22px, 4vw, 42px);
  border-left: 4px solid var(--amber);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.3;
}

.entry-content blockquote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.entry-content img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.entry-content figure {
  margin-top: 2.4em;
  margin-bottom: 2.4em;
}

.entry-content table {
  width: 100%;
  margin: 2em auto;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 0.92rem;
}

.entry-content th,
.entry-content td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.entry-content th {
  background: var(--paper-deep);
}

.entry-content pre,
.entry-content code {
  overflow-x: auto;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.88em;
}

.entry-content pre {
  padding: 22px;
  background: var(--night);
  color: var(--white);
}

.wp-block-button__link,
.entry-content input[type="submit"] {
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.wp-block-separator {
  border-color: var(--line);
}

.entry-content--page,
.entry-content--project {
  width: var(--page);
  margin: 0 auto clamp(80px, 12vw, 150px);
}

.entry-content--wide > * {
  max-width: 1180px;
}

.entry-footer,
.post-navigation,
.comments-area {
  width: min(760px, calc(100vw - 40px));
  margin: clamp(60px, 9vw, 110px) auto 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.tag-list > span {
  margin-right: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-navigation {
  display: grid;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.post-navigation div:last-child {
  text-align: right;
}

.post-navigation span {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-navigation a {
  font-family: var(--serif);
  font-size: 1.2rem;
  text-decoration-color: var(--amber);
  text-underline-offset: 4px;
}

.comments-area {
  margin-bottom: clamp(80px, 12vw, 150px);
}

.comments-title,
.comment-reply-title {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
}

.comment-list {
  margin: 0 0 64px;
  padding: 0;
  list-style: none;
}

.comment-list .children {
  margin-left: clamp(14px, 5vw, 54px);
  list-style: none;
}

.comment-body {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.comment-meta {
  margin-bottom: 16px;
  font-size: 0.76rem;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-author img {
  border-radius: 50%;
}

.bypostauthor > .comment-body {
  border-top-color: var(--amber);
}

.comment-form {
  display: grid;
  gap: 18px;
}

.comment-form p {
  margin: 0;
}

.comment-form label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comment-form input:not([type="submit"]):not([type="checkbox"]),
.comment-form textarea,
.search-form input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--surface);
  color: var(--ink);
}

.comment-form textarea {
  min-height: 180px;
  resize: vertical;
}

.comment-form input[type="submit"] {
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 28px;
}

.search-form label {
  display: block;
}

.search-form button {
  min-width: 104px;
  border: 1px solid var(--ink);
  background: var(--amber-light);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
}

.content-hero .search-form input {
  border-color: rgba(249, 250, 251, 0.55);
  background: transparent;
  color: var(--white);
}

.content-hero .search-form input::placeholder {
  color: rgba(249, 250, 251, 0.55);
}

.empty-state {
  max-width: 760px;
  padding: clamp(60px, 9vw, 110px) 0;
}

.empty-state h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.work-archive {
  display: grid;
  gap: 0;
}

.work-card {
  display: grid;
  gap: 28px;
  padding: clamp(32px, 6vw, 64px) 0;
  border-top: 1px solid var(--ink);
}

.work-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--paper-deep);
}

.work-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.work-card__image:hover img {
  transform: scale(1.025);
}

.work-card__copy {
  align-self: end;
}

.work-card__copy > p {
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-card__copy > strong {
  display: block;
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.work-card__copy > div {
  max-width: 600px;
  color: var(--ink-soft);
}

.project-facts {
  display: grid;
  width: var(--page);
  margin: 0 auto clamp(54px, 8vw, 90px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.project-facts div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.project-facts div:last-child {
  border-bottom: 0;
}

.project-facts dt {
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.project-facts a {
  text-decoration-color: var(--amber);
  text-underline-offset: 4px;
}

.project-visit {
  display: flex;
  width: min(760px, calc(100vw - 40px));
  margin: 0 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 30px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.project-visit p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.not-found {
  display: grid;
  gap: 36px;
  width: var(--page);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 160px) 0;
}

.not-found__number {
  margin: 0;
  color: var(--amber);
  font-family: var(--serif);
  font-size: clamp(8rem, 34vw, 24rem);
  letter-spacing: -0.1em;
  line-height: 0.65;
}

.not-found__copy {
  max-width: 720px;
}

.not-found__copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 24px 0;
  color: var(--ink-soft);
}

.closing--inner {
  margin-top: clamp(40px, 7vw, 90px);
}

.sticky {
  position: relative;
}

.sticky::before {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 10px;
  background: var(--amber-light);
  content: "Destacada";
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 700px) {
  .main-nav {
    display: block;
  }

  .main-nav__list {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 3vw, 38px);
  }

  .content-hero {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: end;
  }

  .post-card {
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(32px, 6vw, 80px);
  }

  .post-card--featured {
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
    padding-top: 0;
    border-top: 0;
  }

  .post-card--featured .post-card__image {
    aspect-ratio: 16 / 11;
  }

  .post-card:not(.post-card--featured) .post-card__image {
    aspect-ratio: 4 / 3;
  }

  .post-navigation {
    grid-template-columns: 1fr 1fr;
  }

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

  .project-facts div {
    min-width: 0;
    padding: 22px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .project-facts div:first-child {
    padding-left: 0;
  }

  .project-facts div:last-child {
    border-right: 0;
  }

  .project-visit {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .not-found {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: end;
  }
}

@media (min-width: 900px) {
  .entry-layout {
    display: grid;
    grid-template-columns: 180px minmax(0, 760px);
    gap: clamp(50px, 8vw, 110px);
    justify-content: center;
  }

  .entry-aside {
    position: sticky;
    top: 32px;
    align-self: start;
    margin: 0;
  }

  .work-card {
    grid-template-columns: 1.25fr 0.75fr;
    gap: clamp(48px, 8vw, 110px);
  }

  .work-card:nth-of-type(even) .work-card__image {
    grid-column: 2;
    grid-row: 1;
  }

  .work-card:nth-of-type(even) .work-card__copy {
    grid-column: 1;
    grid-row: 1;
  }
}

@media (hover: hover) {
  .search-form button:hover,
  .comment-form input[type="submit"]:hover {
    background: var(--amber);
  }
}

@media (pointer: coarse) {
  .main-nav a,
  .footer-nav a,
  .entry-content a {
    min-height: 44px;
  }
}

html[data-theme="dark"] .skip-link,
html[data-theme="dark"] .button--primary,
html[data-theme="dark"] .hero-stamp,
html[data-theme="dark"] .header-action,
html[data-theme="dark"] .page-numbers.current,
html[data-theme="dark"] .page-numbers:hover,
html[data-theme="dark"] .wp-block-button__link,
html[data-theme="dark"] .entry-content input[type="submit"],
html[data-theme="dark"] .comment-form input[type="submit"] {
  border-color: var(--amber-light);
  background: var(--amber-light);
  color: var(--night);
}

html[data-theme="dark"] .button--secondary:hover {
  border-color: var(--amber-light);
  background: var(--amber-light);
  color: var(--night);
}

html[data-theme="dark"] .button--amber,
html[data-theme="dark"] .search-form button {
  border-color: var(--amber-light);
  background: var(--amber-light);
  color: var(--night);
}

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

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