:root {
  --background: #f7f4ed;
  --foreground: #11110f;
  --ink: #090908;
  --muted: #676158;
  --gold: #f3b729;
  --gold-deep: #c48612;
  --green: #078449;
  --red: #cf1f1f;
  --blue: #106db3;
  --surface: #fffaf0;
  --line: rgba(17, 17, 15, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 9, 8, 0.92);
  color: #fffaf0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid var(--gold);
  border-left-color: var(--green);
  border-right-color: var(--red);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.brand small {
  margin-top: 5px;
  color: var(--gold);
  font-size: 0.88rem;
  font-style: italic;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.95rem;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  padding: 11px 14px;
  border: 1px solid rgba(243, 183, 41, 0.45);
  border-radius: 6px;
  color: var(--gold);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: min(760px, 78svh);
  overflow: hidden;
  background: var(--ink);
  color: #fffaf0;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 31%;
  filter: saturate(0.98) contrast(1.04);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 9, 8, 0.96) 0%, rgba(9, 9, 8, 0.76) 43%, rgba(9, 9, 8, 0.22) 100%),
    linear-gradient(180deg, rgba(9, 9, 8, 0.18) 0%, rgba(9, 9, 8, 0.84) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(760px, 78svh);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 11svh, 128px) 0 56px;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 700;
  line-height: 1.24;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
}

.btn-primary {
  background: var(--gold);
  color: #15110a;
}

.btn-secondary {
  border-color: rgba(255, 250, 240, 0.4);
  background: rgba(255, 250, 240, 0.08);
  color: #fffaf0;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.hero-facts span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 6px;
  background: rgba(9, 9, 8, 0.46);
  color: rgba(255, 250, 240, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
}

.intro-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px clamp(18px, 4vw, 56px);
  background: linear-gradient(90deg, var(--green), #11110f 38%, var(--red));
  color: #fffaf0;
  text-align: center;
}

.intro-band p,
.intro-band span {
  margin: 0;
}

.intro-band p {
  color: var(--gold);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 900;
}

.intro-band span {
  color: rgba(255, 250, 240, 0.86);
  font-weight: 700;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.section-heading {
  width: min(920px, 100%);
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: #15110a;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
}

.service-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 7px solid var(--gold);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 20px 50px rgba(17, 17, 15, 0.07);
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 8px;
  background: #15110a;
  color: var(--gold);
  font-size: 1.6rem;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.service-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.accent-blue {
  border-top-color: var(--blue);
}

.accent-charcoal {
  border-top-color: #32302d;
}

.accent-green,
.accent-forest {
  border-top-color: var(--green);
}

.accent-orange {
  border-top-color: #ec6b0c;
}

.accent-violet {
  border-top-color: #6f32b7;
}

.work-band {
  background: var(--ink);
  color: #fffaf0;
}

.section-heading.light h2 {
  color: #fffaf0;
}

.advantage-grid {
  display: grid;
  width: min(1080px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(243, 183, 41, 0.45);
  border-bottom: 1px solid rgba(243, 183, 41, 0.45);
}

.advantage {
  display: grid;
  min-height: 150px;
  place-items: center;
  gap: 14px;
  padding: 28px 16px;
  border-right: 1px solid rgba(243, 183, 41, 0.45);
  color: var(--gold);
  text-align: center;
}

.advantage:last-child {
  border-right: 0;
}

.advantage-icon {
  font-size: 1.9rem;
}

.advantage span:last-child {
  color: #fffaf0;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.contact-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions a,
.contact-actions p {
  display: grid;
  grid-template-columns: 28px 1fr 18px;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #15110a;
  box-shadow: 0 16px 40px rgba(17, 17, 15, 0.07);
}

.contact-actions p {
  grid-template-columns: 28px 1fr;
}

.contact-actions span {
  color: var(--gold-deep);
  font-size: 1.3rem;
}

.contact-actions em {
  color: var(--gold-deep);
  font-style: normal;
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: #11110f;
  color: rgba(255, 250, 240, 0.78);
}

footer span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

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

  .advantage-grid,
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding: 10px 14px;
  }

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

  .header-call {
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
  }

  .header-call span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(9, 9, 8, 0.88) 0%, rgba(9, 9, 8, 0.72) 50%, rgba(9, 9, 8, 0.95) 100%),
      linear-gradient(90deg, rgba(9, 9, 8, 0.72), rgba(9, 9, 8, 0.44));
  }

  .hero-media img {
    object-position: 53% 20%;
  }

  .hero-content {
    width: min(100%, calc(100% - 28px));
    padding-bottom: 36px;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.3rem);
  }

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

  .btn {
    width: 100%;
  }

  .section {
    padding: 48px 14px;
  }

  .service-grid,
  .advantage-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .advantage {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid rgba(243, 183, 41, 0.35);
  }

  .advantage:last-child {
    border-bottom: 0;
  }
}
