:root {
  --red: #d51f3f;
  --red-dark: #9f1930;
  --blue: #194f9f;
  --blue-dark: #0f3267;
  --mint: #e5f4ef;
  --amber: #ffcc4d;
  --ink: #172033;
  --muted: #667085;
  --line: #d9e0ea;
  --soft: #f5f7fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(23, 32, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 6vw;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 224, 234, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--red);
  border: 3px solid var(--blue);
  border-radius: 8px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.brand strong,
.brand b {
  display: block;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong {
  color: var(--red);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.brand b {
  color: var(--blue);
  font-size: 1.18rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--red);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 22px rgba(213, 31, 63, 0.28);
}

.button.secondary {
  color: var(--white);
  background: rgba(15, 50, 103, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.button.light {
  color: var(--blue-dark);
  background: var(--white);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 130px);
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 50, 103, 0.9) 0%, rgba(15, 50, 103, 0.62) 44%, rgba(159, 25, 48, 0.34) 100%),
    rgba(0, 0, 0, 0.22);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, 88vw);
  min-height: calc(100vh - 130px);
  margin-left: 6vw;
  padding: 70px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--amber);
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

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

.hero-content > p:not(.eyebrow) {
  width: min(610px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.25rem;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 86px;
  padding: 20px 6vw;
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--blue);
  font-size: 1.02rem;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  width: min(1180px, 88vw);
  margin: 0 auto;
  padding: 88px 0;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 54px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.section-copy p:not(.eyebrow),
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-photo {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.services-section {
  width: 100%;
  padding-right: 6vw;
  padding-left: 6vw;
  background: var(--soft);
}

.section-heading {
  width: min(900px, 100%);
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article {
  min-height: 230px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
}

.service-grid h3,
.category-list h3 {
  color: var(--red-dark);
  font-size: 1.04rem;
}

.service-grid p,
.category-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.categories-section {
  padding-bottom: 42px;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.category-list div {
  padding: 28px;
  background: var(--mint);
  border-left: 6px solid var(--red);
  border-radius: 8px;
}

.gallery-section {
  padding-top: 46px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.88fr 0.88fr;
  gap: 16px;
}

.gallery-grid button {
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-grid button:nth-child(n + 2) {
  min-height: 420px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-grid button:hover img {
  transform: scale(1.04);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: 44px;
  align-items: center;
  padding: 86px 6vw;
  color: var(--white);
  background: var(--blue-dark);
}

.contact-copy .eyebrow {
  color: var(--amber);
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-style: normal;
}

.contact-card strong {
  color: var(--red);
  font-size: 1.35rem;
}

.contact-card a {
  color: var(--blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 6vw;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.site-footer button {
  padding: 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(15, 22, 38, 0.84);
}

.modal[hidden] {
  display: none;
}

.modal > img {
  max-width: min(1120px, 94vw);
  max-height: 82vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  min-height: 42px;
  padding: 0 16px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.privacy-panel {
  position: relative;
  width: min(620px, 94vw);
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.privacy-panel .modal-close {
  position: static;
  float: right;
  margin: -12px -12px 14px 18px;
}

.privacy-panel h2 {
  color: var(--blue-dark);
  font-size: 1.8rem;
}

.privacy-panel p {
  color: var(--muted);
}

@media (max-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
    padding: 0 5vw;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 5vw;
    left: 5vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero,
  .hero-content {
    min-height: calc(100vh - 116px);
  }

  .hero-content {
    width: 90vw;
    margin: 0 auto;
    padding: 46px 0;
  }

  .trust-strip,
  .about-section,
  .category-list,
  .gallery-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    padding: 18px 5vw;
  }

  .section {
    width: 90vw;
    padding: 62px 0;
  }

  .services-section,
  .contact-section {
    padding-right: 5vw;
    padding-left: 5vw;
  }

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

  .gallery-grid button,
  .gallery-grid button:nth-child(n + 2) {
    min-height: 320px;
  }
}

@media (max-width: 540px) {
  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 28px;
  }

  .brand b {
    font-size: 1rem;
  }

  h1 {
    font-size: 2.7rem;
  }

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

  .button,
  .nav-cta {
    width: 100%;
  }

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

  .service-grid article {
    min-height: 0;
  }

  .contact-card {
    padding: 22px;
  }
}
