:root {
  --green: #0e3b2e;
  --green-2: #164f3c;
  --lime: #6bc048;
  --acid: #b6ff4a;
  --dark: #111827;
  --ink: #243042;
  --muted: #6a7280;
  --line: #dfe7e3;
  --soft: #f4f8f5;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(17, 24, 39, 0.13);
  --shadow-strong: 0 34px 80px rgba(17, 24, 39, .2);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 40%, #173f31 0, #0d2a22 45%, #081914 100%);
  color: var(--white);
  transition: opacity .55s ease, visibility .55s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: min(360px, 82vw);
  text-align: center;
}

.loader-logo {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(182, 255, 74, .55);
  color: var(--acid);
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 18px;
  box-shadow: 0 0 40px rgba(182, 255, 74, .18);
}

.loader-line {
  height: 3px;
  background: rgba(255, 255, 255, .16);
  overflow: hidden;
  margin-top: 16px;
}

.loader-line span {
  display: block;
  width: 44%;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--acid));
  animation: loadbar 1.2s ease-in-out infinite;
}

@keyframes loadbar {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(250%); }
}

@keyframes sheen {
  0%, 55% { transform: translateX(-130%) rotate(18deg); }
  78%, 100% { transform: translateX(130%) rotate(18deg); }
}

@keyframes heroZoom {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(18px, -10px, 0); }
}

@keyframes backgroundDrift {
  from { background-position: center center; }
  to { background-position: 58% 46%; }
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes ringPulse {
  0% { transform: scale(.82); opacity: .3; }
  70% { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}

.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
}

.topbar-inner,
.nav-inner,
.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

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

.topbar-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(14, 59, 46, .12);
  box-shadow: 0 10px 30px rgba(17, 24, 39, .05);
}

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

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

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--lime));
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(14, 59, 46, .18);
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, .42), transparent 65%);
  transform: translateX(-120%) rotate(18deg);
  animation: sheen 4.8s ease-in-out infinite;
}

.brand-text strong {
  display: block;
  color: var(--green);
  letter-spacing: .08em;
  font-size: 15px;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

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

.nav-links a {
  padding: 10px 13px;
  color: #334155;
  font-weight: 700;
  font-size: 14px;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--green);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--acid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green);
  margin: 3px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, .38), transparent 65%);
  transform: translateX(-115%);
  transition: transform .55s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  transform: translateX(115%);
}

.btn-primary {
  color: var(--dark);
  background: linear-gradient(135deg, var(--acid), var(--lime));
  box-shadow: 0 16px 30px rgba(107, 192, 72, .24);
}

.btn-dark {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 30px rgba(14, 59, 46, .2);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .08);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image: linear-gradient(110deg, rgba(6, 32, 25, .95) 0%, rgba(14, 59, 46, .83) 42%, rgba(14, 59, 46, .24) 100%), var(--hero-img);
  background-size: cover;
  background-position: center;
  isolation: isolate;
  animation: backgroundDrift 18s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 16s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 150px;
  background:
    linear-gradient(0deg, rgba(17, 24, 39, .34), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .05) 0, rgba(255, 255, 255, .05) 1px, transparent 1px, transparent 90px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 690px) minmax(300px, 1fr);
  gap: 44px;
  align-items: center;
  padding: 88px 0 110px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--acid);
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
  letter-spacing: 0;
}

.hero p {
  max-width: 670px;
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255, 255, 255, .86);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-panel {
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(16px);
  padding: 22px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
  transform: translateZ(0);
}

.hero-panel h3 {
  font-size: 18px;
  margin-bottom: 14px;
}

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

.hero-list li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
}

.hero-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  flex: 0 0 9px;
  background: var(--acid);
}

.section {
  padding: 86px 0;
}

.section.tint {
  background: var(--soft);
}

