:root {
  --red: #ed0012;
  --red-dark: #c70010;
  --black: #09070d;
  --ink: #17151a;
  --muted: #67616a;
  --line: #e7e2e4;
  --white: #ffffff;
  --soft: #f7f4f5;
  --shadow: 0 22px 50px rgba(9, 7, 13, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--black);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 4px solid var(--red);
  box-shadow: 0 10px 28px rgba(9, 7, 13, 0.1);
  backdrop-filter: blur(10px);
}

.top-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 38px;
  padding: 7px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #242428;
  font-size: 13px;
  font-weight: 800;
}

.top-banner a:hover {
  color: var(--red);
}

.top-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.top-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}

.top-contact-phone,
.top-contact-mail {
  font-weight: 400;
}

.top-contact-link::before {
  display: block;
  width: 16px;
  height: 16px;
  content: "";
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.top-contact-phone::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 10.8a15.2 15.2 0 0 0 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.6.6 4 .6.7 0 1.2.5 1.2 1.2v3.5c0 .7-.5 1.2-1.2 1.2A18.6 18.6 0 0 1 2 3.2C2 2.5 2.5 2 3.2 2h3.5c.7 0 1.2.5 1.2 1.2 0 1.4.2 2.7.6 4 .1.4 0 .9-.3 1.2l-1.6 2.4Z'/%3E%3C/svg%3E");
}

.top-contact-mail::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5h18a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1Zm9 8 8-6H4l8 6Zm0 2.4L4 9.4V17h16V9.4l-8 6Z'/%3E%3C/svg%3E");
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.social-links a {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  color: transparent;
  background: rgba(255, 255, 255, 0.08);
}

