﻿:root {
  color-scheme: light;
  --ink: #182220;
  --muted: #5e6a65;
  --paper: #f7f4ee;
  --paper-strong: #fffdf8;
  --line: #d9d0c3;
  --teal: #1f5f5c;
  --teal-dark: #153f3f;
  --copper: #b46a3c;
  --shadow: 0 24px 70px rgba(24, 34, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(180, 106, 60, 0.75);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 44px;
  color: var(--paper-strong);
  background: rgba(18, 26, 25, 0.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  padding: 148px 44px 76px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(12, 20, 19, 0.84), rgba(12, 20, 19, 0.54) 38%, rgba(12, 20, 19, 0.12) 74%),
    url("assets/brand-visual.jpg");
  background-size: cover;
  background-position: center;
  color: var(--paper-strong);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #efb381;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-size: 4.8rem;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.3rem;
  line-height: 1.08;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.32rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 850;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--copper);
  color: #fffaf4;
}

.button.primary:hover {
  background: #9d5730;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.section {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro-section {
  padding-top: 78px;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: start;
}

.section-copy {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 38px;
  margin-bottom: 32px;
}

.section-heading p {
  max-width: 420px;
  color: var(--muted);
}

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

.card {
  min-height: 258px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 18px 45px rgba(24, 34, 32, 0.06);
}

.card-number {
  display: block;
  margin-bottom: 46px;
  color: var(--teal);
  font-weight: 900;
}

.card p {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: center;
  margin-bottom: 40px;
  padding: 42px;
  border-radius: 8px;
  background: var(--teal-dark);
  color: #fffaf4;
  box-shadow: var(--shadow);
}

.contact-section p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 250, 244, 0.78);
}

.contact-section .button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  font-weight: 800;
  color: var(--teal);
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    padding: 16px 22px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 78vh;
    padding: 120px 22px 58px;
    background-image:
      linear-gradient(90deg, rgba(12, 20, 19, 0.88), rgba(12, 20, 19, 0.58) 62%, rgba(12, 20, 19, 0.3)),
      url("assets/brand-visual.jpg");
    background-position: 62% center;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-copy {
    font-size: 1.12rem;
  }

  .split,
  .section-heading,
  .contact-section {
    display: block;
  }

  .section {
    width: min(100% - 34px, 680px);
    padding: 70px 0;
  }

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

  .card {
    min-height: 0;
  }

  .card-number {
    margin-bottom: 28px;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: start;
    padding: 28px 22px;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    display: none;
  }

  .site-nav {
    gap: 10px;
  }

  .site-nav a {
    padding: 6px 0;
  }

  h1 {
    font-size: 2.72rem;
  }

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

  .button {
    width: 100%;
  }
}