.section.dark {
  color: var(--white);
  background: linear-gradient(135deg, #0d2d24, #111827);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 36px;
}

.section-head h2 {
  color: var(--dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  margin-bottom: 0;
  max-width: 680px;
}

.dark .section-head h2,
.dark h2,
.dark h3 {
  color: var(--white);
}

.section-head p {
  max-width: 420px;
  color: var(--muted);
  margin-bottom: 0;
}

.dark .section-head p,
.dark p {
  color: rgba(255, 255, 255, .75);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  min-height: 510px;
}

.media-tall,
.media-stack figure,
.gallery-item,
.service-card figure,
.project-card figure {
  overflow: hidden;
  margin: 0;
  background: #d8e5dd;
  position: relative;
}

.media-tall img,
.media-stack img,
.gallery-item img,
.service-card img,
.project-card img {
  transition: transform .65s ease;
}

.media-tall:hover img,
.media-stack figure:hover img,
.gallery-item:hover img,
.service-card:hover img,
.project-card:hover img {
  transform: scale(1.07);
}

.media-stack {
  display: grid;
  gap: 14px;
}

.lead {
  color: #4b5563;
  font-size: 17px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.feature-list li,
.tick-list li {
  position: relative;
  padding-left: 27px;
  font-weight: 700;
}

.feature-list li::before,
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--lime), var(--acid));
}

.service-grid,
.industry-grid,
.why-grid,
.process-grid,
.stats-grid,
.testimonial-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(17, 24, 39, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before,
.project-card::before,
.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--lime), var(--acid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(107, 192, 72, .6);
  box-shadow: var(--shadow-strong);
}

.service-card:hover::before,
.project-card:hover::before,
.why-card:hover::before {
  transform: scaleX(1);
}

.service-card figure {
  height: 210px;
}

.service-card-content {
  padding: 22px;
}

.service-card h3 {
  color: var(--green);
  font-size: 20px;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.why-card,
.industry-card,
.process-card,
.stat-card,
.testimonial,
.contact-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.why-card {
  min-height: 156px;
  position: relative;
  overflow: hidden;
}

.why-card:hover,
.industry-card:hover,
.process-card:hover,
.testimonial:hover,
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(107, 192, 72, .45);
  box-shadow: 0 22px 50px rgba(17, 24, 39, .09);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  background: #e8f6e6;
  color: var(--green);
  font-weight: 900;
}

.why-card h3,
.industry-card h3,
.process-card h3 {
  color: var(--dark);
  font-size: 18px;
  margin-bottom: 6px;
}

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

.industry-card {
  min-height: 128px;
  background: linear-gradient(180deg, var(--white), #f7faf8);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: -14px 0 22px;
}

.gallery-filter span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(14, 59, 46, .14);
  background: rgba(255, 255, 255, .72);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(17, 24, 39, .05);
}

.gallery-item {
  position: relative;
  box-shadow: 0 20px 48px rgba(17, 24, 39, .12);
  transform: translateZ(0);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(17, 24, 39, .04) 0%, rgba(14, 59, 46, .18) 45%, rgba(8, 25, 20, .84) 100%);
  opacity: .96;
  transition: opacity .35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .28);
  opacity: 0;
  transform: scale(.96);
  transition: opacity .35s ease, transform .35s ease;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: scale(1);
}

.gallery-item.wide {
  grid-column: span 2;
}

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

.gallery-item figcaption {
  position: absolute;
  z-index: 3;
  inset: auto 18px 18px 18px;
  padding: 0;
  background: transparent;
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-item figcaption span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--acid);
  color: var(--dark);
  font-size: 12px;
  font-weight: 900;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: process;
}

.process-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
}

.process-card::after {
  counter-increment: process;
  content: "0" counter(process);
  position: absolute;
  right: 16px;
  bottom: -18px;
  color: rgba(14, 59, 46, .08);
  font-size: 74px;
  font-weight: 900;
  line-height: 1;
}

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

.stat-card {
  text-align: center;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .15);
}

.stat-number {
  display: block;
  color: var(--acid);
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 10px;
}

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

.testimonial {
  box-shadow: 0 12px 32px rgba(17, 24, 39, .06);
}

.testimonial p {
  color: #374151;
}

.testimonial strong {
  color: var(--green);
}

.cta-band {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center;
  padding: 46px;
  background: linear-gradient(135deg, var(--green), #10251f);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  border: 38px solid rgba(182, 255, 74, .12);
  border-radius: 50%;
}

.cta-band h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  color: var(--white);
  background-image: linear-gradient(115deg, rgba(7, 31, 25, .94), rgba(14, 59, 46, .56)), var(--page-img);
  background-size: cover;
  background-position: center;
  animation: backgroundDrift 18s ease-in-out infinite alternate;
}

.page-hero .section-inner {
  padding: 100px 0 58px;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 12px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
}

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

