:root {
  --bg: #091014;
  --bg-soft: #101a20;
  --surface: #142029;
  --surface-strong: #1b2a33;
  --line: rgba(255, 255, 255, 0.12);
  --text: #eef5f4;
  --muted: #aebcbd;
  --cyan: #38c8d8;
  --accent: #7cffb2;
  --accent-hover: #a8ffd0;
  --accent-strong: #4ade80;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(56, 200, 216, 0.08), transparent 42%),
    linear-gradient(240deg, rgba(124, 255, 178, 0.1), transparent 44%),
    #091014;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 16, 20, 0.9);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
}

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

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(124, 255, 178, 0.14);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
}

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

.hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 16, 20, 0.94), rgba(9, 16, 20, 0.72) 42%, rgba(9, 16, 20, 0.28)),
    linear-gradient(0deg, #091014 0%, rgba(9, 16, 20, 0) 34%);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.45rem, 5.2vw, 4.75rem);
}

h2 {
  font-size: clamp(1.75rem, 3.1vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: #d9e5e5;
  font-size: 1.08rem;
}

.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: 8px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: #05110b;
  box-shadow: 0 14px 34px rgba(124, 255, 178, 0.24);
}

.button.primary:hover {
  background: var(--accent-hover);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.section {
  padding: 72px 0;
}

.intro-band,
.values-band,
.gallery-section {
  background: rgba(255, 255, 255, 0.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 56px;
  align-items: start;
}

.split > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

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

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

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

.service-card,
.detail-grid article,
.value-grid div,
.stack article,
.process-panel,
.contact-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 235px;
  padding: 24px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 255, 178, 0.55);
}

.service-kicker,
.value-grid span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--accent);
  font-weight: 900;
}

.service-card p,
.detail-grid p,
.value-grid p,
.stack p,
.process-panel p,
.story p {
  color: var(--muted);
}

.feature-grid,
.media-layout,
.image-text-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 42px;
  align-items: center;
}

.feature-grid img,
.media-layout img,
.image-text-grid img,
.about-grid img,
.process-panel img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-grid img,
.media-layout img,
.image-text-grid img {
  aspect-ratio: 4 / 3;
}

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

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

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--accent-strong);
}

.page-hero {
  padding: 76px 0 60px;
  border-bottom: 1px solid var(--line);
}

.page-hero .split {
  align-items: center;
}

.page-hero h1 {
  max-width: 640px;
  font-size: clamp(2.25rem, 4vw, 3.85rem);
}

.page-hero p {
  color: var(--muted);
  max-width: 560px;
  font-size: 1.02rem;
}

.media-hero {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
}

.media-layout img {
  max-height: 480px;
}

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

.detail-grid article {
  min-height: 190px;
  padding: 24px;
}

.about-grid {
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
}

.about-grid img {
  background: #fff;
  padding: 30px;
  object-fit: contain;
}

.logo-showcase {
  background: #fff;
  padding: 30px;
  object-fit: contain;
}

.story {
  max-width: 710px;
}

.story p {
  font-size: 1rem;
}

.value-grid div {
  padding: 24px;
}

.image-text-grid {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.stack {
  display: grid;
  gap: 16px;
}

.stack article {
  padding: 22px;
}

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

.process-panel {
  overflow: hidden;
}

.process-panel img {
  height: 300px;
  border-radius: 0;
}

.process-panel div {
  padding: 24px;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.contact-form label {
  color: #dbe7e7;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 10, 12, 0.68);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(124, 255, 178, 0.4);
  border-color: var(--accent);
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 8px 0;
}

.consent input {
  width: 18px;
  margin-top: 4px;
}

.consent span,
.form-note {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
}

.form-note {
  margin: 0;
}

.contact-panel {
  padding: 30px;
}

.contact-panel img {
  width: 118px;
  height: 118px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
}

address {
  font-style: normal;
  color: var(--muted);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-links a {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.social-band {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(124, 255, 178, 0.14), rgba(56, 200, 216, 0.08));
}

.social-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.social-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease, border-color 160ms ease;
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 255, 178, 0.72);
}

.social-link.facebook {
  background: #1877f2;
}

.social-link.instagram {
  background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.social-link.tiktok {
  background: #050505;
  text-shadow: 2px 0 #25f4ee, -2px 0 #fe2c55;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: #071014;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr auto;
  gap: 26px;
  align-items: center;
}

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

.footer-cta {
  justify-self: end;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

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

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(124, 255, 178, 0.28);
  border-radius: 8px;
  background: rgba(9, 16, 20, 0.96);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(12px);
}

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

.cookie-copy .cookie-title {
  margin-bottom: 4px;
  color: var(--text);
  font-weight: 900;
}

.cookie-preferences {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.cookie-preferences[hidden] {
  display: none;
}

.cookie-preferences label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
}

.cookie-preferences input {
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-button {
  min-height: 42px;
  padding: 9px 13px;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.cookie-button.accept {
  border: 1px solid transparent;
  background: var(--accent);
  color: #05110b;
}

.cookie-button.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #0b1419;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    border-radius: 8px;
  }

  .hero {
    min-height: 560px;
  }

  .split,
  .feature-grid,
  .media-layout,
  .image-text-grid,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .two-columns {
    grid-template-columns: 1fr;
  }

  .page-hero .split {
    gap: 22px;
  }

  .service-grid,
  .detail-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    justify-self: start;
  }

  .social-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

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

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

  .brand span {
    font-size: 0.98rem;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    padding: 92px 0 58px;
  }

  .section,
  .page-hero {
    padding: 48px 0;
  }

  h1 {
    font-size: clamp(2.15rem, 12vw, 3.25rem);
  }

  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .button {
    width: 100%;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .cookie-button {
    flex: 1 1 100%;
  }
}
