:root {
  color-scheme: dark;
  --ink: #f6f8f7;
  --muted: #aab6b2;
  --line: rgba(255, 255, 255, 0.14);
  --paper: #050706;
  --white: #ffffff;
  --teal: #066b61;
  --green: #0b8f73;
  --gold: #d7a83f;
  --coral: #e65f4f;
  --panel: #0d1412;
  --soft-panel: #111b18;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(5, 7, 6, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: block;
  width: 58px;
  height: 44px;
  flex: 0 0 58px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(12, 35, 35, 0.1);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  transform: scale(1.38);
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: #d6dedb;
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.text-link:hover,
.footer a:hover {
  color: var(--green);
}

.header-cta,
.primary-btn,
.secondary-btn,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.primary-btn,
.contact-form button {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(6, 107, 97, 0.22);
}

.header-cta {
  padding: 0 18px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #102522;
}

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

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 24, 25, 0.9) 0%, rgba(9, 24, 25, 0.72) 42%, rgba(9, 24, 25, 0.18) 100%),
    linear-gradient(0deg, rgba(9, 24, 25, 0.24), rgba(9, 24, 25, 0.24));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 64px 0 92px;
  color: var(--white);
}

.hero-logo {
  width: min(260px, 58vw);
  aspect-ratio: 2.05 / 1;
  object-fit: cover;
  object-position: center 43%;
  margin: 0 0 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.showcase h2,
.contact-section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 9vw, 110px);
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 24px);
}

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

.primary-btn,
.secondary-btn {
  padding: 0 24px;
}

.secondary-btn {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.1);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1120px, calc(100% - 36px));
  margin: -56px auto 0;
  position: relative;
  z-index: 2;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.metrics div {
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-size: 28px;
}

.metrics span {
  color: var(--muted);
  font-size: 14px;
}

.section,
.showcase,
.contact-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 96px 0 0;
}

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

.section-heading h2,
.showcase h2,
.contact-section h2 {
  font-size: clamp(32px, 5vw, 56px);
}

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

.service-card {
  min-height: 238px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--teal);
  background: rgba(11, 143, 115, 0.18);
  font-weight: 900;
}

.service-card h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.service-card p,
.showcase-copy p,
.company-panel p,
.contact-section p {
  margin: 0;
  color: var(--muted);
}

.accent-card {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.accent-card p {
  color: rgba(255, 255, 255, 0.82);
}

.accent-card .service-icon {
  color: var(--ink);
  background: var(--gold);
}

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

.catalog-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)), var(--panel);
}

.catalog-card h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 21px;
  line-height: 1.2;
}

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

.catalog-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.38;
}

.catalog-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.nested-service-list {
  display: grid;
  gap: 16px;
}

.nested-service-list h4 {
  margin: 0 0 -6px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.nested-service-list ul {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nested-service-list ul:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.wide-card {
  grid-column: span 3;
}

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

.showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 104px 0 0;
}

.showcase-copy p:last-child {
  margin-top: 22px;
  font-size: 18px;
}

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

.work-tile {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border-radius: 8px;
  color: var(--white);
  overflow: hidden;
  background: var(--teal);
  box-shadow: var(--shadow);
}

.work-tile span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-tile strong {
  margin-top: 6px;
  font-size: 24px;
}

.poster {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.28), transparent 26%),
    linear-gradient(135deg, var(--coral), #5b2f87);
}

.logo {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24) 0 22%, transparent 22% 100%),
    linear-gradient(135deg, var(--teal), #102522);
}

.reel {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, #242a6b, #0b8f73);
}

.web {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0 28%, transparent 28%),
    linear-gradient(135deg, #263238, var(--gold));
}

.company-section {
  padding-bottom: 0;
}

.company-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}

.company-panel,
.company-facts {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.company-panel h3 {
  margin: 0 0 14px;
  font-size: 28px;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--teal);
  font-weight: 900;
}

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

.company-facts div {
  padding: 18px;
  border-radius: 8px;
  background: var(--soft-panel);
}

.company-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.company-facts dd {
  margin: 8px 0 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: start;
  margin-top: 96px;
  padding: 52px;
  color: var(--white);
  background: #102522;
  border-radius: 8px;
}

.contact-section p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-card {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: 18px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 14px;
  padding: 0 18px;
  border-radius: 8px;
  color: #101820;
  background: var(--gold);
  font-weight: 900;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form select option {
  color: var(--ink);
}

.contact-form button {
  border: 0;
  color: var(--ink);
  background: var(--gold);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 900;
}

.admin-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 16% 18%, rgba(215, 168, 63, 0.18), transparent 28%),
    radial-gradient(circle at 84% 72%, rgba(11, 143, 115, 0.22), transparent 30%),
    var(--paper);
}

.admin-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 48px 0;
}

.admin-brand {
  position: absolute;
  top: 28px;
  left: clamp(18px, 4vw, 56px);
  display: block;
  width: 116px;
  height: 74px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.admin-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  transform: scale(1.32);
}

.login-panel {
  width: min(460px, 100%);
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 20, 18, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.login-panel h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1.05;
}

.login-copy {
  margin: 14px 0 28px;
  color: var(--muted);
}

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

.login-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.login-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}

.remember-field {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 8px !important;
}

.remember-field input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}

.login-row a {
  color: var(--gold);
  font-weight: 900;
  white-space: nowrap;
}

.login-form button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: #101820;
  background: var(--gold);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.login-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 88px;
  }

  .metrics,
  .service-grid,
  .service-catalog,
  .showcase,
  .company-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .metrics {
    margin-top: 0;
  }

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }

  .company-facts,
  .work-board,
  .wide-card ul {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: auto;
  }

  .contact-section {
    padding: 34px 24px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: auto;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-bottom: 62px;
  }

  .hero-actions a {
    width: 100%;
  }

  .section {
    padding-top: 72px;
  }

  .showcase {
    padding-top: 76px;
  }

  .service-card {
    min-height: auto;
  }

  .footer {
    display: block;
  }

  .footer a {
    display: inline-block;
    margin-top: 12px;
  }

  .admin-brand {
    position: static;
    margin: 0 auto 24px;
  }

  .admin-shell {
    display: block;
    padding-top: 28px;
  }

  .login-panel {
    padding: 28px 20px;
  }

  .login-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
