:root {
  --ink: #101511;
  --muted: #526057;
  --paper: #f5f7f2;
  --panel: #ffffff;
  --line: #dfe5da;
  --field: #eef2e9;
  --dark: #111714;
  --dark-2: #1d2720;
  --green: #2f7d50;
  --green-2: #49a46c;
  --yellow: #f2c230;
  --red: #c84d36;
  --steel: #6d7a82;
  --shadow: 0 18px 44px rgba(16, 21, 17, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

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

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

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  clip: auto;
  color: var(--ink);
  background: var(--yellow);
  border-radius: var(--radius);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  background: rgba(17, 23, 20, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 23, 20, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 650;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.header-call {
  padding: 10px 14px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
}

.menu-symbol {
  display: block;
  color: #fff;
  font-size: 1.72rem;
  line-height: 1;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 86svh;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 48% 55%;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 16, 13, 0.9) 0%, rgba(12, 16, 13, 0.64) 42%, rgba(12, 16, 13, 0.15) 100%),
    linear-gradient(0deg, rgba(12, 16, 13, 0.74) 0%, rgba(12, 16, 13, 0.08) 48%);
}

.hero-content {
  padding: 150px 0 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.7rem, 6.2vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--yellow);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 880px;
  margin-top: 42px;
}

.hero-proof span {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.hero-proof strong {
  color: #fff;
}

.service-strip {
  background: var(--yellow);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.strip-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 18px 18px;
  color: var(--ink);
  border-right: 1px solid rgba(16, 21, 17, 0.22);
  font-weight: 900;
}

.strip-grid a:last-child {
  border-right: 0;
}

.strip-grid span {
  color: rgba(16, 21, 17, 0.54);
  font-size: 0.82rem;
}

.section {
  padding: 92px 0;
  background: var(--panel);
}

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

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

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.about-copy h2,
.seo-layout h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.about-copy > p,
.seo-layout p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.service-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 14px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.filter-button.is-active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

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

.service-card {
  display: flex;
  min-height: 286px;
  flex-direction: column;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(16, 21, 17, 0.05);
  transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.service-card.is-hidden {
  display: none;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 125, 80, 0.42);
}

.service-card.is-pulsed {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(242, 194, 48, 0.28), var(--shadow);
}

.service-card-featured {
  border-top: 5px solid var(--yellow);
}

.service-code {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-width: 48px;
  height: 32px;
  padding: 0 9px;
  color: var(--ink);
  background: var(--field);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 18px 0 0;
  font-size: 1.25rem;
  line-height: 1.18;
}

.service-card p {
  margin: 10px 0 20px;
  color: var(--muted);
  font-size: 0.98rem;
}

.service-card button {
  width: fit-content;
  margin-top: auto;
  padding: 0;
  color: var(--green);
  background: transparent;
  border: 0;
  font-weight: 900;
}

.service-detail {
  width: fit-content;
  margin-top: auto;
  color: var(--green);
  font-weight: 900;
}

.priority-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.section-heading-sticky {
  position: sticky;
  top: 110px;
  margin-bottom: 0;
}

.priority-list {
  display: grid;
  gap: 14px;
}

.priority-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.priority-item > span {
  color: var(--green);
  font-weight: 950;
}

.priority-item h3 {
  margin: 0;
  font-size: 1.45rem;
}

.priority-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.reference-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}

.reference-facts article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.reference-facts strong,
.reference-facts span {
  display: block;
}

.reference-facts strong {
  color: var(--yellow);
  font-size: 1.35rem;
}

.reference-facts span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  background: var(--dark-2);
  border-radius: var(--radius);
}

.gallery-item-large {
  grid-row: span 2;
}

.gallery-item-person {
  min-height: 360px;
}

.gallery-item button {
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(17, 23, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.gallery-item figcaption strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 54px;
  align-items: center;
}

.about-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: min(68vw, 620px);
  object-fit: cover;
  object-position: 50% 48%;
}

.person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.person-initials {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--yellow);
  border-radius: var(--radius);
  font-weight: 950;
}

.person h3,
.person p {
  margin: 0;
}

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

.button-outline {
  margin-top: 24px;
  color: var(--green);
  background: transparent;
  border-color: currentColor;
}

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

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

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
}

.vn-feature-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 58px;
  align-items: center;
}

.vn-feature {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 23, 20, 0.96), rgba(17, 23, 20, 0.78)),
    url("images/WhatsApp%20Image%202026-06-16%20at%2009.13.02%20(3).jpeg") center 36% / cover;
}

.vn-feature h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

.vn-feature p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.vn-feature .button,
.profile-layout .button,
.reference-showcase .button {
  margin-top: 24px;
}

.vn-feature-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.vn-feature-list li {
  padding: 15px 0 15px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.vn-feature-list li::before {
  content: "✓";
  margin-left: -28px;
  margin-right: 12px;
  color: var(--yellow);
}

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

.article-grid a {
  min-height: 250px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 160ms ease, border-color 160ms ease;
}

.article-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--green);
}