.social-links a::before,
.site-footer a[href*="facebook.com"]::before,
.site-footer a[href*="instagram.com"]::before,
.site-footer a[href*="x.com"]::before,
.site-footer a[href*="youtube.com"]::before {
  display: block;
  width: 17px;
  height: 17px;
  content: "";
  background: var(--white);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.social-links a:has(svg)::before,
.site-footer a:has(svg)::before {
  display: none;
}

.social-links svg,
.site-footer a[href*="facebook.com"] svg,
.site-footer a[href*="instagram.com"] svg,
.site-footer a[href*="x.com"] svg,
.site-footer a[href*="youtube.com"] svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.social-links a[href*="facebook.com"]::before,
.site-footer a[href*="facebook.com"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8.2V6.7c0-.7.2-1.1 1.2-1.1H17V2.4c-.9-.1-1.8-.2-2.7-.2-2.7 0-4.6 1.7-4.6 4.8v1.2H6.8v3.6h2.9V22h4.1V11.8h3l.5-3.6H14Z'/%3E%3C/svg%3E");
}

.social-links a[href*="instagram.com"]::before,
.site-footer a[href*="instagram.com"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 2.5h8.4c2.9 0 5.3 2.4 5.3 5.3v8.4c0 2.9-2.4 5.3-5.3 5.3H7.8c-2.9 0-5.3-2.4-5.3-5.3V7.8c0-2.9 2.4-5.3 5.3-5.3Zm0 2A3.3 3.3 0 0 0 4.5 7.8v8.4a3.3 3.3 0 0 0 3.3 3.3h8.4a3.3 3.3 0 0 0 3.3-3.3V7.8a3.3 3.3 0 0 0-3.3-3.3H7.8Zm4.2 3.1a4.4 4.4 0 1 1 0 8.8 4.4 4.4 0 0 1 0-8.8Zm0 2a2.4 2.4 0 1 0 0 4.8 2.4 2.4 0 0 0 0-4.8Zm4.8-2.9a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2Z'/%3E%3C/svg%3E");
}

.social-links a[href*="x.com"]::before,
.site-footer a[href*="x.com"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.4 10.4 22.1 2h-3.2l-6 6.6L8.2 2H2l8 11.2L2 22h3.2l6.3-6.9 5 6.9H22l-7.6-11.6Zm-2.2 2.4-1.4-2L5.8 4.4H7l4.3 6 1.4 2 5.5 7.2H17l-4.8-6.8Z'/%3E%3C/svg%3E");
}

.social-links a[href*="youtube.com"]::before,
.site-footer a[href*="youtube.com"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.6 7.2s-.2-1.7-.9-2.4c-.9-.9-1.9-.9-2.3-1C15.2 3.6 12 3.6 12 3.6s-3.2 0-6.4.2c-.5.1-1.5.1-2.3 1-.7.7-.9 2.4-.9 2.4S2.2 9.1 2.2 11v1.8c0 1.9.2 3.8.2 3.8s.2 1.7.9 2.4c.9.9 2 .9 2.5 1 1.8.2 6.2.2 6.2.2s3.2 0 6.4-.2c.5-.1 1.5-.1 2.3-1 .7-.7.9-2.4.9-2.4s.2-1.9.2-3.8V11c0-1.9-.2-3.8-.2-3.8ZM10.1 15.1V8.5l6.1 3.3-6.1 3.3Z'/%3E%3C/svg%3E");
}

.social-links a:hover {
  color: var(--white);
  background: var(--red);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 82px;
  padding: 12px clamp(18px, 5vw, 72px);
}

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

.brand-title {
  color: var(--black);
  font-size: clamp(19px, 2.1vw, 25px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.brand strong {
  display: block;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 0.95;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--red);
  font-size: 13px;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  font-weight: 800;
}

.site-header .brand-mark {
  color: var(--black);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  inset: 5px;
  content: "";
  border: 3px solid currentColor;
  transform: rotate(45deg);
}

.brand-mark::after {
  inset: 11px;
  border-width: 2px;
}

.brand-mark-large {
  width: 82px;
  font-size: 28px;
}

.brand-logo {
  width: 292px;
  height: 78px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-symbol {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  object-position: left center;
}

.contact-company .brand-logo {
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 8px;
  background: var(--white);
}

.contact-company h2 {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 4px;
  color: var(--white);
  background: #20b95d;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.whatsapp-link:not(:has(svg))::before {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  content: "";
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2.2A9.7 9.7 0 0 0 3.6 16.7L2.4 22l5.4-1.2A9.7 9.7 0 1 0 12 2.2Zm0 17.5c-1.5 0-2.9-.4-4.1-1.2l-.3-.2-3.2.7.7-3.1-.2-.3A7.7 7.7 0 1 1 12 19.7Zm4.3-5.8c-.2-.1-1.4-.7-1.7-.8-.2-.1-.4-.1-.6.1-.2.2-.7.8-.8 1-.1.2-.3.2-.5.1-.3-.1-1.1-.4-2-1.2-.7-.7-1.2-1.5-1.4-1.8-.1-.2 0-.4.1-.5l.4-.4c.1-.2.2-.3.3-.5.1-.2.1-.3 0-.5 0-.1-.6-1.4-.8-1.9-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.5.1-.7.3-.2.2-.9.9-.9 2.1s.9 2.5 1 2.7c.1.2 1.8 2.9 4.5 4 .6.3 1.1.4 1.5.5.6.2 1.2.2 1.6.1.5-.1 1.4-.6 1.6-1.1.2-.6.2-1 .1-1.1 0-.2-.2-.2-.4-.3Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.whatsapp-link svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  fill: currentColor;
}

.whatsapp-link:hover {
  background: var(--black);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(9, 7, 13, 0.18);
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--black);
}

.home-slider {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  min-height: 650px;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.slide::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(9, 7, 13, 0.86), rgba(9, 7, 13, 0.58), rgba(237, 0, 18, 0.48));
}

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

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.slide-content h1,
.slide-content h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 1;
}

.slide-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

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

