:root {
  --ink: #101214;
  --asphalt: #24282c;
  --concrete: #ece9de;
  --paper: #f8f3e8;
  --white: #ffffff;
  --muted: #68706b;
  --line: #dad7cc;
  --yellow: #efbd22;
  --gold: #b68016;
  --green: #234d3b;
  --rust: #b65124;
  --shadow: 0 24px 70px rgba(16, 18, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 250, 245, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px clamp(18px, 5vw, 78px);
  color: rgba(251, 250, 245, 0.82);
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.header-brand-row {
  position: relative;
  display: grid;
  place-items: center;
  padding: 15px clamp(18px, 5vw, 78px) 12px;
}

.brand img {
  width: min(390px, 64vw);
  max-height: 138px;
  height: auto;
  object-fit: contain;
}

.menu-toggle {
  position: absolute;
  right: clamp(18px, 5vw, 78px);
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 3vw, 36px);
  padding: 0 clamp(18px, 5vw, 78px) 14px;
}

.nav a {
  position: relative;
  padding: 8px 2px;
  color: var(--asphalt);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--yellow);
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7.6vw, 7.4rem);
  line-height: 0.84;
  letter-spacing: 0;
}

h1 span {
  display: block;
  color: var(--green);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
  line-height: 1.18;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(62px, 8vw, 108px) clamp(18px, 5vw, 78px) 0;
  background:
    radial-gradient(circle at 12% 26%, rgba(239, 189, 34, 0.24), transparent 28%),
    var(--paper);
}

.hero-content {
  position: relative;
  padding-left: clamp(18px, 3vw, 34px);
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 10px;
  left: 0;
  width: 9px;
  background: linear-gradient(var(--yellow), var(--rust));
}

.hero-content p:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.hero-actions,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary {
  background: var(--green);
  color: var(--white);
}

.btn.primary:hover {
  background: var(--ink);
}

.btn.ghost {
  border-color: rgba(35, 77, 59, 0.34);
  color: var(--green);
  background: rgba(255, 255, 255, 0.42);
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  grid-template-rows: 310px 230px;
  gap: 14px;
  align-self: stretch;
}

.hero-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-mosaic .mosaic-large {
  grid-row: 1 / 3;
  border-radius: 120px 28px 28px 28px;
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(42px, 6vw, 76px);
  border-top: 0;
  border-bottom: 0;
  background: var(--green);
}

.hero-stats div {
  display: grid;
  gap: 3px;
  padding: 22px clamp(16px, 3vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  color: var(--yellow);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.9;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(74px, 9vw, 126px) clamp(18px, 5vw, 78px);
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.culture {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(35, 77, 59, 0.96), rgba(16, 18, 20, 0.78)),
    url("assets/photos/culture.jpg") center/cover no-repeat;
}

.culture h2 {
  color: var(--white);
}

.section-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-list span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

.video-card,
.feature-photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-head {
  max-width: 980px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head.light {
  color: var(--white);
}

.section-head.light h2 {
  color: var(--white);
}

.about {
  background: linear-gradient(180deg, var(--white), var(--paper));
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 0;
  max-width: 1240px;
  margin: 0 auto 24px;
  border: 0;
  background: transparent;
}

.about-grid article {
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid rgba(35, 77, 59, 0.18);
  background: rgba(255, 255, 255, 0.64);
}

.about-grid article:last-child {
  border-right: 0;
}

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

.image-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 12px;
  max-width: 1240px;
  margin: 0 auto;
}

.image-strip img,
.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 26px;
}

.services {
  background:
    linear-gradient(180deg, rgba(35, 77, 59, 0.94), rgba(16, 18, 20, 0.88)),
    url("assets/photos/services-bg.jpg") center/cover no-repeat fixed;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  max-width: 1240px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  grid-column: span 2;
  min-height: 390px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 34px;
}

