:root {
  --graphite: #1f2a30;
  --graphite-2: #2f3a40;
  --red: #d71920;
  --paper: #f5f7f8;
  --tech: #8a949b;
  --line: #dfe5e8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(31, 42, 48, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--graphite);
  background:
    linear-gradient(90deg, rgba(31, 42, 48, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 42, 48, 0.035) 1px, transparent 1px),
    var(--white);
  background-size: 72px 72px;
  font-family:
    Inter, Manrope, Sora, Montserrat, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 104px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(138, 148, 155, 0.22);
  backdrop-filter: blur(16px);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: clamp(260px, 24vw, 380px);
  max-height: 92px;
  object-fit: contain;
}

.header-panel {
  display: grid;
  justify-items: end;
  gap: 10px;
  min-width: 0;
}

.header-contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.header-contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 6px 10px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(138, 148, 155, 0.22);
  border-left: 2px solid var(--red);
  border-radius: 6px;
  font-size: 0.78rem;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(31, 42, 48, 0.05);
}

.header-contact-chip span {
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 850;
  text-transform: uppercase;
}

.header-contact-chip strong {
  font-weight: 800;
}

.header-linkedin-chip {
  border-left-color: #0a66c2;
}

.header-linkedin-chip span {
  color: #0a66c2;
}

.mobile-quick-contact {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.site-nav a[aria-current="page"] {
  color: var(--red);
}

.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 16px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(215, 25, 32, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--graphite);
}

.section-grid,
.section,
.trust-strip,
.why,
.contact,
.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  min-height: clamp(560px, calc(100svh - 150px), 760px);
  padding: clamp(32px, 6vw, 74px) 0 clamp(24px, 5vw, 58px);
}

.hero-copy,
.section-heading,
.contact-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  max-width: 780px;
  color: var(--graphite);
  font-weight: 820;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 3vw, 4rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
}

h3 {
  margin-bottom: 12px;
  color: var(--graphite);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-lead,
.contact-copy p {
  color: var(--graphite-2);
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  line-height: 1.6;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 760;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(215, 25, 32, 0.2);
}

.button-secondary {
  color: var(--graphite);
  background: var(--white);
  border-color: rgba(31, 42, 48, 0.18);
}

.signature-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: var(--graphite);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signature-line i {
  width: 2px;
  height: 18px;
  background: var(--red);
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(138, 148, 155, 0.22);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: min(52vw, 600px);
  min-height: 390px;
  object-fit: cover;
  object-position: 66% 50%;
}

.technical-tag {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 12px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.86);
  border-left: 3px solid var(--red);
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -6px;
  margin-bottom: clamp(72px, 10vw, 126px);
  border-block: 1px solid rgba(138, 148, 155, 0.24);
  background: rgba(255, 255, 255, 0.74);
}

.trust-strip div {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 16px clamp(16px, 2vw, 28px);
  border-right: 1px solid rgba(138, 148, 155, 0.22);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  color: var(--red);
  font-size: 0.8rem;
}

.trust-strip span {
  font-weight: 760;
}

.section {
  padding: clamp(56px, 8vw, 102px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding-top: 0;
}

.section-lead {
  max-width: 650px;
  margin-bottom: 0;
  padding-top: 28px;
  color: var(--graphite-2);
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  line-height: 1.6;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding-top: 0;
}

.founder-copy {
  min-width: 0;
  max-width: 660px;
}

.founder-copy h2 {
  max-width: 620px;
  font-size: clamp(1.65rem, 2vw, 2.2rem);
  line-height: 1.1;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.founder-copy p {
  max-width: 640px;
  margin-bottom: 20px;
  color: var(--graphite-2);
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  line-height: 1.65;
  text-align: left;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: pretty;
}

.founder-copy p br {
  display: none;
}

.founder-copy .eyebrow {
  color: var(--red);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.65;
}

.founder-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.founder-points li {
  position: relative;
  padding-left: 24px;
  color: var(--graphite);
  font-weight: 780;
}

.founder-points li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 2px;
  content: "";
  background: var(--red);
}

.founder-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--paper);
  border: 1px solid rgba(138, 148, 155, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.founder-visual img {
  width: 100%;
  height: clamp(360px, 34vw, 520px);
  object-fit: cover;
  object-position: 60% 50%;
}

.founder-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.88);
  border-left: 3px solid var(--red);
  font-size: 0.8rem;
  font-weight: 780;
  text-transform: uppercase;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 0;
}

.service-card,
.process-step,
.portfolio-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(138, 148, 155, 0.24);
  border-radius: var(--radius);
}

.service-card {
  min-height: 272px;
  padding: 28px;
}

