:root {
  --ink: #171717;
  --muted: #62676d;
  --line: #dde3e7;
  --paper: #fbfcfd;
  --soft: #eef2f4;
  --brand: #f9cf19;
  --brand-ink: #3c3200;
  --deep: #283239;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(40, 50, 57, 0.12);
  background: rgba(251, 252, 253, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 148px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

nav a {
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover {
  background: var(--brand);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: clamp(32px, 6vw, 86px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(249, 207, 25, 0.22), transparent 32%),
    linear-gradient(180deg, #fbfcfd 0%, #eef2f4 100%);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #8a6f00;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 106px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.16;
}

.hero-copy > p:not(.eyebrow),
.intro > p,
.contact p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  background: var(--brand);
  color: var(--brand-ink);
}

.button.secondary {
  border: 1px solid var(--deep);
  color: var(--deep);
}

.hero-media {
  min-height: min(620px, 62vh);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(40, 50, 57, 0.18);
}

.hero-media img {
  width: 100%;
  min-height: min(620px, 62vh);
  object-fit: cover;
}

.section {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.34;
  object-fit: cover;
}

.service-card div {
  padding: 20px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: #ffffff;
}

.contact-panel {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-panel p {
  margin: 0;
  color: var(--deep);
  font-weight: 800;
}

.contact-panel a {
  color: #6f5900;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .hero,
  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img {
    min-height: 340px;
  }
}