.slider-controls {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 74px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.slider-prev,
.slider-next,
.slider-dot,
.slider-toggle {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  color: var(--white);
  background: rgba(11, 27, 41, 0.28);
  box-shadow: 0 12px 28px rgba(9, 7, 13, 0.22);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.slider-prev:hover,
.slider-next:hover,
.slider-dot:hover,
.slider-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(237, 0, 18, 0.72);
}

.slider-prev,
.slider-next {
  width: 62px;
  height: 62px;
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
}

.slider-toggle {
  width: 62px;
  height: 62px;
  padding: 0;
}

.slider-toggle-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.slider-toggle-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
}

.slider-toggle-icon::before,
.slider-toggle-icon::after {
  position: absolute;
  top: 2px;
  bottom: 2px;
  width: 4px;
  content: "";
  background: currentColor;
}

.slider-toggle-icon::before {
  left: 3px;
}

.slider-toggle-icon::after {
  right: 3px;
}

.slider-toggle.is-paused .slider-toggle-icon::before {
  top: 1px;
  bottom: auto;
  left: 4px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
  background: transparent;
}

.slider-toggle.is-paused .slider-toggle-icon::after {
  display: none;
}

.slider-dots {
  position: absolute;
  display: none;
  gap: 8px;
  padding: 0 4px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
}

.slider-dot.is-active {
  width: 30px;
  background: var(--red);
}

.quick-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 72px);
  margin-top: -44px;
  position: relative;
  z-index: 4;
  background: transparent;
}

.quick-service {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 128px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(9, 7, 13, 0.08);
  border-bottom: 4px solid var(--red);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(9, 7, 13, 0.12);
}

.quick-service::after {
  justify-self: end;
  content: "→";
  color: var(--red);
  font-size: 24px;
  font-weight: 900;
}

.quick-service-icon {
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

.quick-service strong,
.quick-service small {
  display: block;
}

.quick-service strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
}

.quick-service small {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.35;
}

.quick-service:hover {
  color: var(--white);
  border-color: var(--black);
  background: var(--black);
  transform: translateY(-3px);
}

.quick-service:hover small,
.quick-service:hover::after {
  color: rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(237, 0, 18, 0.92), rgba(237, 0, 18, 0.72)),
    url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: -20vw;
  width: 62vw;
  height: 62vw;
  min-width: 520px;
  min-height: 520px;
  content: "";
  background: rgba(9, 7, 13, 0.98);
  clip-path: polygon(20% 0, 100% 0, 82% 100%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  gap: 30px;
  align-items: center;
  min-height: 690px;
  padding: 72px clamp(18px, 5vw, 72px);
}

.hero-panel {
  max-width: 760px;
  padding: clamp(24px, 5vw, 48px);
  background: var(--black);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 94% 0, 84% 100%, 0 100%);
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-panel p {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid transparent;
  font-weight: 800;
}

.btn-light {
  color: var(--red);
  background: var(--white);
}

.btn-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

.service-sash {
  justify-self: stretch;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  box-shadow: var(--shadow);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.service-sash ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0 0 0 26px;
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.1;
}

.section {
  padding: clamp(58px, 9vw, 108px) clamp(18px, 5vw, 72px);
}

.page-hero {
  padding: clamp(64px, 10vw, 118px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 7, 13, 0.92), rgba(9, 7, 13, 0.8)),
    url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.page-hero-red {
  background:
    linear-gradient(90deg, rgba(237, 0, 18, 0.94), rgba(237, 0, 18, 0.78)),
    url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 0.98;
}

.page-hero-red .eyebrow {
  color: var(--black);
}