.article-grid span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-grid h3 {
  margin: 38px 0 10px;
  font-size: 1.28rem;
  line-height: 1.18;
}

.article-grid p {
  margin: 0;
  color: var(--muted);
}

.rating-section {
  padding: 58px 0;
}

.rating-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.rating-layout h2 {
  margin: 0;
  font-size: 2.5rem;
}

.rating-layout p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-list span {
  color: var(--green);
  font-weight: 950;
}

.process-list h3 {
  margin: 26px 0 8px;
  font-size: 1.18rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 23, 20, 0.95), rgba(17, 23, 20, 0.82)),
    url("images/WhatsApp%20Image%202026-06-16%20at%2009.13.03%20(2).jpeg") center / cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: start;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-details a,
.contact-details p {
  display: block;
  margin: 0;
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.contact-details span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-details strong {
  display: block;
  margin-top: 3px;
  font-size: 1.04rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--field);
  border: 1px solid transparent;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--green);
}

.consent {
  grid-template-columns: 18px 1fr !important;
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 700 !important;
}

.consent input {
  min-height: auto;
  margin-top: 5px;
  accent-color: var(--green);
}

.consent a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.honeypot {
  position: absolute;
  left: -100vw;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 850;
}

.form-status.is-success {
  color: #126c3f;
}

.form-status.is-error {
  color: #a12626;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #0a0d0b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 0.8fr;
  gap: 34px;
  padding: 54px 0 36px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

.footer-grid p {
  margin: 5px 0;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin: 5px 0;
  color: #fff;
  font-weight: 750;
}

.footer-brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 240px;
}

