:root {
  --color-bg: #161819;
  --color-surface: #202224;
  --color-panel: #2a2d30;
  --color-text: #eee9df;
  --color-muted: #b9b1a5;
  --color-border: #42464a;
  --color-primary: #b65449;
  --color-primary-dark: #98443b;
  --color-secondary: #8bb6ad;
  --color-dark: #f7f1e8;
  --color-warm: #d2aa61;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(22, 24, 25, 0.94);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 1rem;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: #ffffff;
  background: var(--color-primary);
  border-radius: var(--radius);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.nav-links a:hover {
  color: var(--color-primary);
}

.section,
.section-band {
  padding: 88px 0;
}

.section-band {
  background: var(--color-surface);
}

.hero {
  padding-top: 72px;
}

.hero-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 56px;
}

.hero-content,
.about-content {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-dark);
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  font-size: 4.25rem;
}

h2 {
  max-width: 720px;
  font-size: 2.65rem;
}

h3 {
  font-size: 1.18rem;
}

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

.hero-text {
  max-width: 610px;
  margin-top: 24px;
  font-size: 1.1rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.button-primary {
  color: #ffffff;
  background: var(--color-primary);
  box-shadow: 0 14px 30px rgba(182, 84, 73, 0.24);
}

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

.button-secondary {
  color: var(--color-dark);
  background: var(--color-panel);
  border-color: var(--color-border);
}

.button-secondary:hover {
  border-color: var(--color-primary);
}

.hero-media,
.about-media {
  min-width: 0;
}

.image-frame {
  --frame-height: 460px;

  display: block;
  overflow: hidden;
  height: var(--frame-height);
  background:
    linear-gradient(135deg, rgba(9, 10, 11, 0.9), rgba(42, 79, 76, 0.8)),
    repeating-linear-gradient(45deg, #1f2224 0 16px, #292c2f 16px 32px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin: 0;
}

.image-frame-small {
  --frame-height: 360px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  font-size: 1.05rem;
}

.section-heading.compact {
  margin-bottom: 28px;
}

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

.service-card,
.benefit,
.contact-panel {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.service-card {
  min-height: 210px;
  padding: 24px;
}

.service-card h3,
.benefit h3 {
  margin-top: 18px;
}

.service-card p,
.benefit p {
  margin-top: 12px;
}

.service-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #1d1a15;
  background: var(--color-warm);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
}

.about-content p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 18px;
  font-size: 1.04rem;
}

.benefit {
  padding: 24px;
}

.benefit h3 {
  margin-top: 0;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
}

.contact-grid > div p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 18px;
  font-size: 1.04rem;
}

.contact-panel {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 8px;
  font-style: normal;
  box-shadow: var(--shadow-soft);
}

.contact-item {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-bottom: 1px solid var(--color-border);
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item span {
  color: var(--color-secondary);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-item strong {
  color: var(--color-dark);
  font-size: 1.02rem;
  overflow-wrap: anywhere;
}

.site-footer {
  color: #ffffff;
  background: #111314;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .section,
  .section-band {
    padding: 68px 0;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero {
    padding-top: 56px;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .image-frame {
    --frame-height: 320px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: auto;
    padding: 14px 0;
    gap: 12px;
  }

  .brand {
    font-size: 0.98rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.9rem;
  }

  .section,
  .section-band {
    padding: 54px 0;
  }

  .hero {
    padding-top: 40px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-text,
  .section-heading p:not(.eyebrow),
  .about-content p:not(.eyebrow),
  .contact-grid > div p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .image-frame,
  .image-frame-small {
    --frame-height: 260px;
  }

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

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

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }
}