.services-page-hero {
  background:
    linear-gradient(90deg, rgba(9, 7, 13, 0.86), rgba(9, 7, 13, 0.72), rgba(237, 0, 18, 0.48)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.section-white {
  background: var(--white);
}

.section-red {
  color: var(--white);
  background: var(--red);
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-section h2 {
  font-size: clamp(30px, 4.8vw, 54px);
}

.section-heading-light .eyebrow {
  color: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.services-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 230px;
  overflow: hidden;
  padding: 0 0 22px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--red);
  border-radius: 10px;
  background: var(--soft);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 0 18px;
  border-radius: 0;
  object-fit: cover;
}

.service-card span {
  display: block;
  padding: 0 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3 {
  margin: 20px 18px 12px;
  font-size: 24px;
}

.service-card p {
  margin: 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.service-detail-section {
  display: grid;
  gap: 34px;
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.service-intro h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
}

.service-intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  padding: clamp(20px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(9, 7, 13, 0.08);
}

.service-detail-alt .service-detail-media {
  order: 2;
}

.service-detail-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  object-fit: cover;
}

.service-detail-content h2 {
  margin: 0 0 24px;
  font-size: clamp(28px, 4vw, 46px);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border-left: 4px solid var(--red);
  border-radius: 10px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 16px;
  content: "+";
  color: var(--red);
  font-weight: 900;
}

.service-areas {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-left: 6px solid var(--red);
  border-radius: 8px;
  background: var(--soft);
}

.about-areas {
  border-right: 0;
  border-bottom: 0;
  border-left-width: 6px;
}

.service-areas-heading {
  display: grid;
  gap: 8px;
}

.service-areas-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
}

.area-list span:first-child {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.work-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 22px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.work-item {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
}

.gallery-grid-page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-grid-page .work-item {
  min-height: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(38, 70, 83, 0.18);
  box-shadow: 0 10px 22px rgba(38, 70, 83, 0.13);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.gallery-grid-page .work-item::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(0deg, rgba(9, 7, 13, 0.62), transparent 48%);
  opacity: 0.72;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery-grid-page .work-item:hover::before {
  opacity: 0.92;
}

.gallery-grid-page .work-item:hover {
  border-color: rgba(237, 0, 18, 0.58);
  box-shadow:
    0 0 0 2px rgba(237, 0, 18, 0.12),
    0 14px 30px rgba(237, 0, 18, 0.14),
    0 18px 34px rgba(9, 7, 13, 0.14);
  transform: translateY(-3px);
}

.gallery-section {
  display: grid;
  gap: 34px;
}

.work-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.work-category-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.work-category-link:hover {
  background: var(--white);
  color: var(--black);
}

.gallery-folder {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(9, 7, 13, 0.08);
}

.gallery-folder-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.gallery-folder-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
}

.video-folder {
  background: var(--black);
  color: var(--white);
}

.video-folder .gallery-folder-heading {
  border-color: rgba(255, 255, 255, 0.14);
}

.work-item-large {
  grid-row: span 2;
}

.image-zoom {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
}

.image-zoom:focus-visible {
  outline: 4px solid var(--white);
  outline-offset: -8px;
}

.work-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-grid-page .work-item img {
  min-height: 0;
  filter: grayscale(1) contrast(0.96);
  transition:
    filter 0.35s ease,
    transform 0.35s ease;
}

.work-item:hover img {
  transform: scale(1.06);
}

.gallery-grid-page .work-item:hover img {
  filter: grayscale(0) saturate(1) opacity(1);
  transform: scale(1.13);
}

.work-item figcaption {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 10px 12px;
  color: var(--white);
  background: rgba(9, 7, 13, 0.88);
  font-weight: 800;
}

.gallery-grid-page .work-item figcaption {
  right: 12px;
  bottom: 12px;
  left: 12px;
  max-width: none;
  border-left: 4px solid var(--red);
  border-radius: 4px;
  background: rgba(9, 7, 13, 0.28);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.18);
}

.work-link-card {
  display: block;
  color: var(--white);
}

.work-link-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 10px 12px;
  background: rgba(9, 7, 13, 0.88);
  font-weight: 900;
}

.video-box {
  display: grid;
  align-content: start;
  background: var(--black);
  box-shadow: var(--shadow);
}

.video-box video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--black);
}

.video-caption {
  padding: 22px;
}

.video-caption h3 {
  margin: 0 0 8px;
  font-size: 25px;
}

.video-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
  background: var(--soft);
}