.footer-bottom {
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

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

.floating-cta {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid rgba(16, 21, 17, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  font-weight: 900;
}

.lightbox {
  width: min(100% - 32px, 980px);
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #0a0d0b;
  border: 0;
  border-radius: var(--radius);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #050706;
}

.lightbox p {
  margin: 0;
  padding: 14px 18px 18px;
  color: rgba(255, 255, 255, 0.84);
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  font-size: 1.8rem;
  line-height: 1;
}

.subpage-header {
  position: fixed;
}

.page-hero {
  display: flex;
  align-items: end;
  min-height: 650px;
  padding: 160px 0 76px;
  color: #fff;
  background-color: var(--dark);
  background-position: center;
  background-size: cover;
}

.page-hero .container {
  width: min(100% - 40px, var(--max));
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
}

.page-hero-vn {
  background-image:
    linear-gradient(90deg, rgba(10, 14, 11, 0.93), rgba(10, 14, 11, 0.4)),
    url("images/WhatsApp%20Image%202026-06-16%20at%2009.13.03.jpeg");
}

.page-hero-electro {
  background-image:
    linear-gradient(90deg, rgba(10, 14, 11, 0.93), rgba(10, 14, 11, 0.38)),
    url("images/WhatsApp%20Image%202026-06-16%20at%2009.13.02%20(3).jpeg");
}

.page-hero-revision {
  background-image:
    linear-gradient(90deg, rgba(10, 14, 11, 0.93), rgba(10, 14, 11, 0.42)),
    url("images/WhatsApp%20Image%202026-06-16%20at%2009.13.02%20(1).jpeg");
}

.page-hero-fve {
  background-image:
    linear-gradient(90deg, rgba(10, 14, 11, 0.9), rgba(10, 14, 11, 0.3)),
    url("images/WhatsApp%20Image%202026-06-16%20at%2009.13.03%20(3).jpeg");
}

.page-hero-articles {
  min-height: 530px;
  background-image:
    linear-gradient(90deg, rgba(10, 14, 11, 0.94), rgba(10, 14, 11, 0.38)),
    url("images/WhatsApp%20Image%202026-06-16%20at%2009.13.03%20(2).jpeg");
}

.page-hero-measurement {
  background-image:
    linear-gradient(90deg, rgba(10, 14, 11, 0.94), rgba(10, 14, 11, 0.42)),
    url("images/WhatsApp%20Image%202026-06-16%20at%2009.13.02%20(2).jpeg");
}

.page-hero-measurement h1 {
  max-width: 1040px;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.page-hero-legal {
  min-height: 440px;
  background-image:
    linear-gradient(90deg, rgba(10, 14, 11, 0.96), rgba(10, 14, 11, 0.64)),
    url("images/WhatsApp%20Image%202026-06-16%20at%2009.13.02%20(3).jpeg");
}

.legal-content {
  max-width: 880px;
}

.legal-content h2 {
  margin: 42px 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

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

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 96px 20px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(10, 14, 11, 0.88), rgba(10, 14, 11, 0.94)),
    url("images/WhatsApp%20Image%202026-06-16%20at%2009.13.03%20(2).jpeg") center / cover;
}

.error-page h1 {
  margin: 0;
  font-size: clamp(4rem, 15vw, 9rem);
  line-height: 0.9;
}

.error-page p {
  max-width: 620px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.12rem;
}

.error-page .hero-actions {
  justify-content: center;
}

.page-hero p.client-copy-intro {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.page-hero p.client-copy-label {
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.measurement-intro,
.measurement-prose {
  max-width: 920px;
}

.measurement-intro p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.18rem, 2.2vw, 1.45rem);
}

.measurement-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: start;
}

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

.measurement-list li {
  position: relative;
  padding: 16px 20px 16px 52px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.measurement-list li::before {
  content: "✓";
  position: absolute;
  top: 16px;
  left: 20px;
  color: var(--green);
  font-weight: 950;
}

.measurement-duration {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.measurement-duration article {
  padding: 26px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.measurement-duration article p:not(.eyebrow) {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.measurement-prose h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.measurement-prose p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.measurement-note {
  margin: 24px 0 0;
  padding: 24px;
  color: var(--muted);
  background: var(--panel);
  border-left: 5px solid var(--yellow);
}

.measurement-cta {
  color: #fff;
  background: var(--dark);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: start;
}

.detail-list {
  display: grid;
  gap: 12px;
}

.detail-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail-list article > span {
  color: var(--green);
  font-weight: 950;
}

.detail-list h3,
.detail-list p {
  margin: 0;
}

.detail-list h3 {
  font-size: 1.28rem;
}

.detail-list p {
  margin-top: 7px;
  color: var(--muted);
}

.split-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.split-callout > div {
  max-width: 760px;
}

.split-callout h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.split-callout p:not(.eyebrow) {
  margin: 16px 0 0;
  color: inherit;
  opacity: 0.74;
}

.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.detail-card-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail-card-grid h3 {
  margin: 0;
  font-size: 1.3rem;
}

.detail-card-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.media-detail,
.reference-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.media-detail img,
.reference-showcase img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

.media-detail h2,
.reference-showcase h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.media-detail p:not(.eyebrow),
.reference-showcase p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.reference-showcase p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.profile-hero {
  padding: 142px 0 76px;
  background: var(--paper);
}

.profile-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.profile-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.profile-photo img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.profile-layout h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.98;
}

.profile-layout p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.profile-role {
  color: var(--green) !important;
  font-weight: 900;
}

.credentials-note {
  padding: 32px;
  background: #fff;
  border-left: 5px solid var(--yellow);
}

.credentials-note h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.credentials-note p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
}

.article-stack {
  display: grid;
  gap: 20px;
}

.article-stack article {
  scroll-margin-top: 110px;
  padding: 38px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-stack h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.article-stack p:not(.eyebrow) {
  max-width: 880px;
  margin: 16px 0 0;
  color: var(--muted);
}

@media (max-width: 1020px) {
  .header-call {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item-large {
    grid-row: span 1;
  }

  .about-layout,
  .vn-feature-layout,
  .contact-layout,
  .priority-layout,
  .detail-layout,
  .measurement-layout,
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .section-heading-sticky {
    position: static;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .article-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .compact-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .detail-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-height: 760px) and (min-width: 821px) {
  .hero {
    min-height: 78svh;
  }

  .hero-content {
    padding: 118px 0 30px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(2.6rem, 5vw, 4.35rem);
    line-height: 1;
  }

  .hero-lead {
    max-width: 650px;
    margin-top: 18px;
    font-size: 1.08rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-proof {
    display: none;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 80px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 14px;
    background: rgba(17, 23, 20, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 14px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-content {
    padding: 120px 0 38px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 14vw, 4.1rem);
  }

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

  .strip-grid a {
    border-bottom: 1px solid rgba(16, 21, 17, 0.22);
  }

  .strip-grid a:nth-child(2n) {
    border-right: 0;
  }

  .section {
    padding: 68px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .site-nav {
    inset: 72px 0 auto 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    object-position: 58% 50%;
  }

  .hero-content {
    min-height: 83svh;
    padding-top: 112px;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 2.9rem);
    line-height: 1.02;
    overflow-wrap: normal;
    hyphens: manual;
  }

  .hero-lead {
    font-size: 1rem;
  }

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

  .hero-proof {
    display: none;
  }

  .strip-grid,
  .services-grid,
  .gallery-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .strip-grid a {
    min-height: 68px;
    border-right: 0;
  }

  .priority-item {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 260px;
  }

  .about-media img {
    height: 410px;
  }

  .contact-form {
    padding: 18px;
  }

  .reference-facts,
  .article-grid,
  .footer-grid,
  .compact-footer .footer-grid,
  .detail-card-grid,
  .media-detail,
  .reference-showcase {
    grid-template-columns: 1fr;
  }

  .rating-layout,
  .split-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    min-height: 590px;
    padding-top: 130px;
  }

  .page-hero h1,
  .profile-layout h1 {
    font-size: clamp(2.5rem, 13vw, 3.5rem);
  }

  .page-hero-measurement h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.25rem);
  }

  .measurement-duration {
    grid-template-columns: 1fr;
  }

  .profile-photo img,
  .media-detail img,
  .reference-showcase img {
    height: 430px;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
    text-align: center;
  }

  body {
    padding-bottom: 68px;
  }
}