.service-card::before,
.portfolio-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent 28px, rgba(215, 25, 32, 0.12) 29px, transparent 30px),
    linear-gradient(180deg, transparent 42px, rgba(31, 42, 48, 0.06) 43px, transparent 44px);
  background-size: 96px 96px;
  opacity: 0.55;
}

.service-card > *,
.portfolio-card > * {
  position: relative;
  z-index: 1;
}

.service-card p,
.process-step p,
.why-item p {
  margin-bottom: 0;
  color: var(--graphite-2);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 106px;
  height: 106px;
  margin-bottom: 20px;
  color: var(--graphite);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon .accent {
  stroke: var(--red);
}

.service-icon-image {
  overflow: visible;
  padding: 0;
}

.service-icon-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(31, 42, 48, 0.08));
}

.why {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 4vw, 48px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    var(--graphite);
  background-size: 74px 74px;
  border-radius: var(--radius);
}

.why h2,
.why .eyebrow {
  color: var(--white);
}

.why .eyebrow {
  color: #ff5a60;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.18);
}

.why-item {
  min-height: 190px;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.045);
}

.why-item strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.02rem;
}

.why-item p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  line-height: 1.36;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  min-height: 246px;
  padding: 28px;
}

.process-step span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 850;
}

.process-step::after {
  position: absolute;
  top: 48px;
  left: 68px;
  right: 28px;
  height: 1px;
  content: "";
  background: rgba(215, 25, 32, 0.34);
}

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

.portfolio-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 336px;
  padding: 16px;
}

.portfolio-card img {
  display: block;
  width: 100%;
  height: 178px;
  margin-bottom: 20px;
  border: 1px solid rgba(138, 148, 155, 0.28);
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.portfolio-card h3.align-low {
  padding-top: 18px;
}
  


.portfolio-card p {
  margin-bottom: 0;
  color: var(--graphite-2);
  font-size: 0.94rem;
}

.contact {
  display: grid;
  grid-template-columns: 0.98fr 1.22fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  padding: clamp(62px, 8vw, 108px) 0;
}

.contact-copy {
  align-self: start;
  position: sticky;
  top: 104px;
}

.contact-copy h2 {
  max-width: 560px;
  font-size: clamp(2rem, 2.65vw, 3.25rem);
  line-height: 1.08;
}

.contact-copy p {
  max-width: 620px;
  margin-bottom: 18px;
}

.contact-details {
  display: grid;
  gap: 14px;
  max-width: 560px;
  margin-top: 30px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(138, 148, 155, 0.22);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  color: var(--graphite);
  font-weight: 760;
  box-shadow: 0 14px 34px rgba(31, 42, 48, 0.06);
}

.contact-company {
  max-width: 520px;
  color: var(--graphite);
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-details address {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--graphite-2);
  font-style: normal;
  font-weight: 640;
  line-height: 1.45;
}

.contact-identifiers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-identifiers span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(138, 148, 155, 0.22);
  border-radius: 6px;
  color: var(--graphite-2);
  font-size: 0.84rem;
  line-height: 1;
}

.contact-identifiers strong {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.contact-links a {
  display: inline-flex;
  width: fit-content;
  color: var(--graphite);
  font-weight: 820;
  line-height: 1.35;
}

.contact-details a:hover,
.site-footer a:hover {
  color: var(--red);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  border: 1px solid rgba(138, 148, 155, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--graphite);
  font-size: 0.86rem;
  font-weight: 760;
}

input,
textarea {
  width: 100%;
  color: var(--graphite);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 6px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

input {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 136px;
  resize: vertical;
  padding: 13px 14px;
}

input:focus,
textarea:focus {
  border-color: rgba(215, 25, 32, 0.5);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.09);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(245, 247, 248, 0.78);
  border: 1px solid rgba(138, 148, 155, 0.22);
  border-radius: var(--radius);
}

.form-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--red);
}

.form-consent span {
  color: var(--graphite-2);
  font-size: 0.82rem;
  font-weight: 520;
  line-height: 1.45;
}

.form-consent a {
  color: var(--red);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--graphite-2);
  font-weight: 680;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 118px;
  color: var(--graphite-2);
  border-top: 1px solid rgba(138, 148, 155, 0.25);
}

.site-footer img {
  width: 54px;
}

.site-footer p {
  margin: 0;
  font-weight: 740;
}

.site-footer a {
  font-weight: 760;
}

.footer-seo {
  flex-basis: 100%;
  padding-top: 20px;
  margin-top: 4px;
  color: rgba(31, 42, 48, 0.62);
  border-top: 1px solid rgba(138, 148, 155, 0.18);
  font-size: 0.65rem;
  line-height: 1.55;
  text-align: center;
}

.footer-seo p {
  max-width: 1120px;
  margin: 0 0 8px;
  font-weight: 500;
}

