: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: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: var(--radius);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.08rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.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(4, 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;
}

.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-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.reference-logos span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-weight: 800;
}

.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 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);
}

.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%;
}

.seo-section {
  background: linear-gradient(135deg, #ffffff 0%, #eef2e9 100%);
}

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

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-cloud span {
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(16, 21, 17, 0.05);
}

.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);
}

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

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

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-inner a {
  color: #fff;
  font-weight: 800;
}

.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;
}

@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,
  .seo-layout,
  .contact-layout,
  .priority-layout {
    grid-template-columns: 1fr;
  }

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

  .process-list {
    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: 74px 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: 68px;
  }

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

  .brand strong {
    font-size: 1rem;
  }

  .site-nav {
    inset: 68px 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;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}
