:root {
  --red: #F8A849;
  --red-dark: #F8A849;
  --ink: #15171c;
  --muted: #626873;
  --line: #e4e7ec;
  --paper: #f6f7f9;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(13, 18, 28, 0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr minmax(190px, 250px);
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px clamp(20px, 5vw, 76px);
  color: var(--white);
  background: rgba(6, 7, 9, 0.84);
  border-top: 2px solid rgba(248, 168, 73, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 7, 9, 0.94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
}

.menu-toggle,
.header-logo {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: clamp(24px, 4vw, 54px);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav a:hover {
  color: var(--red-dark);
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red-dark);
  content: "";
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  justify-self: end;
  min-height: 46px;
  border: 1px solid var(--red-dark);
  border-radius: 6px;
  padding: 0 18px;
  color: var(--red-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-quote svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}

.header-quote:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
  color: var(--ink);
}

.hero-quote {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 128px clamp(20px, 5vw, 72px) 72px;
  color: #F8A849;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-bg-image.hero-bg-active {
  opacity: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(90deg, rgba(8, 10, 14, 0.88) 0%, rgba(8, 10, 14, 0.68) 46%, rgba(8, 10, 14, 0.18) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: min(720px, 100%);
  text-align: left;
}

.hero-logo {
  width: min(100%, 640px);
  height: auto;
  margin-bottom: 24px;
}

.eyebrow {
  margin-bottom: 14px;
  color:var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section h2,
.contact h2 {
  letter-spacing: 0;
  line-height: 1.02;
}

.hero-text {
  max-width: 640px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.section p,
.contact p,
.contact-box span {
  color: var(--muted);
}

.section {
  padding: clamp(64px, 10vw, 110px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section h2,
.contact h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(13, 18, 28, 0.06);
  cursor: pointer;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.section-heading h3 {
  font-size: 1.50rem
}

.highlight-card {
  background: var(--white);
  color: var(--ink);
}

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

.service-list {
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(13, 18, 28, 0.06);
}

.service-list h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
  text-align: center;
}

.service-list ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 18px;
  list-style: none;
}

.service-list li {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 14px 10px 34px;
  color: var(--ink);
  font-weight: 700;
  background: var(--paper);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.service-list li::before {
  position: absolute;
  left: 14px;
  color: var(--red-dark);
  content: "\2022";
}

.service-list li:hover {
  transform: translateY(-3px);
  border-color: var(--red-dark);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(13, 18, 28, 0.12);
}

.service-list li:focus-visible {
  outline: 3px solid rgba(248, 168, 73, 0.42);
  outline-offset: 3px;
}

.service-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.service-modal.is-open {
  display: flex;
}

.service-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 7, 9, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.service-modal__dialog {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(860px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.service-modal__close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: var(--white);
  background: rgba(6, 7, 9, 0.68);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.service-modal__close:hover {
  background: var(--red-dark);
  color: var(--ink);
}

.service-modal__dialog img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.service-modal__content {
  padding: 28px;
}

.service-modal__content .eyebrow {
  color: var(--red-dark);
  font-size: 0.78rem;
}

.service-modal__content h3 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.05;
}

.service-modal__content p:last-child {
  color: var(--muted);
  font-size: 1rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  background: var(--paper);
}

.about-media img {
  width: 100%;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-content p {
  margin-top: 20px;
  font-size: 1.06rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--red);
  content: "\2713";
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 32px;
  align-items: center;
  padding: clamp(56px, 8vw, 90px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, #181b22 0%, #292f3b 100%);
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.72);
}

.contact .eyebrow {
  color: #F8A849;
}

.contact h2 {
  max-width: 760px;
}

.contact p {
  max-width: 620px;
  margin-top: 18px;
}

.contact-box {
  display: grid;
  gap: 10px;
  border-left: 4px solid var(--red);
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-box a {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-box span {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 22px clamp(20px, 5vw, 72px);
  color: #d4d7dd;
  background: #0d0f14;
  font-size: 0.92rem;
 
}

.site-footer strong {
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 860px) {
  .site-header {
    position: fixed;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 6px 18px;
    background: rgba(6, 7, 9, 0.9);
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(248, 168, 73, 0.42);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.28);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: var(--red-dark);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .header-logo {
    display: block;
    justify-self: end;
    width: min(24vw, 112px);
  }

  .header-logo img {
    width: 100%;
    height: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    display: grid;
    width: min(220px, calc(100vw - 40px));
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(248, 168, 73, 0.3);
    border-radius: 8px;
    background: rgba(6, 7, 9, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    font-size: 0.85rem;
    letter-spacing: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-header.menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    border: 1px solid rgba(248, 168, 73, 0.28);
    border-radius: 4px;
    padding: 12px 14px;
    text-align: left;
  }

  .main-nav a::after {
    display: none;
  }

  .header-quote {
    display: none;
  }

  .hero-content {
    margin: 0 auto;
    text-align: center;
  }

  .hero-logo {
    display: none;
  }

  .hero-text {
    visibility: hidden;
  }

  .hero-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    margin-top: 24px;
    border: 1px solid var(--red-dark);
    border-radius: 6px;
    padding: 0 16px;
    color: var(--ink);
    background: var(--red-dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transform: translateY(30px);
  }

  .hero-quote svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex: 0 0 auto;
  }

  .hero {
    min-height: 88vh;
    min-height: 88svh;
    padding: 104px 24px 52px;
  }

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

  .section,
  .contact {
    padding: 58px 24px;
  }

  .service-grid {
    gap: 18px;
  }

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

  .about-media img {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: fixed;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 6px 12px;
    color: var(--white);
    background: rgba(6, 7, 9, 0.94);
    border-bottom: 1px solid rgba(248, 168, 73, 0.26);
  }

  .header-logo {
    width: min(30vw, 104px);
  }

  .main-nav {
    left: 14px;
    width: min(115px, calc(100vw - 28px));
  }

  .main-nav a {
    font-size: 0.8rem;
  }

  .hero-quote {
    width: 100%;
  }

  .main-nav a:hover {
    color: var(--red-dark);
  }

  .hero {
    min-height: auto;
    padding: 88px 18px 42px;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 1rem;
  }

  .section,
  .contact {
    padding: 46px 18px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section h2,
  .contact h2 {
    font-size: clamp(1.85rem, 10vw, 2.45rem);
  }

  .service-card div,
  .service-list,
  .contact-box {
    padding: 20px;
  }

  .service-card img {
    aspect-ratio: 16 / 11;
  }

  .service-list {
    margin-top: 24px;
  }

  .service-list ul {
    grid-template-columns: 1fr;
  }

  .service-list li {
    min-height: 42px;
  }

  .service-modal {
    padding: 16px;
  }

  .service-modal__dialog img {
    aspect-ratio: 16 / 10;
  }

  .service-modal__content {
    padding: 22px;
  }

  .about-media img {
    min-height: 240px;
  }

  .contact-box a {
    font-size: 1rem;
  }

  .site-footer {
    flex-direction: column;
  }
}