.project-card {
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(17, 24, 39, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(107, 192, 72, .55);
  box-shadow: var(--shadow-strong);
}

.project-card figure {
  height: 245px;
}

.project-card div {
  padding: 20px;
}

.project-card h3 {
  color: var(--green);
  margin-bottom: 7px;
}

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

.contact-grid {
  grid-template-columns: .85fr 1.15fr;
}

.contact-card h3 {
  color: var(--green);
}

.contact-card a {
  font-weight: 800;
  color: var(--green);
}

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

.booking-form {
  margin-top: 12px;
}

.form-strip {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(14, 59, 46, .96), rgba(17, 24, 39, .96));
  color: var(--white);
}

.form-strip strong {
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.form-strip span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

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

.contact-form label span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

input,
textarea,
select {
  width: 100%;
  min-height: 54px;
  border: 1px solid #d6e3dc;
  padding: 12px 15px;
  font: inherit;
  color: var(--dark);
  background: linear-gradient(180deg, #ffffff, #f7fbf8);
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(107, 192, 72, .85);
  box-shadow: 0 0 0 4px rgba(107, 192, 72, .14);
  background: var(--white);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  min-height: 56px;
  justify-self: start;
  padding: 0 28px;
}

.footer {
  background: #0b1713;
  color: rgba(255, 255, 255, .76);
  padding: 58px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 30px;
  margin-bottom: 36px;
}

.footer h3 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 17px;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 86px;
  z-index: 90;
  display: grid;
  gap: 12px;
}

.float-btn {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 20px 42px rgba(17, 24, 39, .2);
  font-weight: 900;
  border-radius: 50%;
  position: relative;
  isolation: isolate;
  animation: floatPulse 2.8s ease-in-out infinite;
  transition: transform .22s ease, box-shadow .22s ease;
}

.float-btn::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: inherit;
  border: 1px solid currentColor;
  opacity: .22;
  animation: ringPulse 2.8s ease-out infinite;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 26px 54px rgba(17, 24, 39, .25);
}

.float-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.float-btn.call {
  background: linear-gradient(135deg, var(--green), #05251c);
}

.float-btn.whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  animation-delay: .25s;
}

.sticky-contact {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 85;
  background: rgba(17, 24, 39, .96);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .12);
  transform: translateY(100%);
  transition: transform .28s ease;
}

.sticky-contact.is-visible {
  transform: translateY(0);
}

.sticky-contact .section-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.sticky-contact a {
  color: var(--acid);
  font-weight: 900;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px) scale(.98);
  transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1);
}

[data-reveal="left"] {
  transform: translateX(-28px);
}

[data-reveal="right"] {
  transform: translateX(28px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.parallax {
  background-attachment: fixed;
}

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 14px 18px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 34px rgba(17, 24, 39, .09);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    padding: 12px 0;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-grid,
  .split,
  .cta-band,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background-attachment: scroll;
  }

  .hero-panel {
    max-width: 620px;
  }

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

  .why-grid,
  .industry-grid,
  .process-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 0;
  }

  .topbar {
    font-size: 12px;
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 0;
    gap: 6px;
  }

  .topbar-links {
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text strong {
    font-size: 13px;
  }

  .nav-inner {
    min-height: 68px;
  }

  .section {
    padding: 56px 0;
  }

  .section-inner,
  .topbar-inner,
  .nav-inner {
    width: min(100% - 28px, 1180px);
  }

  .section-head {
    display: block;
  }

  .hero-grid {
    padding: 48px 0 42px;
    gap: 26px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    flex: 1 1 160px;
  }

  .hero-panel {
    padding: 18px;
  }

  .media-grid,
  .service-grid,
  .project-grid,
  .why-grid,
  .industry-grid,
  .process-grid,
  .stats-grid,
  .testimonial-grid,
  .footer-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .media-grid {
    min-height: 0;
  }

  .media-tall,
  .media-stack figure {
    height: 260px;
  }

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

  .gallery-grid {
    display: block;
  }

  .gallery-item {
    height: 270px;
    margin-bottom: 14px;
  }

  .gallery-filter {
    margin-top: 0;
  }

  .cta-band {
    padding: 30px 22px;
  }

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

  .form-strip {
    display: grid;
  }

  .form-submit {
    width: 100%;
  }

  .sticky-contact .section-inner {
    display: grid;
    padding: 9px 0;
    text-align: center;
  }

  .floating-actions {
    right: 12px;
    bottom: 18px;
    gap: 9px;
  }

  .float-btn {
    width: 52px;
    height: 52px;
  }

  .float-btn svg {
    width: 23px;
    height: 23px;
  }
}
