:root {
  --ink: #07111a;
  --ink-2: #0d1b26;
  --ink-3: #142733;
  --paper: #f6f7f2;
  --surface: #ffffff;
  --surface-soft: #eef2ef;
  --mint-pale: #e8f4f0;
  --amber-pale: #fff5df;
  --text: #172833;
  --muted: #5f6d75;
  --line: #d9dfdc;
  --amber: #f4b942;
  --amber-dark: #d89515;
  --mint: #48d9c5;
  --mint-soft: #c9f7ef;
  --danger: #b42318;
  --success: #16794a;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(7, 17, 26, 0.12);
  --container: 1180px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

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

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 6.6vw, 6.75rem);
}

h2 {
  font-size: clamp(2.25rem, 4.8vw, 4.6rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 930px;
}

.section {
  padding: clamp(86px, 10vw, 150px) 0;
}

.section-dark {
  position: relative;
  background: var(--ink);
  color: #fff;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.is-sticky {
  position: fixed;
  background: rgba(7, 17, 26, 0.94);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 28px;
}

.brand,
.brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
}

.brand .custom-logo,
.brand-logo {
  width: auto;
  max-width: 220px;
  max-height: 56px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  background: var(--amber);
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 950;
}

.brand-name {
  font-size: 1.32rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand-name span {
  color: var(--amber);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-nav .menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav .menu a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav .menu a::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--amber);
  content: "";
  transition: transform 0.2s ease;
}

.primary-nav .menu a:hover::after,
.primary-nav .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 15px 24px;
  border: 1px solid var(--amber);
  border-radius: 4px;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 13px 30px rgba(244, 185, 66, 0.15);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
  border-color: #ffd16e;
  background: #ffd16e;
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.86rem;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.button-outline:hover {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  color: var(--amber);
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.dark-link {
  color: var(--ink);
}

.eyebrow,
.kicker {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--amber);
}

.kicker-light {
  color: var(--mint);
}

.hero {
  min-height: min(940px, 100vh);
  padding: calc(var(--header-height) + 76px) 0 80px;
  overflow: hidden;
}

.hero-grid,
.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: -260px;
  right: -180px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(72, 217, 197, 0.16), transparent 68%);
}

.hero-glow-two {
  bottom: -340px;
  left: -240px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(244, 185, 66, 0.1), transparent 68%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(38px, 6vw, 90px);
}

.hero-copy h1 {
  max-width: 850px;
  margin-bottom: 30px;
}

.hero-copy h1 em,
.page-hero h1 em {
  color: var(--amber);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.065em;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 54px;
}

.hero-proof {
  display: flex;
  max-width: 670px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  width: 50%;
  gap: 14px;
  padding-right: 24px;
}