.split-section p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  color: var(--ink);
  background: var(--white);
}

.about-story-media {
  position: relative;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(11, 18, 32, 0.14);
}

.about-story-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-story-content {
  display: grid;
  max-width: 980px;
  gap: 18px;
}

.about-story h2 {
  margin: 0;
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
}

.about-story p {
  margin: 0;
  max-width: 880px;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.72;
}

.about-story .about-regions {
  padding-top: 4px;
  color: var(--ink);
  font-weight: 700;
}

.about-story .about-regions strong {
  color: var(--red);
}

.area-list-on-dark {
  margin-top: 12px;
}

.area-list-on-dark span {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.area-list-on-dark span:first-child {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(250px, 0.65fr);
  gap: 18px;
  padding: clamp(42px, 7vw, 72px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--black);
}

.contact-band-page {
  min-height: 420px;
}

.contact-card-main {
  padding: clamp(26px, 4vw, 42px);
  background: var(--red);
  clip-path: none;
}

.contact-card .eyebrow {
  color: var(--black);
}

.contact-card a {
  display: inline-block;
  margin-top: 14px;
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 900;
  line-height: 1;
}

.contact-list {
  display: grid;
  gap: 12px;
  align-content: center;
}

.contact-list a {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.contact-map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 24px;
  padding: clamp(52px, 8vw, 86px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 7, 13, 0.96), rgba(37, 37, 41, 0.96)),
    var(--black);
  border-top: 4px solid var(--red);
}

.contact-map-page {
  border-top: 0;
}

.contact-info-panel {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.contact-company {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-company .brand-mark {
  color: var(--white);
}

.contact-company h2 {
  margin: 0;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1;
}

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

.contact-action {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-action:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.13);
}

.contact-action strong,
.contact-action small {
  display: block;
}

.contact-action strong {
  color: var(--white);
  font-size: 18px;
}

.contact-action small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.contact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: var(--red);
}

.contact-icon::before {
  width: 20px;
  height: 20px;
  content: "";
  background: var(--white);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.contact-icon-location::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E");
}

.contact-icon-phone::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 10.8a15.2 15.2 0 0 0 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.6.6 4 .6.7 0 1.2.5 1.2 1.2v3.5c0 .7-.5 1.2-1.2 1.2A18.6 18.6 0 0 1 2 3.2C2 2.5 2.5 2 3.2 2h3.5c.7 0 1.2.5 1.2 1.2 0 1.4.2 2.7.6 4 .1.4 0 .9-.3 1.2l-1.6 2.4Z'/%3E%3C/svg%3E");
}

.contact-icon-mail::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5h18a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1Zm9 8 8-6H4l8 6Zm0 2.4L4 9.4V17h16V9.4l-8 6Z'/%3E%3C/svg%3E");
}

.directions-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

.directions-link:hover {
  background: #b9000d;
}

.map-panel {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #1b1b1f;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: grayscale(0.2) contrast(1.02);
}

address {
  grid-column: 1 / -1;
  padding: 18px;
  font-style: normal;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 800;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  color: var(--white);
  background: #252529;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 52px);
  padding: clamp(42px, 7vw, 70px) clamp(18px, 5vw, 72px);
  border-top: 4px solid var(--red);
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid > div:last-child,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 14px;
}

.footer-grid > div:last-child h2,
.footer-social h2 {
  width: 100%;
}

.footer-logo {
  width: min(220px, 100%);
  height: 64px;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  line-height: 1;
}

.site-footer h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 18px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.76);
  /* font-weight: 800; */
}

.site-footer a[href*="facebook.com"],
.site-footer a[href*="instagram.com"],
.site-footer a[href*="x.com"],
.site-footer a[href*="youtube.com"] {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: transparent;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  transition:
    background 0.22s ease,
    transform 0.22s ease;
}

.footer-social a[href*="facebook.com"],
.footer-social a[href*="instagram.com"],
.footer-social a[href*="x.com"],
.footer-social a[href*="youtube.com"] {
  font-size: 0;
}