.service-card:nth-child(1),
.service-card:nth-child(6) {
  grid-column: span 3;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 260ms ease, opacity 260ms ease;
}

.service-card:hover img {
  transform: scale(1.045);
  opacity: 0.58;
}

.service-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
  background: linear-gradient(0deg, rgba(16, 18, 20, 0.92), rgba(16, 18, 20, 0));
}

.service-card h3 {
  color: var(--white);
  font-size: 1.45rem;
}

.service-card h3::before {
  content: "";
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--yellow);
}

.service-card p {
  max-width: 480px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.work {
  background: var(--concrete);
}

.trust {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--paper);
}

.trust-copy {
  position: sticky;
  top: 180px;
}

.trust-grid {
  display: grid;
  gap: 16px;
}

.trust-grid article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 10px 22px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(35, 77, 59, 0.1);
}

.trust-grid span {
  grid-row: span 2;
  color: var(--yellow);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.trust-grid h3 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.trust-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  max-width: 1240px;
  margin: 0 auto;
}

.gallery img {
  grid-column: span 2;
  height: 255px;
}

.gallery img:nth-child(1),
.gallery img:nth-child(8) {
  grid-column: span 3;
  height: 360px;
}

.gallery img:nth-child(4) {
  grid-column: span 4;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(248, 243, 232, 0.98), rgba(248, 243, 232, 0.82)),
    url("assets/photos/cta-bg.jpg") center/cover no-repeat;
}

.contact-copy {
  max-width: 620px;
}

address {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding-left: 18px;
  border-left: 5px solid var(--yellow);
  color: var(--asphalt);
  font-style: normal;
}

address strong {
  color: var(--ink);
  font-size: 1.42rem;
}

address a {
  color: var(--green);
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  border: 0;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--asphalt);
  font-size: 0.84rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 12px;
  font: inherit;
  background: #fdfcf8;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(231, 189, 41, 0.48);
  border-color: var(--gold);
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  margin: 0;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status.error {
  color: #9d2f21;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 48px 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.site-footer img {
  width: 168px;
  margin-bottom: 8px;
}

.footer-brand {
  display: grid;
  justify-items: center;
  color: var(--yellow);
  line-height: 0.95;
}

.footer-brand strong {
  font-size: 2.2rem;
  font-weight: 900;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 900;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.46);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0 18px 16px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 13px 0;
    border-top: 1px solid var(--line);
  }

  .hero,
  .split,
  .trust,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .trust-copy {
    position: static;
  }

  .hero-mosaic {
    grid-template-rows: 250px 190px;
  }

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

  .about-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-grid article:last-child {
    border-bottom: 0;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(6) {
    grid-column: span 3;
  }

  .gallery img,
  .gallery img:nth-child(1),
  .gallery img:nth-child(4),
  .gallery img:nth-child(8) {
    grid-column: span 3;
    height: 260px;
  }
}

@media (max-width: 640px) {
  .header-topline {
    display: none;
  }

  .header-brand-row {
    min-height: 74px;
  }

  .brand img {
    width: min(260px, 72vw);
    max-height: 88px;
  }

  h1 {
    font-size: clamp(2.2rem, 14vw, 4.2rem);
    line-height: 0.9;
  }

  .hero {
    padding-top: 46px;
    gap: 28px;
  }

  .hero-mosaic,
  .hero-stats,
  .image-strip,
  .service-grid,
  .gallery,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-mosaic {
    grid-template-rows: 260px 170px 170px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-mosaic .mosaic-large {
    grid-row: auto;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(6) {
    grid-column: auto;
    min-height: 330px;
  }

  .gallery img,
  .gallery img:nth-child(1),
  .gallery img:nth-child(4),
  .gallery img:nth-child(8) {
    grid-column: auto;
    height: 225px;
  }

  .image-strip img {
    height: 220px;
  }

  .trust-grid article {
    grid-template-columns: 1fr;
  }

  .trust-grid span {
    grid-row: auto;
  }
}
