﻿:root {
  --bg: #07130c;
  --bg-soft: #0f1f14;
  --panel: #112a1c;
  --panel-strong: #153923;
  --text: #ecf6ee;
  --muted: #b2c8ba;
  --line: rgba(255,255,255,0.08);
  --accent: #45d588;
  --accent-strong: #2aa968;
  --shadow: rgba(0,0,0,0.28);
  --radius: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, #0a1a11 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(7, 19, 12, 0.82);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  flex-wrap: wrap;
}

.main-nav a,
.lang-switch,
.menu-toggle {
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.lang-switch:hover,
.menu-toggle:hover {
  color: var(--text);
}

.lang-switch {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
}

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

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(69, 213, 136, 0.08);
  border-color: rgba(69, 213, 136, 0.5);
  transform: translateY(-1px);
}

body.nav-open .menu-toggle {
  background: rgba(69, 213, 136, 0.12);
  border-color: rgba(69, 213, 136, 0.6);
}

.side-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: min(360px, 85vw);
  height: 100vh;
  padding: 20px 20px 28px;
  background: linear-gradient(180deg, rgba(18, 42, 29, 0.98), rgba(10, 24, 15, 0.98));
  border-left: 1px solid var(--line);
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.35);
  transform: translateX(105%);
  transition: transform 0.32s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.side-nav-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(69, 213, 136, 0.18), rgba(69, 213, 136, 0));
  pointer-events: none;
}

body.nav-open .side-nav-panel {
  transform: translateX(0);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(7, 19, 12, 0.54);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.side-nav-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  color: var(--text);
}

.menu-close {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  padding: 8px 14px;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.menu-close:hover {
  border-color: rgba(69, 213, 136, 0.5);
  background: rgba(69, 213, 136, 0.08);
}

.sidebar-nav {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: nowrap;
}

.sidebar-nav a {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.sidebar-nav a:hover {
  background: rgba(69, 213, 136, 0.12);
  border-color: rgba(69, 213, 136, 0.4);
  transform: translateX(-2px);
}

body.nav-open {
  overflow: hidden;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  position: relative;
  padding: 96px 0 54px;
  background:
    linear-gradient(120deg, rgba(7, 19, 12, 0.85), rgba(7, 19, 12, 0.72)),
    url('../assets/images/HeroImage.jpg') center/cover no-repeat;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.6fr);
  align-items: flex-end;
  gap: 54px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy h1 span {
  display: inline-block;
}

.lead,
.section-copy,
.lead-copy {
  margin-top: 22px;
  max-width: 60ch;
  font-size: 1.08rem;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: var(--accent);
  color: #062610;
}

.button.secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.hero-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.hero-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-links a {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 1.05rem;
}

.hero-links a span {
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-links a small {
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: lowercase;
  letter-spacing: 0.05em;
}

.hero-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.hero-social li {
  color: var(--muted);
}

.hero-social .social-label {
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 600;
}

.scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
}

.scroll-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
}

.section {
  padding: 82px 0;
}

.section-header {
  margin-bottom: 24px;
}

.section h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.about-section {
  background: rgba(255,255,255,0.01);
}

.process-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.process-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 28px 22px;
  background: rgba(17, 42, 28, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(69, 213, 136, 0.12);
  border: 1px solid rgba(69, 213, 136, 0.38);
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 800;
}

.process-text h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

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

.services-section {
  background: rgba(255,255,255,0.01);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  background: rgba(17, 42, 28, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(69, 213, 136, 0.12);
  border: 1px solid rgba(69, 213, 136, 0.32);
}

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

.service-text h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

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

.works-section {
  padding-bottom: 52px;
}

.work-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(17, 42, 28, 0.75);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(7, 19, 12, 0.12);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.work-card:hover,
.work-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(69, 213, 136, 0.52);
  background: rgba(20, 49, 33, 0.82);
  box-shadow: 0 18px 30px rgba(7, 19, 12, 0.18);
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.work-card--washed img {
  filter: saturate(0.7) brightness(1.15) contrast(0.95);
}

.work-card:hover img,
.work-card:focus-visible img {
  transform: scale(1.05);
}

.work-meta {
  padding: 18px 18px 20px;
}

.work-meta h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  transition: text-decoration-color 0.2s ease;
}

.work-card:hover .work-meta h3,
.work-card:focus-visible .work-meta h3 {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.work-meta p {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  padding-bottom: 90px;
}

.contact-shell {
  padding: 34px 32px 28px;
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-strong) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-header {
  margin-bottom: 18px;
}

.contact-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0 12px;
  border-bottom: 1px solid var(--line);
}

.contact-email,
.contact-number {
  color: var(--text);
}

.contact-email {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.contact-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.contact-card {
  min-height: 100%;
}

.contact-address {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.social-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  color: var(--text);
}

.subscribe-form {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px 8px 16px;
  background: rgba(255,255,255,0.02);
}

.subscribe-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  outline: none;
}

.subscribe-form input::placeholder {
  color: var(--muted);
}

.subscribe-form button {
  border: 0;
  background: var(--accent);
  color: #062610;
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(7, 19, 12, 0.9);
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 50;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  background: rgba(12, 32, 19, 0.96);
  box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-button {
  border: 1px solid rgba(69, 213, 136, 0.45);
  background: rgba(69, 213, 136, 0.12);
  color: var(--text);
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.cookie-button:hover {
  border-color: rgba(69, 213, 136, 0.75);
  background: rgba(69, 213, 136, 0.18);
  transform: translateY(-1px);
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

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

@media (max-width: 980px) {
  .hero-layout,
  .service-grid,
  .work-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .work-grid {
    display: grid;
  }

  .hero-side {
    align-items: stretch;
  }
}

@media (max-width: 860px) {
  .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
  }

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

  .contact-shell {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 72px;
  }

  .hero-actions,
  .contact-main,
  .subscribe-form {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .subscribe-form button {
    width: 100%;
  }

  .subscribe-form {
    border-radius: 24px;
    padding: 16px;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 24px 0;
  }
}