.footer-social a[href*="facebook.com"] svg,
.footer-social a[href*="instagram.com"] svg,
.footer-social a[href*="x.com"] svg,
.footer-social a[href*="youtube.com"] svg {
  display: none;
}

.footer-social a[href*="facebook.com"]::before,
.footer-social a[href*="instagram.com"]::before,
.footer-social a[href*="x.com"]::before,
.footer-social a[href*="youtube.com"]::before {
  display: block;
  width: 20px;
  height: 20px;
  background: var(--white);
}

.site-footer a[href*="facebook.com"]:hover,
.site-footer a[href*="instagram.com"]:hover,
.site-footer a[href*="x.com"]:hover,
.site-footer a[href*="youtube.com"]:hover {
  border-color: rgba(237, 0, 18, 0.6);
  background: var(--red);
  transform: translateY(-2px);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: #1b1b1f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-link {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.footer-top-link:hover {
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-2px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px clamp(18px, 5vw, 48px) 32px;
  background: rgba(9, 7, 13, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1120px, 100%);
  max-height: calc(100vh - 124px);
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 48px;
  height: 56px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(237, 0, 18, 0.92);
  font-size: 30px;
  font-weight: 900;
  transform: translateY(-50%);
  cursor: pointer;
}

.lightbox-prev {
  left: clamp(12px, 3vw, 34px);
}

.lightbox-next {
  right: clamp(12px, 3vw, 34px);
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: var(--red-dark);
}

@media (max-width: 1020px) {
  .hero-content,
  .work-layout,
  .about-story,
  .contact-map-section,
  .split-section,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .about-story-media {
    min-height: 0;
  }

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

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

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

  .service-detail-alt .service-detail-media {
    order: 0;
  }

  .quick-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    padding-top: 18px;
    padding-bottom: 18px;
    background: var(--soft);
  }

  .hero-panel,
  .service-sash,
  .contact-card-main {
    clip-path: none;
  }

  .hero::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px clamp(18px, 5vw, 72px) 18px;
    background: var(--white);
    box-shadow: 0 18px 32px rgba(9, 7, 13, 0.14);
  }

  .whatsapp-link {
    width: 44px;
    margin-left: auto;
    padding: 0;
    overflow: hidden;
    font-size: 0;
  }

  .whatsapp-link svg,
  .whatsapp-link:not(:has(svg))::before {
    margin-right: 0;
  }

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

  .site-nav a {
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(9, 7, 13, 0.12);
  }

  .home-slider,
  .slide {
    min-height: 620px;
  }

  .slider-controls {
    right: auto;
    left: clamp(18px, 5vw, 72px);
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .hero-logo {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-mark-large {
    width: 68px;
  }

  .service-sash ul {
    font-size: 22px;
  }

  .services-grid,
  .services-grid-wide,
  .gallery-grid,
  .gallery-grid-page {
    grid-template-columns: 1fr;
  }

  .about-story-media {
    min-height: 0;
  }

  .quick-services {
    grid-template-columns: 1fr;
  }

  .quick-service {
    min-height: 102px;
  }

  .gallery-folder-heading {
    align-items: start;
    flex-direction: column;
  }

  .work-item-large {
    grid-row: auto;
  }

  .contact-card a {
    font-size: clamp(27px, 9vw, 42px);
  }

  .map-panel,
  .map-panel iframe {
    min-height: 330px;
  }

  .site-footer {
    display: block;
  }

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

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

@media (max-width: 420px) {
  .top-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-links {
    justify-content: flex-start;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand small {
    font-size: 11px;
  }

  .brand-mark {
    width: 42px;
    font-size: 14px;
  }

  .brand-logo {
    width: 154px;
    height: 46px;
  }

  .brand-symbol {
    width: 42px;
    height: 42px;
  }

  .brand-title {
    font-size: 17px;
  }

  .header-main {
    gap: 8px;
    min-height: 72px;
    padding: 10px 12px;
  }

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