:root {
  --ink: #18201f;
  --muted: #58625f;
  --paper: #f8f6f0;
  --panel: #ffffff;
  --line: #d8d2c6;
  --teal: #1f6f68;
  --teal-dark: #164f4a;
  --clay: #b65d42;
  --gold: #d8a33c;
  --shadow: 0 24px 80px rgba(24, 32, 31, 0.2);
}

* {
  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;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(24, 32, 31, 0.42);
}

.nav {
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  overflow: hidden;
  align-items: center;
  padding: 112px clamp(20px, 6vw, 78px) 70px;
  color: #fff;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 18, 17, 0.86) 0%, rgba(12, 18, 17, 0.62) 43%, rgba(12, 18, 17, 0.16) 100%),
    linear-gradient(0deg, rgba(12, 18, 17, 0.4), rgba(12, 18, 17, 0.05));
}

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

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

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

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  min-height: 46px;
  border: 0;
  padding: 13px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--teal);
}

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

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.section {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 6vw, 78px);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.notice,
.contact-card,
.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(24, 32, 31, 0.08);
}

.notice {
  padding: 26px;
  border-left: 6px solid var(--clay);
}

.notice p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.section-heading p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.service-card {
  min-height: 260px;
  padding: 26px;
}

.service-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 42px;
  color: #fff;
  background: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
}

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

.status-section {
  background: #eee9de;
}

.contact-section {
  background: #eaf0ee;
}

.contact-card {
  padding: 24px;
}

.contact-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(20px, 6vw, 78px);
  color: #fff;
  background: var(--ink);
  font-size: 0.92rem;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 84vh;
    padding-top: 96px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .split,
  .contact-layout,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .service-icon {
    margin-bottom: 26px;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    text-align: center;
  }
}
