:root {
  --primary: #111111;
  --secondary: #111111;
  --accent: #444444;
  --light: #0d0d0d;
  --text: #f3e1b5;
  --muted: #e7d7a8;
  --base-font-size: 11pt;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--base-font-size);
  color: var(--text);
  background: #0b0b0b;
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  padding: 1.5cm 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("wolflogo.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto calc(100vh - 3cm);
  background-origin: content-box;
  background-attachment: fixed;
  opacity: 0.95;
  pointer-events: none;
  z-index: -1;
}

a { color: var(--text); text-decoration: none; }
a:hover { text-decoration: underline; }

body,
header,
main,
footer,
section,
.hero,
.card,
.hero p,
.hero li,
section p,
section li,
.card p,
.card li,
nav a,
footer p {
  color: var(--text);
  font-weight: 700;
  font-size: var(--base-font-size);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

header {
  background: transparent;
  color: var(--text);
  padding: 18px 20px 12px;
}

body,
header,
main,
footer,
section,
.hero,
.card {
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.18);
}

.index-header {
  background: transparent;
  color: var(--text);
  padding: 16px 20px 8px;
}

.index-header nav a {
  color: var(--text);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

nav a {
  color: var(--text);
  font-weight: 600;
}

.nav-btn {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  text-decoration: none;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  background: transparent;
  padding: 14px 16px 10px;
  border-radius: 10px;
  box-shadow: none;
  margin: 8px 0;
}

.hero h1, .hero h2, section h2, section h3 {
  color: var(--text);
}

section {
  background: transparent;
  padding: 12px 16px 10px;
  border-radius: 10px;
  box-shadow: none;
  margin: 8px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 56px;
  row-gap: 16px;
  align-items: start;
  max-width: 100%;
}

.services-grid > section:nth-child(odd) {
  justify-self: start;
  width: 100%;
  max-width: 100%;
}

.services-grid > section:nth-child(even) {
  justify-self: end;
  width: 100%;
  max-width: 100%;
  text-align: right;
}

ul { margin: 0; padding-left: 0; list-style: none; }

li { margin-bottom: 6px; }

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.home-layout {
  display: grid;
  grid-template-columns: minmax(240px, 42%) 220px minmax(240px, 42%);
  gap: 24px;
  align-items: start;
}

.home-column {
  padding: 8px 4px;
}

.card {
  background: transparent;
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 10px;
  box-shadow: none;
}

.home-layout > .home-column:last-child {
  text-align: right;
}

.home-layout > .home-column:last-child ul {
  padding-left: 0;
  padding-right: 18px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  font: inherit;
}

button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

button:hover { opacity: 0.95; }

footer {
  text-align: center;
  padding: 18px 20px 28px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .home-layout { grid-template-columns: 1fr; }
  .wolf-center { order: -1; padding-top: 0; }
}

@media (max-width: 760px) {
  .grid { grid-template-columns: 1fr; }
  .hero, section { padding: 22px; }

  body::before {
    background-attachment: scroll;
    background-size: auto min(70vh, 70vw);
    opacity: 0.8;
  }
}