.hero-proof li + li {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-proof strong {
  color: var(--mint);
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.hero-proof span {
  max-width: 190px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
}

.portrait-frame {
  position: relative;
  max-width: 440px;
  margin-inline: auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 210px 210px 18px 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow: 36px 38px 0 rgba(72, 217, 197, 0.1);
}

.portrait-frame::before {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -24px;
  width: 120px;
  height: 120px;
  border-top: 2px solid var(--amber);
  border-right: 2px solid var(--amber);
  content: "";
}

.portrait-frame img,
.portrait-placeholder {
  width: 100%;
  aspect-ratio: 5 / 6;
  border-radius: 196px 196px 10px 10px;
  object-fit: cover;
  object-position: center top;
}

.portrait-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  background: radial-gradient(circle at 50% 24%, #2f5362, #122632 56%, #0a1720);
  color: #fff;
}

.portrait-initial {
  color: rgba(255, 255, 255, 0.88);
  font-family: Georgia, serif;
  font-size: clamp(8rem, 19vw, 14rem);
  line-height: 0.8;
}

.portrait-placeholder small {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portrait-label {
  position: absolute;
  right: -26px;
  bottom: 44px;
  padding: 13px 18px;
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.portrait-label span {
  color: var(--amber-dark);
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
  color: #34454f;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-items i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}

.need-section {
  background: #f0f2ee;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fit-card {
  min-height: 290px;
  padding: clamp(28px, 4vw, 44px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.fit-card > span {
  display: block;
  margin-bottom: 52px;
  color: var(--amber-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
}

.fit-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.fit-card p {
  color: var(--muted);
}

.section-heading {
  margin-bottom: clamp(48px, 7vw, 86px);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 70px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading h2 span,
.method-intro h2 span,
.projects-home h2 span,
.human-ai-copy h2 span {
  color: #7d898f;
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.split-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 360px;
  padding: clamp(30px, 4vw, 50px);
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
  transition: background 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  z-index: 2;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-card.featured {
  background: var(--mint-soft);
}

.card-number {
  display: inline-block;
  margin-bottom: 58px;
  color: #869198;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
}

.card-tag {
  position: absolute;
  top: 35px;
  right: 35px;
  padding: 6px 9px;
  background: var(--ink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 420px;
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.service-card p {
  max-width: 500px;
  color: var(--muted);
}

.service-card a {
  position: absolute;
  bottom: 40px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.service-card a span {
  color: var(--amber-dark);
}

.method-section {
  overflow: hidden;
}

.method-section::after {
  position: absolute;
  right: -160px;
  bottom: -180px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
  content: "";
}

.method-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 11vw, 150px);
}

.method-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.method-intro h2 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.method-intro p:not(.kicker) {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.67);
}

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

.steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.steps > li > span {
  color: var(--amber);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
}

.steps h3 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
}

.steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
}

.human-ai-section {
  background: var(--mint-soft);
}

.human-ai-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(60px, 10vw, 130px);
}

.human-ai-copy h2 {
  font-size: clamp(2.7rem, 5.2vw, 5rem);
}

.human-ai-copy > p:not(.kicker) {
  max-width: 720px;
  color: #40545a;
}

.principle-panel {
  padding: clamp(30px, 5vw, 56px);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.principle-label {
  margin-bottom: 32px;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.principle-list li {
  display: grid;
  gap: 7px;
  padding: 23px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.principle-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.principle-list strong {
  font-size: 1.05rem;
}

.principle-list span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(60px, 10vw, 140px);
}

.about-visual {
  position: relative;
  min-height: 500px;
}

.experience-card {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: min(82%, 350px);
  min-height: 390px;
  padding: 40px;
  background: var(--amber);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.experience-card strong {
  font-family: Georgia, serif;
  font-size: 10rem;
  font-weight: 400;
  letter-spacing: -0.1em;
  line-height: 0.7;
}

.experience-card span {
  max-width: 190px;
  margin-top: 34px;
  font-weight: 800;
  line-height: 1.35;
}

.code-card {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 10px;
  width: min(64%, 280px);
  padding: 38px;
  background: var(--ink);
  color: var(--mint);
  box-shadow: var(--shadow);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.82rem;
}

.code-card span::before {
  margin-right: 10px;
  color: var(--amber);
  content: "→";
}

.about-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

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

.about-copy .text-link {
  margin-top: 18px;
}

.projects-home {
  border-top: 1px solid var(--line);
  background: #eef0eb;
}

.project-list {
  border-top: 1px solid #bac3bf;
}

.project-row {
  display: grid;
  grid-template-columns: 60px 1fr auto 44px;
  align-items: center;
  gap: 24px;
  min-height: 150px;
  border-bottom: 1px solid #bac3bf;
  text-decoration: none;
  transition: padding 0.25s ease, background 0.25s ease;
}

.project-row:hover {
  padding-inline: 20px;
  background: rgba(255, 255, 255, 0.68);
}

.project-index {
  color: #7d898f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
}

.project-row h3 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.project-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.project-status {
  padding: 7px 10px;
  border: 1px solid #abb6b1;
  border-radius: 999px;
  color: #57666e;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-arrow {
  color: var(--amber-dark);
  font-size: 1.4rem;
}

.evidence-note {
  max-width: 700px;
  margin: 28px 0 0 auto;
  color: var(--muted);
  font-size: 0.84rem;
  font-style: italic;
}

.price-preview-section {
  background: var(--amber-pale);
}

.price-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.price-preview-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: clamp(28px, 4vw, 44px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.price-preview-card.featured {
  background: var(--mint-soft);
}

.price-preview-card > p {
  margin-bottom: 45px;
  font-weight: 850;
}

.price-preview-card > strong {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 4rem);
  letter-spacing: -0.065em;
  line-height: 1;
}

.price-preview-card > strong small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-preview-card > span {
  color: var(--muted);
  font-size: 0.9rem;
}

.center-link {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(70px, 10vw, 140px);
}

.faq-intro h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
}

.faq-intro p {
  color: var(--muted);
}

.accordion details {
  border-top: 1px solid var(--line);
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

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

.accordion summary span {
  flex: 0 0 auto;
  color: var(--amber-dark);
  font-size: 1.8rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

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

.accordion details p {
  max-width: 700px;
  padding: 0 50px 28px 0;
  color: var(--muted);
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 11vw, 150px) 0;
}

.cta-pattern {
  opacity: 0.12;
  transform: rotate(8deg) scale(1.2);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  text-align: center;
}

.cta-inner h2 {
  margin-bottom: 24px;
}

.cta-inner > p:not(.kicker) {
  max-width: 680px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.66);
}

.cta-light > p:not(.kicker) {
  color: var(--muted);
}

.site-footer {
  padding: 76px 0 26px;
  background: #040b10;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 50px;
  padding-bottom: 70px;
}

.brand-footer {
  margin-bottom: 24px;
}

.brand-footer .brand-logo {
  max-width: 200px;
}

.footer-brand p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.footer-title {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--amber);
}

.footer-email {
  color: var(--amber);
  font-weight: 800;
}

.availability {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.4;
}

.availability span {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(72, 217, 197, 0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  text-decoration: none;
}

/* Interior pages */
.service-intro {
  background: var(--surface-soft);
}

.faq-section {
  background: var(--surface);
}

#servicios.section {
  padding-top: 0;
  padding-bottom: 0;
}

.page-hero,
.article-hero {
  padding: calc(var(--header-height) + clamp(80px, 10vw, 140px)) 0 clamp(90px, 11vw, 150px);
  overflow: hidden;
}

.page-hero::before,
.article-hero::before {
  position: absolute;
  top: -260px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72,217,197,.13), transparent 66%);
  content: "";
}

.page-hero .container,
.article-hero .container {
  position: relative;
}

.page-hero h1 {
  margin-bottom: 30px;
  font-size: clamp(3.15rem, 6.6vw, 6.6rem);
}

.page-hero .narrow > p:not(.eyebrow),
.about-hero-grid > div > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

/* Single-column headers are centred as a complete visual group. */
.page-hero:not(.about-hero) .narrow,
.article-hero .narrow {
  text-align: center;
}

.page-hero:not(.about-hero) .eyebrow {
  justify-content: center;
}

.page-hero:not(.about-hero) h1,
.article-hero h1,
.page-hero:not(.about-hero) .narrow > p:not(.eyebrow),
.article-hero .article-deck {
  margin-right: auto;
  margin-left: auto;
}

.page-hero:not(.about-hero) .hero-actions {
  justify-content: center;
}

.compact-hero {
  padding-bottom: 80px;
}

.compact-hero h1 {
  margin-bottom: 0;
}

.service-detail-list {
  max-width: 1080px;
  border-top: 1px solid var(--line);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  padding: clamp(60px, 8vw, 105px) 0;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.service-detail:nth-child(odd) {
  background: var(--surface);
  box-shadow: 0 0 0 100vmax var(--surface);
  clip-path: inset(0 -100vmax);
}

.service-detail:nth-child(even) {
  background: var(--mint-pale);
  box-shadow: 0 0 0 100vmax var(--mint-pale);
  clip-path: inset(0 -100vmax);
}

.service-detail-number {
  justify-self: center;
  color: var(--amber-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
}

.service-detail h2 {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.service-detail > div:last-child > p:not(.kicker) {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.service-detail .check-list {
  width: fit-content;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.service-detail .service-fit {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.service-detail .service-fit strong {
  color: var(--ink);
}

.context-link {
  color: var(--ink);
  font-weight: 750;
  text-decoration-color: var(--amber-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.context-link:hover,
.context-link:focus-visible {
  color: var(--amber-dark);
}

.audience-section {
  background: var(--mint-pale);
}

.audience-heading {
  max-width: 850px;
  margin: 0 auto 54px;
  text-align: center;
}

.audience-heading h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.audience-heading > p:last-child {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

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

.audience-card {
  grid-column: span 2;
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(12, 35, 49, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(12, 35, 49, 0.06);
}

.audience-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.audience-card > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.audience-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-proof-section {
  overflow: hidden;
  background: var(--amber-pale);
}

.service-proof-inner {
  max-width: 1080px;
  padding: clamp(40px, 6vw, 72px);
  border: 1px solid rgba(12, 35, 49, 0.14);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: 0 28px 75px rgba(12, 35, 49, 0.1);
}

.service-proof-copy {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-proof-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 4.7vw, 4.4rem);
}

.service-proof-copy > p:not(.kicker) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-card {
  display: flex;
  min-height: 180px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--mint-pale);
  text-align: center;
}

.proof-card strong {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.proof-card span {
  max-width: 220px;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-proof-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 38px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  color: var(--amber-dark);
  font-weight: 900;
  content: "✓";
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: center;
  gap: clamp(42px, 5vw, 74px);
}

.about-hero-copy h1 {
  max-width: none;
  font-size: clamp(2.5rem, 3vw, 3.25rem);
}

.about-hero-title > span,
.about-hero-title > em {
  display: block;
}

@media (min-width: 641px) {
  .about-hero-title > span,
  .about-hero-title > em {
    white-space: nowrap;
  }
}

.about-hero-manifesto strong {
  color: #fff;
}

.about-hero-actions,
.about-cta-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.about-photo {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 28px;
  background: rgba(255,255,255,.05);
  box-shadow: 28px 30px 0 rgba(72, 217, 197, 0.08);
}

.about-photo img,
.about-photo .portrait-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  object-fit: cover;
}

.about-photo figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(7, 17, 26, 0.86);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.about-story-section {
  background: var(--paper);
}

.prose-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: clamp(60px, 11vw, 150px);
}

.prose-layout aside {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.big-stat {
  color: var(--amber-dark);
  font-family: Georgia, serif;
  font-size: 9rem;
  font-weight: 400;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.prose-layout aside > span {
  max-width: 140px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.4;
}

.prose {
  max-width: 780px;
}

.prose h2 {
  margin: 70px 0 24px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  color: #44545d;
  font-size: 1.08rem;
}

.about-method-section {
  background: var(--mint-pale);
}

.about-section-heading {
  max-width: 880px;
  margin: 0 auto clamp(48px, 7vw, 78px);
  text-align: center;
}

.about-section-heading h2 {
  margin-bottom: 22px;
}

.about-section-heading > p:not(.kicker) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-method-grid article {
  min-height: 255px;
  padding: 32px;
  border: 1px solid rgba(12, 35, 49, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(12, 35, 49, 0.055);
}

.about-method-grid article > span,
.about-project-grid article > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--amber-pale);
  color: var(--amber-dark);
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 850;
}

.about-method-grid h3,
.about-specialty-grid h3,
.about-project-grid h3 {
  margin-bottom: 13px;
  font-size: 1.45rem;
}

.about-method-grid p,
.about-specialty-grid p,
.about-project-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.about-specialties-section {
  background: var(--surface);
}

.about-specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}

.about-specialty-grid article {
  min-height: 225px;
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
}

.about-specialty-grid article::before {
  display: block;
  width: 46px;
  height: 4px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: var(--mint);
  content: "";
}

.about-projects-section {
  background: var(--amber-pale);
}

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

.about-project-grid article {
  display: flex;
  min-height: 325px;
  padding: 34px;
  flex-direction: column;
  border: 1px solid rgba(12, 35, 49, 0.13);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(12, 35, 49, 0.07);
}

.about-project-grid .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.about-projects-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.values-section {
  padding: 110px 0;
}

.about-values-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-values-heading h2 {
  margin-bottom: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
}

.value-grid article {
  min-height: 270px;
  padding: 38px;
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.value-grid article > span {
  color: var(--amber);
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
}

.value-grid h3 {
  margin: 65px 0 14px;
  font-size: 2rem;
}

.value-grid p {
  color: rgba(255,255,255,.59);
}

.about-cta-section {
  background: var(--paper);
}

.about-cta-actions {
  justify-content: center;
}

.about-cta-actions .dark-link {
  color: var(--ink);
}

.project-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.project-card {
  min-height: 390px;
  padding: clamp(30px, 5vw, 54px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.45);
}

.project-card-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 66px;
  color: #7d898f;
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
}

.project-card h2 {
  margin-bottom: 20px;
  overflow-wrap: anywhere;
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
}

.project-card > p:not(.kicker) {
  color: var(--muted);
}

.project-card .text-link {
  margin-top: 20px;
}

.evidence-section {
  padding: 90px 0;
  background: var(--mint-soft);
}

.evidence-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 80px;
}

.evidence-box h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.evidence-box > p {
  margin-bottom: 8px;
  color: #3b5656;
}

/* Audited portfolio page: projects, proof and future case studies. */
.projects-hero .narrow {
  max-width: 1040px;
}

.projects-hero h1 {
  max-width: 1020px;
  font-size: clamp(3rem, 6vw, 6.25rem);
}

.projects-hero p:last-child {
  max-width: 850px;
}

.projects-hero p:last-child a,
.portfolio-intro a {
  color: inherit;
  font-weight: 800;
  text-decoration-color: var(--amber);
  text-decoration-thickness: 2px;
}

.portfolio-intro-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(72, 217, 197, 0.12), transparent 28%),
    var(--paper);
}

.portfolio-intro {
  max-width: 920px;
  text-align: center;
}

.portfolio-intro h2 {
  margin-bottom: 30px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.portfolio-intro p:not(.kicker) {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.portfolio-capabilities-section {
  padding: clamp(88px, 10vw, 132px) 0;
  background:
    linear-gradient(135deg, rgba(72, 217, 197, 0.08), transparent 48%),
    var(--ink-2);
}

.portfolio-section-heading {
  max-width: 860px;
  margin-bottom: 52px;
}

.portfolio-section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.portfolio-section-heading h2 {
  margin-bottom: 22px;
}

.portfolio-section-heading > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.portfolio-section-heading.centered > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.portfolio-capabilities-section .portfolio-section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.portfolio-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.portfolio-capabilities-grid article {
  min-height: 300px;
  padding: 34px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.portfolio-capabilities-grid article > span {
  color: var(--amber);
  font-family: ui-monospace, monospace;
  font-size: 0.74rem;
}

.portfolio-capabilities-grid h3 {
  margin: 70px 0 16px;
  font-size: clamp(1.45rem, 2.25vw, 2rem);
}

.portfolio-capabilities-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.96rem;
}

.portfolio-projects-section {
  background:
    linear-gradient(180deg, var(--paper), #eef3f0 52%, var(--paper));
}

.portfolio-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.portfolio-project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 20px 55px rgba(7, 17, 26, 0.08);
}

.portfolio-project-visual {
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.portfolio-project-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

.portfolio-project-visual figcaption {
  padding: 11px 20px 13px;
  background: var(--ink-2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.45;
}

.portfolio-project-content {
  padding: clamp(28px, 4vw, 46px);
}

.portfolio-project-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-project-number {
  color: var(--amber-dark);
  font-family: ui-monospace, monospace;
}

.portfolio-project-type {
  text-align: right;
}

.portfolio-project-card h3 {
  margin-bottom: 20px;
  overflow-wrap: anywhere;
  font-size: clamp(2rem, 3.6vw, 3.15rem);
}

.portfolio-project-card:first-child h3 {
  font-size: clamp(1.8rem, 2.75vw, 2.55rem);
}

.portfolio-project-summary {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.04rem;
}

.portfolio-project-facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.portfolio-project-facts > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.portfolio-project-facts dt {
  color: var(--amber-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-project-facts dd {
  margin: 0;
  color: #3f5059;
  font-size: 0.93rem;
  line-height: 1.58;
}

.portfolio-work-block {
  margin-top: 28px;
  padding: 24px;
  border-radius: 16px;
  background: var(--mint-pale);
}

.portfolio-work-block h4,
.portfolio-project-links > p {
  margin: 0 0 13px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.portfolio-work-block ul,
.portfolio-project-links ul,
.portfolio-evidence-copy ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.portfolio-work-block li,
.portfolio-evidence-copy li {
  position: relative;
  padding-left: 24px;
}

.portfolio-work-block li + li,
.portfolio-evidence-copy li + li {
  margin-top: 9px;
}

.portfolio-work-block li::before,
.portfolio-evidence-copy li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--amber-dark);
  font-weight: 900;
  content: "✓";
}

.portfolio-decision {
  margin: 24px 0 0;
  padding: 19px 21px;
  border-left: 4px solid var(--amber);
  background: var(--amber-pale);
  color: #4c4637;
  font-size: 0.93rem;
}

.portfolio-decision strong {
  color: var(--ink);
}

.portfolio-project-links {
  margin-top: 30px;
}

.portfolio-project-links li + li {
  margin-top: 7px;
}

.portfolio-project-links li a {
  color: #245f59;
  font-weight: 750;
}

.portfolio-project-links .button {
  width: 100%;
  margin-top: 24px;
}

.portfolio-evidence-section .evidence-box {
  align-items: start;
}

.portfolio-evidence-section h2 {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
}

.portfolio-evidence-copy p {
  color: #345253;
}

.portfolio-evidence-copy ul {
  color: #345253;
}

.portfolio-cta-section {
  padding: clamp(88px, 10vw, 135px) 0;
  text-align: center;
}

.portfolio-cta-section .narrow {
  margin-right: auto;
  margin-left: auto;
}

.portfolio-cta-section h2 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5vw, 4.75rem);
}

.portfolio-cta-section p:not(.kicker) {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.68);
}

.portfolio-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 38px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pricing-hero .narrow,
.pricing-services-section .container,
.pricing-models-section .container,
.pricing-final-cta .narrow {
  margin-right: auto;
  margin-left: auto;
}

.pricing-hero .narrow {
  max-width: 1080px;
}

.pricing-hero h1 {
  max-width: 1040px;
}

.pricing-hero h1 em {
  display: inline-block;
  white-space: nowrap;
}

.pricing-hero p:not(.eyebrow) {
  max-width: 820px;
}

.pricing-section-heading,
.pricing-models-section .section-heading {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}

.pricing-section-heading > p:last-child,
.pricing-models-section .section-heading > p:last-child {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.price-card {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 520px;
  padding: clamp(30px, 4vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.5);
}

.price-card.featured {
  background: var(--mint-soft);
}

.price-card.featured > .card-tag {
  position: static;
  align-self: flex-start;
  margin: 0 0 22px;
}

.price-card h3 {
  margin: 0 0 28px;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.08;
}

.price-card h3 span {
  display: block;
  margin-top: 20px;
  color: var(--amber-dark);
  font-family: Georgia, serif;
  font-size: clamp(2.5rem, 4.15vw, 3.7rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
  white-space: nowrap;
}

.price {
  margin: 30px 0;
  font-family: Georgia, serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.price small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card > p:not(.kicker):not(.price) {
  color: var(--muted);
}

.price-card .check-list {
  margin-bottom: 30px;
}

.pricing-card-link {
  align-self: flex-start;
  margin-top: auto;
  color: var(--amber-dark);
  font-size: 0.82rem;
}

.pricing-warning {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: italic;
  text-align: center;
}

.pricing-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(35px, 7vw, 90px);
  margin-top: 62px;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(22, 120, 111, 0.22);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--mint-pale), rgba(255, 255, 255, 0.85));
  box-shadow: 0 24px 65px rgba(9, 39, 46, 0.08);
}

.pricing-proof h3 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.3vw, 2.8rem);
}

.pricing-proof p:not(.kicker) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-proof-actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 22px;
}

.pricing-proof-actions .button {
  min-width: 260px;
  text-align: center;
}

.pricing-proof-actions .text-link {
  box-sizing: border-box;
  justify-content: center;
  width: 100%;
  min-width: 260px;
  padding: 14px 20px;
  border: 1px solid rgba(7, 17, 26, 0.24);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.pricing-proof-actions .text-link:hover,
.pricing-proof-actions .text-link:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.pricing-factors-section {
  background: #eef6f3;
}

.pricing-factors-section .split-heading h2 {
  max-width: 800px;
}

.narrow-wide {
  width: min(100% - 40px, 1120px);
}

.pricing-models-section {
  background: #f7f8f4;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(9, 39, 46, 0.08);
}

.pricing-table-wrap:focus {
  outline: 3px solid rgba(244, 185, 66, 0.35);
  outline-offset: 4px;
}

.pricing-comparison-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.6;
}

.pricing-comparison-table th,
.pricing-comparison-table td {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.pricing-comparison-table thead th {
  background: var(--ink);
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-comparison-table tbody th {
  width: 18%;
  color: var(--amber-dark);
  font-size: 1.02rem;
}

.pricing-comparison-table tbody tr:last-child th,
.pricing-comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-comparison-table tbody tr:nth-child(even) {
  background: rgba(213, 241, 235, 0.34);
}

.pricing-plans-section {
  background:
    radial-gradient(circle at 84% 22%, rgba(50, 202, 187, 0.12), transparent 30%),
    var(--ink);
}

.pricing-faq-section {
  background: #f5f7f2;
}

.pricing-faq-section .faq-intro .text-link {
  margin-top: 28px;
  color: var(--amber-dark);
}

.pricing-final-cta {
  text-align: center;
}

.pricing-final-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
}

.pricing-final-cta p:not(.kicker) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
}

.pricing-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 38px;
}

.custom-quote {
  padding: 100px 0;
}

.custom-quote-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: center;
  gap: 100px;
}

.custom-quote h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.custom-quote-grid > div:last-child > p {
  margin-bottom: 28px;
  color: rgba(255,255,255,.65);
}

.contact-section {
  background: #eef0eb;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: clamp(60px, 10vw, 130px);
}

.contact-aside {
  position: sticky;
  top: 130px;
}

.contact-aside h2 {
  font-size: clamp(2.3rem, 4vw, 3.9rem);
}

.contact-aside > p:not(.kicker) {
  color: var(--muted);
}

.dark-email {
  display: inline-block;
  margin: 18px 0 34px;
  color: var(--amber-dark);
}

.contact-points {
  display: grid;
  gap: 11px;
  padding-top: 28px;
  border-top: 1px solid #c8cfcc;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-points span::before {
  margin-right: 10px;
  color: var(--success);
  content: "✓";
}

.form-card {
  padding: clamp(28px, 5vw, 58px);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #3a4b54;
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #c9d0cd;
  border-radius: 3px;
  background: #fbfcfa;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 450;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--amber-dark);
  outline: 3px solid rgba(244,185,66,.18);
}

.contact-form textarea {
  resize: vertical;
}

.checkbox-label {
  display: flex !important;
  grid-template-columns: none;
  align-items: start;
  gap: 12px !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.checkbox-label input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.checkbox-label a {
  color: var(--amber-dark);
}

.contact-form .button {
  justify-self: start;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-notice {
  margin-bottom: 26px;
  padding: 15px 18px;
  border-left: 4px solid;
  font-size: 0.88rem;
}

.form-notice.success {
  border-color: var(--success);
  background: #eaf8f0;
  color: #155b38;
}

.form-notice.error {
  border-color: var(--danger);
  background: #fff0ee;
  color: #8b2018;
}

.entry-content,
.article-content {
  max-width: 780px;
}

.entry-content > * + *,
.article-content > * + * {
  margin-top: 1.4em;
}

.entry-content h2,
.article-content h2 {
  margin-top: 1.8em;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.entry-content h3,
.article-content h3 {
  margin-top: 1.7em;
}

.legal-owner-card {
  margin-bottom: clamp(32px, 5vw, 56px);
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid rgba(16, 97, 103, 0.18);
  border-radius: 24px;
  background: linear-gradient(135deg, #e7f7f3 0%, #f8fbf8 100%);
  box-shadow: 0 22px 55px rgba(4, 28, 38, 0.08);
}

.entry-content .legal-owner-card > * + * {
  margin-top: 0;
}

.legal-owner-kicker {
  margin: 0 0 10px;
  color: #0e7777;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.entry-content .legal-owner-card h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
}

.legal-owner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;
  margin: 28px 0 0;
}

.legal-owner-grid div {
  min-width: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 97, 103, 0.18);
}

.legal-owner-grid dt {
  margin-bottom: 7px;
  color: #4d626a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-owner-grid dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-weight: 700;
}

.legal-owner-grid a {
  color: #0a6669;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 640px) {
  .legal-owner-grid {
    grid-template-columns: 1fr;
  }
}

.article-hero h1 {
  max-width: 1000px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.34);
  text-wrap: balance;
}

.post-meta {
  color: var(--amber);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-deck {
  max-width: 760px;
  color: rgba(255,255,255,.68);
  font-size: 1.22rem;
}

/* Unified editorial template for single blog posts. */
.single-article {
  background: var(--paper);
}

.single-article .article-hero {
  padding: calc(var(--header-height) + clamp(64px, 7vw, 96px)) 0 clamp(72px, 8vw, 104px);
}

.single-article .article-hero .narrow {
  max-width: 1020px;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-breadcrumb a {
  color: var(--amber);
  text-decoration: none;
}

.article-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
}

.article-meta-list > * {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article-meta-list > * + *::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.article-reading-section {
  position: relative;
  padding: clamp(62px, 7vw, 92px) 0 clamp(86px, 9vw, 126px);
  background:
    radial-gradient(circle at 8% 8%, rgba(72, 217, 197, 0.08), transparent 24%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.article-reading-grid {
  display: block;
  width: 100%;
  max-width: 1040px;
}

.article-sidebar,
.article-main-column {
  min-width: 0;
}

.article-sidebar-inner {
  position: static;
}

.article-sidebar {
  width: 100%;
  margin-bottom: 30px;
}

.article-toc-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(7, 17, 26, 0.07);
  backdrop-filter: blur(12px);
}

.article-toc-card summary {
  position: relative;
  padding: 20px 46px 20px 22px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

.article-toc-card summary::-webkit-details-marker {
  display: none;
}

.article-toc-card summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--amber-dark);
  border-bottom: 2px solid var(--amber-dark);
  content: "";
  transition: transform 0.2s ease;
}

.article-toc-card[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.article-toc {
  max-height: min(52vh, 470px);
  overflow-y: auto;
  padding: 0 12px 18px;
  border-top: 1px solid var(--line);
}

.article-toc ol {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2px 14px;
  max-width: 780px;
  margin: 0 auto;
  padding: 12px 0 0;
  list-style: none;
}

.article-toc li + li {
  margin-top: 2px;
}

.article-toc a {
  display: block;
  padding: 9px 10px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.article-toc a:hover,
.article-toc a.is-active {
  transform: translateX(2px);
  background: var(--amber-pale);
  color: var(--ink);
}

.article-service-card {
  display: block;
  width: 100%;
  max-width: 920px;
  margin: 18px auto 0;
  padding: 30px clamp(22px, 4vw, 42px);
  border: 1px solid rgba(72, 217, 197, 0.2);
  border-radius: 18px;
  background: var(--ink-2);
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 45px rgba(7, 17, 26, 0.14);
}

.article-service-card > span,
.article-author-card > div > span {
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-service-card > span {
  margin-bottom: 10px;
}

.article-service-card h2 {
  margin: 0 auto 12px;
  font-size: 1.22rem;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.article-service-card p {
  max-width: 650px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  line-height: 1.55;
}

.article-service-card a,
.article-author-card a {
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration: none;
}

.article-service-card > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: normal;
}

.article-main-column {
  width: 100%;
  margin-inline: auto;
}

body.single-post .article-content {
  width: 100%;
  max-width: none;
  padding: 0 !important;
}

body.single-post .article-content > style,
body.single-post .article-content > script,
body.single-post .article-content h1,
body.single-post .article-content > p:empty {
  display: none !important;
}

body.single-post .article-content > section {
  width: auto !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 0 28px !important;
  padding: clamp(30px, 4vw, 48px) !important;
  overflow: visible !important;
  border: 1px solid var(--line) !important;
  border-radius: 24px !important;
  background: #fff !important;
  color: var(--text) !important;
  box-shadow: 0 18px 50px rgba(7, 17, 26, 0.07) !important;
}

body.single-post .article-content > section:nth-of-type(even) {
  background: #f0f4f1 !important;
}

body.single-post .article-content > section:first-of-type {
  border-top: 5px solid var(--amber) !important;
}

body.single-post .article-content > section:last-of-type {
  margin-bottom: 0 !important;
  border-color: rgba(72, 217, 197, 0.22) !important;
  background: linear-gradient(145deg, var(--ink-2), #123044) !important;
  color: #fff !important;
  box-shadow: 0 24px 60px rgba(7, 17, 26, 0.16) !important;
}

body.single-post .article-content > section > div {
  width: 100% !important;
  max-width: 920px !important;
  min-height: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.single-post .article-content > section > div > div {
  width: auto !important;
  max-width: none !important;
  min-height: 0 !important;
}

body.single-post .article-content h2 {
  max-width: 720px;
  margin: 0 auto 20px !important;
  color: var(--ink) !important;
  font-size: clamp(1.85rem, 3.5vw, 2.7rem) !important;
  line-height: 1.06 !important;
  text-align: center !important;
  text-wrap: balance;
}

body.single-post .article-content h3 {
  max-width: 720px;
  margin: 28px auto 12px !important;
  color: var(--ink-3) !important;
  font-size: clamp(1.16rem, 2vw, 1.42rem) !important;
  line-height: 1.18 !important;
  text-align: center !important;
  text-wrap: balance;
}

body.single-post .article-content p,
body.single-post .article-content li {
  color: var(--text) !important;
  font-size: 1rem !important;
  line-height: 1.72 !important;
}

body.single-post .article-content p {
  max-width: 74ch;
  margin-right: auto !important;
  margin-bottom: 18px !important;
  margin-left: auto !important;
}

body.single-post .article-content ul,
body.single-post .article-content ol {
  margin: 20px 0 24px !important;
  padding-left: 24px !important;
}

body.single-post .article-content ul:not([class$="-grid"]):not([class$="-links"]),
body.single-post .article-content ol {
  max-width: 74ch;
  margin-right: auto !important;
  margin-left: auto !important;
}

body.single-post .article-content li + li {
  margin-top: 9px !important;
}

body.single-post .article-content strong {
  color: var(--ink) !important;
}

body.single-post .article-content a {
  color: #9d6500;
  font-weight: 750;
}

body.single-post .article-content > section:last-of-type h2,
body.single-post .article-content > section:last-of-type h3,
body.single-post .article-content > section:last-of-type strong {
  color: #fff !important;
}

body.single-post .article-content > section:last-of-type p,
body.single-post .article-content > section:last-of-type li {
  color: rgba(255, 255, 255, 0.74) !important;
}

body.single-post .article-content > section:last-of-type a {
  color: var(--amber) !important;
}

body.single-post .article-content div[class$="-grid"],
body.single-post .article-content div[class$="-layout"],
body.single-post .article-content div[class$="-cards"],
body.single-post .article-content div[class$="-columns"],
body.single-post .article-content div[class$="-columnas"],
body.single-post .article-content ul[class$="-grid"],
body.single-post .article-content ul[class$="-links"] {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 820px !important;
  margin: 26px auto 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
}

body.single-post .article-content section article,
body.single-post .article-content div[class$="-card"],
body.single-post .article-content div[class$="-panel"],
body.single-post .article-content aside {
  width: 100% !important;
  max-width: 760px !important;
  margin: 18px auto 0 !important;
  padding: 22px !important;
  border: 1px solid rgba(7, 17, 26, 0.1) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.68) !important;
  color: var(--text) !important;
  text-align: center !important;
  box-shadow: none !important;
}

body.single-post .article-content section article p,
body.single-post .article-content div[class$="-card"] p,
body.single-post .article-content div[class$="-panel"] p,
body.single-post .article-content aside p,
body.single-post .article-content > section > div > p {
  text-align: center !important;
}

body.single-post .article-content section article ul,
body.single-post .article-content section article ol,
body.single-post .article-content div[class$="-card"] ul,
body.single-post .article-content div[class$="-card"] ol,
body.single-post .article-content div[class$="-panel"] ul,
body.single-post .article-content div[class$="-panel"] ol,
body.single-post .article-content aside ul,
body.single-post .article-content aside ol {
  text-align: left !important;
}

body.single-post .article-content .wp-block-columns {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 820px !important;
  margin: 26px auto 0 !important;
}

body.single-post .article-content .wp-block-column {
  width: 100% !important;
  max-width: 760px !important;
  margin: 0 auto !important;
}

body.single-post .article-content div[class$="-botones"],
body.single-post .article-content div[class$="-buttons"],
body.single-post .article-content div[class$="-links"] {
  display: flex !important;
  align-items: center !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 12px !important;
  width: 100% !important;
  max-width: 760px !important;
  margin: 22px auto 0 !important;
}

body.single-post .article-content > section:last-of-type article,
body.single-post .article-content > section:last-of-type div[class$="-card"],
body.single-post .article-content > section:last-of-type div[class$="-panel"],
body.single-post .article-content > section:last-of-type aside {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
}

body.single-post .article-content div[class$="-etiqueta"] {
  display: inline-flex !important;
  width: max-content !important;
  margin-right: auto !important;
  margin-bottom: 16px !important;
  margin-left: auto !important;
  padding: 7px 11px !important;
  border-radius: 999px !important;
  background: var(--amber-pale) !important;
  color: #8b5700 !important;
  font-size: 0.68rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

body.single-post .article-content div[class$="-nota"],
body.single-post .article-content div[class$="-cierre"],
body.single-post .article-content div[class$="-cta"] {
  width: 100% !important;
  max-width: 760px !important;
  margin: 26px auto 0 !important;
  padding: 22px 24px !important;
  border-left: 4px solid var(--amber) !important;
  border-radius: 0 14px 14px 0 !important;
  background: var(--amber-pale) !important;
  color: var(--text) !important;
}

body.single-post .article-content a[class*="-btn"],
body.single-post .article-content a[class*="-boton"],
body.single-post .article-content .wp-block-button__link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  margin-top: 8px !important;
  padding: 11px 18px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: var(--amber) !important;
  color: var(--ink) !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

/* High-contrast closing panels shared by every editorial article. */
body.single-post .article-content > section:last-of-type div[class$="-cta"] {
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-top: 4px solid var(--amber) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(72, 217, 197, 0.08)) !important;
  color: #fff !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14) !important;
}

body.single-post .article-content > section:last-of-type div[class$="-cta"] h2,
body.single-post .article-content > section:last-of-type div[class$="-cta"] h3,
body.single-post .article-content > section:last-of-type div[class$="-cta"] strong,
body.single-post .article-content > section:last-of-type div[class$="-cta"] span {
  color: #fff !important;
}

body.single-post .article-content > section:last-of-type div[class$="-cta"] p {
  color: rgba(255, 255, 255, 0.78) !important;
}

body.single-post .article-content > section:last-of-type a[class*="-btn"],
body.single-post .article-content > section:last-of-type a[class*="-boton"],
body.single-post .article-content > section:last-of-type .wp-block-button__link {
  border: 1px solid var(--amber) !important;
  background: var(--amber) !important;
  color: var(--ink) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15) !important;
}

body.single-post .article-content > section:last-of-type a[class*="-btn"] *,
body.single-post .article-content > section:last-of-type a[class*="-boton"] *,
body.single-post .article-content > section:last-of-type .wp-block-button__link * {
  color: inherit !important;
}

body.single-post .article-content > section:last-of-type a[class*="-btn"][class*="-secundario"],
body.single-post .article-content > section:last-of-type a[class*="-boton"][class*="-secundario"] {
  border-color: rgba(255, 255, 255, 0.42) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
}

body.single-post .article-content > section:last-of-type a[class$="-link-card"] {
  display: block !important;
  width: 100% !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  padding: 22px !important;
  border: 1px solid rgba(72, 217, 197, 0.34) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.07) !important;
  color: #fff !important;
  text-align: center !important;
  text-decoration: none !important;
}

body.single-post .article-content > section:last-of-type a[class$="-link-card"] span {
  display: block !important;
  margin-bottom: 8px !important;
  color: var(--mint) !important;
  font-size: 0.7rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

body.single-post .article-content > section:last-of-type a[class$="-link-card"] strong {
  color: #fff !important;
}

body.single-post .article-content details {
  margin-top: 12px !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(7, 17, 26, 0.12) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.7) !important;
}

body.single-post .article-content details summary {
  color: var(--ink) !important;
  font-weight: 850 !important;
  cursor: pointer;
}

body.single-post .article-content details > *:last-child {
  margin-bottom: 0 !important;
}

body.single-post .article-content blockquote {
  margin: 28px 0 !important;
  padding: 20px 24px !important;
  border-left: 4px solid var(--mint) !important;
  background: var(--mint-pale) !important;
  color: var(--ink) !important;
}

body.single-post .article-content table {
  width: 100% !important;
  margin: 28px 0 !important;
  border-collapse: collapse !important;
  background: #fff !important;
  font-size: 0.86rem !important;
}

body.single-post .article-content th,
body.single-post .article-content td {
  padding: 13px 14px !important;
  border: 1px solid var(--line) !important;
  color: var(--text) !important;
  text-align: left !important;
}

body.single-post .article-content th {
  background: var(--ink-2) !important;
  color: #fff !important;
}

body.single-post .article-content img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 14px;
}

.article-author-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 920px;
  margin: 32px auto 0;
  padding: 30px;
  border: 1px solid rgba(72, 217, 197, 0.28);
  border-radius: 22px;
  background: var(--mint-pale);
  text-align: center;
}

.article-author-card img {
  width: 94px;
  height: 94px;
  border: 4px solid #fff;
  border-radius: 50%;
  margin: 0 auto;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(7, 17, 26, 0.14);
}

.article-author-card h2 {
  margin: 0 auto 8px;
  font-size: 1.55rem;
}

.article-author-card p {
  max-width: 64ch;
  margin: 0 auto 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.post-card {
  background: #fff;
  box-shadow: 0 14px 40px rgba(7,17,26,.07);
}

.post-image {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-body {
  padding: 28px;
}

.post-card-body h2 {
  font-size: 1.65rem;
}

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

.post-card-body > p:not(.post-meta) {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Editorial hub */
.blog-intro-section {
  background: var(--surface-soft);
}

.blog-intro,
.blog-list-heading {
  text-align: center;
}

.blog-intro h2,
.blog-list-heading h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.blog-intro > p:last-child,
.blog-list-heading > p:last-child {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.blog-topic-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.blog-topic-links a {
  display: flex;
  min-height: 150px;
  padding: 26px;
  border: 1px solid rgba(7, 17, 26, 0.1);
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.blog-topic-links a:hover,
.blog-topic-links a:focus-visible {
  border-color: var(--amber);
  box-shadow: 0 16px 38px rgba(7, 17, 26, 0.08);
  transform: translateY(-4px);
}

.blog-topic-links span {
  color: var(--amber-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.blog-topic-links strong {
  font-size: 1.03rem;
  line-height: 1.35;
}

.blog-list-section {
  background: var(--surface);
}

.blog-list-heading {
  margin-bottom: 48px;
}

.blog-post-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1120px;
}

.blog-post-grid .post-card {
  overflow: hidden;
  border: 1px solid rgba(7, 17, 26, 0.08);
  border-radius: 22px;
}

.blog-post-grid .post-card-body {
  padding: 34px;
}

.blog-post-grid .post-card-body h3 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
}

.blog-post-grid .post-card-body h3 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-post-grid .post-meta {
  color: var(--amber-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-cta-actions {
  justify-content: center;
}

.blog-cta-actions .text-link {
  color: #fff;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 70px;
  background: #fff;
  text-align: center;
}

.empty-state h2 {
  font-size: 2.6rem;
}

.not-found {
  display: grid;
  place-items: center;
  min-height: 80vh;
  padding: 150px 0 100px;
  text-align: center;
}

.error-code {
  margin-bottom: 10px;
  color: var(--amber);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.not-found h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.not-found p:not(.error-code) {
  color: rgba(255,255,255,.64);
}

/* Contact conversion page: audited layout, form and follow-up flow. */
.contact-hero {
  min-height: 0;
  padding: clamp(105px, 11vw, 160px) 0 clamp(90px, 10vw, 145px);
  background-color: var(--ink, #07111a);
  background-image:
    radial-gradient(circle at 16% 10%, rgba(45, 201, 185, 0.15), transparent 31%),
    radial-gradient(circle at 87% 82%, rgba(244, 185, 66, 0.14), transparent 28%);
}

.contact-hero-inner {
  max-width: 1080px;
  text-align: center;
}

.contact-hero .eyebrow {
  justify-content: center;
}

.contact-hero h1 {
  max-width: 1050px;
  margin: 0 auto 30px;
  color: #fff;
  font-size: clamp(3.25rem, 7vw, 7.2rem);
  line-height: 0.94;
}

.contact-hero h1 em {
  color: var(--amber);
}

.contact-hero-lead {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.75;
}

.contact-hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 42px;
}

.contact-hero-trust span {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-hero-trust span::before {
  margin-right: 8px;
  color: var(--mint);
  content: "✓";
}

.contact-section {
  background:
    linear-gradient(145deg, rgba(45, 201, 185, 0.08), transparent 35%),
    #f3f4f0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(50px, 7vw, 96px);
}

.contact-aside {
  position: sticky;
  top: 130px;
  padding-top: 24px;
}

.contact-aside h2 {
  max-width: 540px;
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 4.4vw, 4.5rem);
  line-height: 0.98;
}

.contact-aside > p:not(.kicker) {
  color: var(--muted);
}

.dark-email {
  display: inline-block;
  margin: 22px 0 34px;
  color: var(--amber-dark);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  overflow-wrap: anywhere;
}

.contact-points {
  display: grid;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid #c8cfcc;
  color: #44545c;
  font-size: 0.88rem;
  line-height: 1.55;
}

.contact-points span {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
}

.contact-points span::before {
  margin-right: 0;
  color: var(--success);
  font-weight: 900;
  content: "✓";
}

.contact-aside-link {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #c8cfcc;
  font-size: 0.9rem;
}

.contact-aside-link a {
  color: var(--amber-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.form-card {
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid rgba(7, 17, 26, 0.09);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(7, 17, 26, 0.11);
}

.form-card-heading {
  margin-bottom: 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid #dfe4e1;
}

.form-card-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.03;
}

.form-card-heading > p:last-child {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: #263942;
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.35;
}

.contact-form label small {
  color: #718087;
  font-size: 0.73rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  border: 1px solid #bdc8c4;
  border-radius: 10px;
  background: #fbfcfa;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 500;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: #8f9d98;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--amber-dark);
  outline: 3px solid rgba(244, 185, 66, 0.2);
  background: #fff;
}

.contact-form textarea {
  min-height: 190px;
  resize: vertical;
  line-height: 1.6;
}

.checkbox-label {
  display: flex !important;
  grid-template-columns: none;
  align-items: start;
  gap: 12px !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
}

.checkbox-label input {
  flex: 0 0 auto;
  width: 19px;
  min-height: 0;
  height: 19px;
  margin-top: 1px;
}

.checkbox-label a {
  color: var(--amber-dark);
  font-weight: 800;
}

.form-submit-row {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding-top: 6px;
}

.form-submit-row > p {
  max-width: 560px;
  margin: 0;
  color: #6f7c82;
  font-size: 0.76rem;
  line-height: 1.55;
}

.contact-form .button {
  justify-self: start;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-notice {
  margin-bottom: 30px;
  padding: 17px 19px;
  border: 1px solid;
  border-left-width: 5px;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.form-notice.success {
  border-color: #8bcfb0;
  background: #eaf8f0;
  color: #155b38;
}

.form-notice.error {
  border-color: #eda69f;
  background: #fff0ee;
  color: #8b2018;
}

.contact-process {
  background: #fff;
}

.contact-process .section-heading,
.contact-faq .section-heading {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.contact-process .section-heading h2,
.contact-faq .section-heading h2 {
  font-size: clamp(2.75rem, 5.7vw, 5.7rem);
}

.contact-process .section-heading > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
}

.contact-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-step {
  min-height: 300px;
  padding: clamp(30px, 4vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(155deg, #fff, #f4f7f4);
}

.contact-step > span {
  display: block;
  margin-bottom: 58px;
  color: var(--amber-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-step h3 {
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 2.5vw, 2.05rem);
}

.contact-step p {
  color: var(--muted);
}

.contact-faq {
  background-color: var(--ink, #07111a);
  background-image: radial-gradient(circle at 10% 15%, rgba(45, 201, 185, 0.12), transparent 30%);
  color: #fff;
}

.contact-faq .section-heading {
  margin-bottom: 46px;
}

.contact-faq .section-heading h2 {
  color: #fff;
}

.contact-faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 0;
  color: #fff;
  cursor: pointer;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
}

.contact-faq-list summary::-webkit-details-marker {
  display: none;
}

.contact-faq-list summary span {
  flex: 0 0 auto;
  color: var(--amber);
  font-size: 1.8rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.contact-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.contact-faq-list details p {
  max-width: 760px;
  padding: 0 48px 28px 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-faq-list details a {
  color: var(--amber);
  font-weight: 800;
}

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

.js .reveal {
  /* El contenido esencial nunca debe depender de JavaScript para ser visible. */
  opacity: 1;
  transform: none;
  transition: none;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  :root { --header-height: 74px; }
	.about-hero-grid { grid-template-columns: 1fr; }
	.blog-topic-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-reading-grid { max-width: 960px; }
  .menu-toggle { display: block; z-index: 3; }
  .primary-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 90px max(30px, calc((100vw - 800px)/2));
    transform: translateX(100%);
    background: var(--ink);
    visibility: hidden;
    transition: transform .3s ease, visibility .3s ease;
  }
  .primary-nav.is-open { transform: none; visibility: visible; }
  .primary-nav .menu { flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav .menu a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1.4rem; }
  .primary-nav .menu a::after { display: none; }
  .nav-cta { margin-top: 20px; }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 70px); }
  .hero-layout { grid-template-columns: 1fr .65fr; gap: 40px; }
  .hero-proof { flex-direction: column; gap: 16px; }
  .hero-proof li { width: 100%; }
  .hero-proof li + li { padding-left: 0; border-left: 0; }
  .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .price-card h3 span { font-size: clamp(2.5rem, 8vw, 3.7rem); }
  .portfolio-capabilities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-capabilities-grid article { min-height: 250px; }
  .portfolio-capabilities-grid h3 { margin-top: 48px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .article-reading-grid { max-width: 760px; }
  .article-sidebar-inner { position: static; }
  .article-sidebar { display: block; }
  .article-service-card { grid-template-columns: minmax(0, 1fr) auto; margin-top: 18px; }
  .article-service-card p { grid-column: 1 / -1; }
  .article-toc { max-height: 360px; }
  .hero-layout,
  .split-heading,
  .method-layout,
  .about-layout,
  .faq-layout,
  .human-ai-grid,
  .about-hero-grid,
  .prose-layout,
  .evidence-box,
  .custom-quote-grid,
  .contact-layout { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; width: min(85%, 440px); margin: 20px auto 0; }
  .portrait-frame { box-shadow: 20px 22px 0 rgba(72,217,197,.1); }
  .trust-items { flex-wrap: wrap; justify-content: center; padding: 20px 0; }
  .split-heading { align-items: start; gap: 25px; }
  .split-heading > p { max-width: 620px; }
  .fit-grid,
  .price-preview-grid { grid-template-columns: 1fr; }
	.audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.audience-card,
	.audience-card:nth-child(4) { grid-column: auto; }
	.audience-card:last-child { grid-column: 1 / -1; min-height: auto; }
	.proof-grid { grid-template-columns: 1fr; }
	.proof-card { min-height: 145px; }
  .fit-card,
  .price-preview-card { min-height: auto; }
  .fit-card > span { margin-bottom: 32px; }
  .method-intro,
  .contact-aside { position: static; }
  .method-layout { gap: 65px; }
  .about-visual { max-width: 530px; }
  .about-photo { width: min(100%, 480px); margin: 10px auto 0; }
  .about-story-layout aside { align-items: center; text-align: center; }
  .prose-layout aside > span { max-width: 260px; }
  .about-method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-project-grid { grid-template-columns: 1fr; }
  .about-project-grid article { min-height: 260px; }
  .project-row { grid-template-columns: 42px 1fr 35px; padding: 20px 0; }
  .project-row .project-status { display: none; }
  .project-cards { grid-template-columns: 1fr; }
  .portfolio-project-grid { grid-template-columns: 1fr; }
  .portfolio-project-card { max-width: 680px; margin-right: auto; margin-left: auto; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { min-height: auto; }
  .value-grid h3 { margin-top: 38px; }
  .evidence-box,
  .custom-quote-grid { gap: 35px; }
  .pricing-proof { grid-template-columns: 1fr; }
  .pricing-proof-actions { align-items: flex-start; }
  .pricing-comparison-table { min-width: 760px; }
  .contact-layout { gap: 50px; }
  .contact-process-grid { grid-template-columns: 1fr; }
  .contact-step { min-height: auto; }
  .contact-step > span { margin-bottom: 34px; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: auto; }
}

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

@media (max-width: 600px) {
  body { font-size: 16px; }
	.blog-topic-links,
	.blog-post-grid { grid-template-columns: 1fr; }
	.blog-topic-links a { min-height: 126px; }
	.blog-post-grid .post-card-body { padding: 25px; }
  .single-article .article-hero { padding-top: calc(var(--header-height) + 52px); padding-bottom: 64px; }
  .article-breadcrumb { margin-bottom: 22px; }
  .article-meta-list { align-items: flex-start; flex-direction: column; gap: 8px; margin-top: 26px; }
  .article-meta-list > * + *::before { display: none; }
  .article-reading-section { padding: 38px 0 72px; }
  .article-sidebar { display: block; }
  .article-toc ol { grid-template-columns: 1fr; }
  .article-service-card { display: block; padding: 22px 20px; }
  .article-service-card h2 { margin: 8px 0 14px; }
  .article-service-card p { margin-bottom: 18px; }
  body.single-post .article-content > section { margin-bottom: 18px !important; padding: 26px 21px !important; border-radius: 18px !important; }
  body.single-post .article-content div[class$="-grid"],
  body.single-post .article-content div[class$="-layout"],
  body.single-post .article-content ul[class$="-grid"],
  body.single-post .article-content ul[class$="-links"] { grid-template-columns: 1fr !important; }
  body.single-post .article-content table { display: block; overflow-x: auto; }
  .article-author-card { grid-template-columns: 1fr; padding: 24px 21px; text-align: center; }
  .article-author-card img { width: 82px; height: 82px; }
  .hero { padding-bottom: 60px; }
  .hero-copy h1 { font-size: clamp(2.75rem, 15vw, 4.3rem); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .about-hero-actions,
  .about-cta-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .about-hero-actions .button,
  .about-cta-actions .button { width: 100%; }
  .about-hero-actions .text-link,
  .about-cta-actions .text-link { justify-content: center; }
  .hero-proof strong { font-size: 1.6rem; }
  .hero-visual { width: calc(100% - 25px); }
  .portrait-label { right: -8px; bottom: 25px; }
  .trust-items { align-items: center; flex-direction: column; gap: 9px; }
  .trust-items i { display: none; }
  .section { padding: 78px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }
  .about-visual { min-height: 460px; }
  .experience-card { min-height: 340px; padding: 30px; }
  .experience-card strong { font-size: 8rem; }
  .code-card { padding: 26px; }
  .project-row { grid-template-columns: 34px 1fr 28px; gap: 10px; }
  .project-row h3 { overflow-wrap: anywhere; }
  .faq-layout { gap: 45px; }
  .accordion summary { font-size: 1rem; }
  .page-hero h1 { font-size: clamp(2.8rem, 14vw, 4.6rem); }
  .about-hero-copy h1 { font-size: clamp(2.7rem, 13vw, 4.25rem); }
  .article-hero h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .article-content { padding-top: 0; }
  .service-detail { grid-template-columns: 1fr; gap: 18px; }
  .service-detail-number { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
	.audience-grid { grid-template-columns: 1fr; }
	.audience-card,
	.audience-card:last-child { grid-column: auto; min-height: auto; }
	.service-proof-inner { padding: 32px 22px; border-radius: 24px; }
	.service-proof-actions { align-items: stretch; flex-direction: column; gap: 20px; }
	.service-proof-actions .button { width: 100%; }
	.service-proof-actions .text-link { justify-content: center; }
  .about-method-grid,
  .about-specialty-grid { grid-template-columns: 1fr; }
  .about-method-grid article,
  .about-specialty-grid article { min-height: auto; }
  .about-section-heading { margin-bottom: 42px; }
  .prose-layout { gap: 50px; }
  .project-card { min-height: auto; }
  .portfolio-capabilities-grid { grid-template-columns: 1fr; }
  .portfolio-capabilities-grid article { min-height: auto; }
  .portfolio-capabilities-grid h3 { margin-top: 34px; }
  .portfolio-project-facts > div { grid-template-columns: 1fr; gap: 5px; }
  .portfolio-project-topline { align-items: flex-start; flex-direction: column; gap: 7px; }
  .portfolio-project-type { text-align: left; }
  .portfolio-work-block { padding: 21px 19px; }
  .portfolio-cta-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .portfolio-cta-actions .button { width: 100%; }
  .portfolio-cta-actions .text-link { justify-content: center; }
  .pricing-proof { padding: 28px 22px; border-radius: 22px; }
  .pricing-proof-actions { align-items: stretch; width: 100%; }
  .pricing-proof-actions .button { width: 100%; min-width: 0; }
  .pricing-proof-actions .text-link { justify-content: center; }
  .pricing-comparison-table th,
  .pricing-comparison-table td { padding: 19px 20px; }
  .pricing-final-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .pricing-final-actions .button { width: 100%; }
  .pricing-final-actions .text-link { justify-content: center; }
  .contact-hero { padding-top: 88px; padding-bottom: 82px; }
  .contact-hero-trust { align-items: stretch; flex-direction: column; }
  .contact-hero-trust span { width: 100%; }
  .contact-form .button { width: 100%; }
  .contact-faq-list details p { padding-right: 0; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .post-grid { grid-template-columns: 1fr; }
  .empty-state { padding: 40px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom nav { flex-wrap: wrap; }
}