.footer-seo ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 8px;
  max-width: 1120px;
  padding: 0;
  margin: 0 0 10px;
  list-style: none;
  justify-content: center;
  margin: 0 auto 10px;
}

.footer-seo li::after {
  content: ",";
}

.footer-seo li:last-child::after {
  content: ".";
}

.footer-legal {
  flex-basis: 100%;
  text-align: center;
  font-size: 0.72rem;
}

.footer-legal a {
  color: rgba(31, 42, 48, 0.72);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-main {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(42px, 7vw, 86px) 0;
}

.privacy-article {
  max-width: 920px;
  padding: clamp(24px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(138, 148, 155, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.privacy-article h1 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.privacy-article section {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid rgba(138, 148, 155, 0.18);
}

.privacy-article h2 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.privacy-article p,
.privacy-article li {
  color: var(--graphite-2);
}

.privacy-article ul {
  padding-left: 20px;
  margin: 8px 0 0;
}

.privacy-company-details {
  display: grid;
  gap: 12px;
  max-width: 560px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(138, 148, 155, 0.22);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
}

.privacy-company-details p {
  margin: 0;
}

.privacy-article a:not(.button) {
  color: var(--red);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-back {
  margin-top: 30px;
}

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

.knowledge-hero {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  gap: 0;
  align-items: end;
  padding: clamp(46px, 7vw, 84px) 0 clamp(30px, 5vw, 56px);
  border-bottom: 1px solid rgba(138, 148, 155, 0.22);
}

.knowledge-hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 2.45vw, 2.75rem);
  line-height: 1.12;
}

.knowledge-hero p {
  max-width: 760px;
  color: var(--graphite-2);
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  line-height: 1.7;
}

.knowledge-hero .eyebrow {
  color: var(--red);
}

.knowledge-note {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(138, 148, 155, 0.22);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  color: var(--graphite);
  font-weight: 760;
}

.knowledge-list {
  padding: clamp(42px, 7vw, 86px) 0;
}

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

.article-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(138, 148, 155, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(31, 42, 48, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.article-card:hover,
.article-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(31, 42, 48, 0.12);
}

.article-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: left center;
}

.article-card img.article-card-image-contained {
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.article-card-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.article-meta,
.article-category {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.article-card h2 {
  margin: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.14;
  overflow-wrap: normal;
  hyphens: none;
}

.article-card p {
  margin: 0;
  color: var(--graphite-2);
  font-size: 0.95rem;
  line-height: 1.6;
}

.article-read-more {
  margin-top: 6px;
  color: var(--graphite);
  font-size: 0.86rem;
  font-weight: 820;
}

.article-shell {
  width: min(980px, calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(42px, 7vw, 86px) 0;
}

.article-breadcrumb {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 820;
}

.article-header {
  margin-bottom: clamp(28px, 5vw, 52px);
}

.article-header h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(1.68rem, 3vw, 3.05rem);
  line-height: 1.1;
  overflow-wrap: normal;
  hyphens: none;
}

.article-lead {
  max-width: 820px;
  color: var(--graphite-2);
  font-size: 1rem;
  line-height: 1.72;
}

.article-cover {
  overflow: hidden;
  margin: clamp(30px, 5vw, 56px) 0 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(138, 148, 155, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-cover img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.article-content {
  max-width: 800px;
}

.article-content h2 {
  margin-top: 38px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.16;
  overflow-wrap: normal;
  hyphens: none;
}

.article-content h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.28;
}

.article-content a {
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.article-content a.button-primary {
  color: var(--white);
}

.article-content a.button-primary:hover,
.article-content a.button-primary:focus-visible {
  text-decoration: none;
}

.article-content a:hover {
  text-decoration: underline;
}

.article-content p,
.article-content li {
  color: var(--graphite-2);
  font-size: 1rem;
  line-height: 1.72;
}

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

.article-content li {
  position: relative;
  padding-left: 26px;
}

.article-content li::before {
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 13px;
  height: 2px;
  content: "";
  background: var(--red);
}

.article-callout,
.article-cta-box {
  margin: 30px 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(138, 148, 155, 0.22);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
}

.article-callout p,
.article-cta-box p {
  margin-bottom: 0;
}

.article-cta-box {
  display: grid;
  gap: 16px;
}

.article-cta-box h2 {
  margin: 0;
}

.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

@media (max-width: 1080px) {
  .header-contact-row {
    display: none;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.84rem;
  }

  .hero,
  .intro,
  .founder-section,
  .contact,
  .knowledge-hero {
    grid-template-columns: 1fr;
  }

  .section-lead {
    padding-top: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual img {
    height: clamp(320px, 54vw, 500px);
  }

  .services,
  .why-grid,
  .process-grid,
  .knowledge-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-copy {
    position: static;
  }

  .founder-visual img {
    height: clamp(320px, 52vw, 460px);
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .site-header {
    min-height: 88px;
  }

  .mobile-quick-contact {
    position: fixed;
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 30;
    display: block;
  }

  .mobile-quick-contact__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: var(--white);
    background: var(--red);
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 999px;
    box-shadow: 0 16px 36px rgba(215, 25, 32, 0.34);
  }

  .mobile-quick-contact__phone svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .header-panel {
    display: contents;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid rgba(138, 148, 155, 0.28);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .trust-strip,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(138, 148, 155, 0.22);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .section-grid,
  .section,
  .trust-strip,
  .why,
  .contact,
  .page-main,
  .article-shell,
  .site-footer {
    width: calc(100% - 28px);
    max-width: var(--max);
  }

  .brand img {
    width: 220px;
    max-height: 74px;
  }

  .hero {
    gap: 22px;
    padding-top: 22px;
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(1.54rem, 5.8vw, 1.82rem);
    line-height: 1.1;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .hero-lead {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: 0.86rem;
    line-height: 1.48;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: pretty;
  }

  .hero-lead br {
    display: none;
  }

  .section-lead,
  .founder-copy p,
  .contact-copy p {
    font-size: 0.92rem;
    line-height: 1.52;
  }

  h2,
  .contact-copy h2 {
    font-size: clamp(1.42rem, 6vw, 1.78rem);
    line-height: 1.12;
  }

  .intro .section-heading h2 {
    max-width: 100%;
    font-size: clamp(1.26rem, 5.1vw, 1.54rem) !important;
    line-height: 1.14 !important;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.72rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 46px;
    font-size: 0.95rem;
  }

  .signature-line {
    font-size: 0.76rem;
  }

  .hero-visual img {
    min-height: 220px;
    height: 252px;
  }

  .technical-tag {
    left: 12px;
    right: 12px;
    bottom: 12px;
    text-align: center;
  }

  .trust-strip {
    margin-bottom: 56px;
  }

  .services,
  .why-grid,
  .process-grid,
  .knowledge-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .knowledge-hero {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .knowledge-hero h1,
  .article-header h1 {
    font-size: clamp(1.72rem, 7vw, 2.28rem);
    line-height: 1.1;
  }

  .knowledge-hero h1 {
    font-size: clamp(1.34rem, 5.3vw, 1.76rem);
  }

  .article-header h1 {
    font-size: clamp(1.42rem, 5.8vw, 1.9rem);
  }

  .knowledge-hero p,
  .article-lead,
  .article-content p,
  .article-content li {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .article-card-body,
  .article-callout,
  .article-cta-box {
    padding: 18px;
  }

  .article-content h2 {
    margin-top: 30px;
    font-size: clamp(1.28rem, 5.3vw, 1.65rem);
  }

  .founder-visual img {
    height: 260px;
  }

  .founder-visual figcaption {
    position: static;
    border-left: 0;
    border-top: 3px solid var(--red);
  }

  .service-card,
  .process-step,
  .why-item,
  .portfolio-card {
    min-height: auto;
  }

  .portfolio-card img {
    height: 190px;
  }

  .contact-form {
    padding: 18px;
  }

  .founder-section,
  .contact {
    gap: 24px;
  }

  .founder-copy .eyebrow,
  .contact-copy .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem !important;
    line-height: 1.2;
  }

  .founder-copy h2,
  .contact-copy h2 {
    max-width: 100%;
    font-size: clamp(1.34rem, 5.35vw, 1.68rem) !important;
    line-height: 1.14 !important;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .founder-copy p,
  .contact-copy p {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: 0.86rem !important;
    line-height: 1.48 !important;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: pretty;
  }

  .founder-copy p br,
  .contact-copy p br {
    display: none;
  }

  .contact {
    padding-top: 54px;
    padding-bottom: 64px;
  }

  .contact-details {
    gap: 12px;
    margin-top: 24px;
    padding: 18px;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .contact-company {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .contact-details address,
  .contact-links a {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .contact-identifiers {
    gap: 7px;
  }

  .contact-identifiers span {
    font-size: 0.78rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

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

/* Technical SEO mobile guard: prevents text overflow without aggressive word splitting. */
@media (max-width: 640px) {
  h1,
  h2,
  .intro .section-heading h2,
  .founder-copy h2,
  .contact-copy h2,
  .hero-lead,
  .section-lead,
  .founder-copy p,
  .contact-copy p,
  .technical-tag {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .technical-tag {
    white-space: normal;
  }
}
.contact .eyebrow {
  color: var(--red);
}
