:root {
  --red: #C41010;
  --red-hover: #A30D0D;
  --red-light: #FEF2F2;
  --black: #1A1A1A;
  --gray-900: #2D2D2D;
  --gray-700: #555;
  --gray-500: #888;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50: #F9FAFB;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  background: var(--white);
  color: var(--gray-700);
  overflow-x: clip;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lexend', system-ui, sans-serif;
  color: var(--black);
  font-weight: 600;
}

a { color: inherit; }

.topbar {
  background: var(--red);
  color: white;
  font-size: 0.8125rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 51;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.375rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.topbar-left a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.topbar-left a:hover { opacity: 0.85; }
.topbar-left svg { opacity: 0.8; }

.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.3); }

.topbar-right {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

nav {
  position: fixed;
  top: 32px;
  width: 100%;
  z-index: 50;
  background: var(--black);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem;
}

.nav-logo img { height: 40px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 1.75rem; }

.nav-links > a, .nav-dropdown-trigger {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links > a:hover, .nav-dropdown-trigger:hover { color: white; }

.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 0.3rem; cursor: pointer; }
.nav-dropdown-trigger svg { transition: transform 0.2s; opacity: 0.7; }
.nav-dropdown:hover .nav-dropdown-trigger svg, .nav-dropdown:focus-within .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  margin-top: 1rem;
  z-index: 60;
}

.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu:before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  height: 1rem;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 0.875rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a:hover, .nav-dropdown-menu a.active {
  background: rgba(255,255,255,0.04);
  color: var(--red);
}

.mobile-menu a.mobile-sub {
  padding-left: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.mobile-menu a.mobile-sub:before {
  content: '—';
  margin-right: 0.5rem;
  color: var(--red);
}

.nav-cta {
  background: var(--red);
  color: white;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Lexend', sans-serif;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--red-hover); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span { display: block; width: 22px; height: 2px; background: white; transition: transform 0.3s, opacity 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--black);
  z-index: 48;
  flex-direction: column;
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu.open {
  max-height: 500px;
  padding: 5.5rem 1.5rem 2rem;
}

.mobile-menu a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--red); }

.mobile-cta {
  background: var(--red);
  color: white;
  text-align: center;
  border-radius: 6px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: none;
  padding: 0.875rem;
  font-weight: 600;
}

.mobile-cta:hover { color: white; opacity: 0.9; }

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.65; }
.hero-overlay { position: absolute; inset: 0; background: rgba(26,26,26,0.35); }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10rem 2rem 6rem;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Lexend', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.hero h1 {
  font-size: clamp(2.125rem, 5.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 650px;
  color: white;
}

.hero h1 span { color: var(--red); }

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--red);
  color: white;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: 'Lexend', sans-serif;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}

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

.btn-white {
  color: white;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: 'Lexend', sans-serif;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  background: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
}

.btn-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

.hero-stats {
  display: flex;
  gap: 3.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat h3 { font-size: 2.5rem; line-height: 1; color: white; }
.hero-stat h3 span { color: var(--red); }
.hero-stat p { font-size: 0.8125rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-top: 0.25rem; }

.partners {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 2.25rem 0;
}

.partners-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.partners-label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); white-space: nowrap; }
.partners-logos { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; justify-content: center; }
.partners-logos img { height: 28px; width: auto; opacity: 0.4; transition: opacity 0.3s; }
.partners-logos img:hover { opacity: 0.8; }

.section-pad { padding: 5.5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; }

.bg-gray { background: var(--gray-50); }

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Lexend', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.section-title { font-size: clamp(1.875rem, 3.5vw, 2.5rem); line-height: 1.15; margin-bottom: 0.875rem; }
.section-desc { font-size: 1.0625rem; color: var(--gray-700); max-width: 540px; line-height: 1.7; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  cursor: pointer;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.service-card:hover img { transform: scale(1.04); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.35) 50%, rgba(26,26,26,0.1) 100%);
  border-radius: 8px;
}

.service-card-content { position: relative; z-index: 2; padding: 2rem; max-width: 520px; }
.service-card h3 { font-size: 1.375rem; color: white; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9375rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 1rem; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: 'Lexend', sans-serif;
  text-decoration: none;
  transition: gap 0.2s;
}

.service-link:hover { gap: 0.625rem; }

.service-card.wide { grid-column: span 2; }

.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4.5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 8px; }

.about-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--red);
  padding: 1.25rem 1.75rem;
  border-radius: 8px;
}

.about-badge h4 { font-size: 2rem; line-height: 1; color: white; }
.about-badge p { font-size: 0.75rem; color: rgba(255,255,255,0.7); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

.about-text h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); line-height: 1.15; margin-bottom: 1.25rem; }
.about-text h2 span { color: var(--red); }
.about-text > p { font-size: 1.0625rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 2rem; }

.about-features { display: flex; flex-direction: column; gap: 0.75rem; }

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: var(--gray-50);
  border-left: 3px solid var(--red);
  border-radius: 0 6px 6px 0;
}

.about-feature-num { font-size: 1.375rem; font-weight: 700; color: var(--red); line-height: 1; min-width: 32px; }
.about-feature h4 { font-size: 0.9375rem; margin-bottom: 0.125rem; }
.about-feature p { font-size: 0.875rem; color: var(--gray-700); }

.about-cta { margin-top: 2rem; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.process-step {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.process-step:hover {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(196,16,16,0.08);
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--red-light);
  color: var(--red);
  font-family: 'Lexend', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-step h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.875rem; color: var(--gray-700); line-height: 1.6; }

.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.gallery-strip-item { overflow: hidden; }
.gallery-strip img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; transition: transform 0.5s; }
.gallery-strip-item:hover img { transform: scale(1.05); }

.cta-section-wrap {
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
}

.cta-section-wrap > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.cta-box {
  position: relative;
  z-index: 2;
  background: var(--black);
  padding: 3.5rem 4rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-box h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); color: white; margin-bottom: 0.375rem; }
.cta-box p { font-size: 1.0625rem; color: rgba(255,255,255,0.6); }

.contact-section { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; }
.contact-info-block { display: flex; flex-direction: column; gap: 1.75rem; padding-top: 0.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }

.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-light);
  border-radius: 8px;
  flex-shrink: 0;
}

.contact-detail-icon svg { color: var(--red); }
.contact-detail h4 { font-size: 0.9375rem; margin-bottom: 0.125rem; }
.contact-detail p, .contact-detail a { font-size: 0.9375rem; color: var(--gray-700); text-decoration: none; transition: color 0.2s; }
.contact-detail a:hover { color: var(--red); }

.contact-map { margin-top: 0.5rem; border-radius: 8px; overflow: hidden; border: 1px solid var(--gray-200); }
.contact-map iframe { display: block; border: none; width: 100%; }

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  max-width: 100%;
  overflow: hidden;
  background: var(--white);
  padding: 2.25rem;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.125rem; }

#contact-form label { display: block; font-size: 0.8125rem; font-weight: 600; font-family: 'Lexend', sans-serif; color: var(--gray-700); margin-bottom: 0.375rem; }

#contact-form input, #contact-form textarea, #contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  color: var(--black);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#contact-form input:focus, #contact-form textarea:focus, #contact-form select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,16,16,0.08);
  background: var(--white);
}

#contact-form input::placeholder, #contact-form textarea::placeholder { color: var(--gray-500); }
#contact-form textarea { resize: vertical; min-height: 120px; }
#contact-form select { cursor: pointer; }

#contact-form button[type="submit"] {
  align-self: flex-start;
  background: var(--red);
  color: white;
  padding: 1rem 2.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: 'Lexend', sans-serif;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

#contact-form button[type="submit"]:hover { background: var(--red-hover); }
#contact-form .g-recaptcha { transform-origin: left center; max-width: 100%; }

.site-footer { background: var(--black); color: rgba(255,255,255,0.5); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }

.footer-brand img { height: 32px; width: auto; margin-bottom: 1.25rem; display: block; }
.footer-brand p { font-size: 0.9375rem; line-height: 1.6; max-width: 260px; }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-social a:hover { color: var(--red); }

.footer-col h4 { font-size: 0.75rem; font-weight: 600; font-family: 'Lexend', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; color: white; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { font-size: 0.9375rem; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }

.footer-contact-item { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 0.75rem; }
.footer-contact-item svg { flex-shrink: 0; color: var(--red); }
.footer-contact-item a, .footer-contact-item span { font-size: 0.9375rem; text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--red); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; }
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.3); }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.wide { grid-column: span 2; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 480px; margin: 0 auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .cta-box { flex-direction: column; text-align: center; padding: 3rem 2rem; }
}

@media (max-width: 768px) {
  .topbar-right { display: none; }
  .topbar-inner { justify-content: center; padding: 0.375rem 1.25rem; }
  .topbar-left { gap: 0.75rem; }
  .topbar-left svg { display: none; }
  .topbar-left a { font-size: 0.75rem; }
  .nav-inner { padding: 0.625rem 1.25rem; }
  .hero-inner { padding: 8rem 1.5rem 4rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .section-pad { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.wide { grid-column: span 1; }
  .service-card { min-height: 300px; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .partners-inner { flex-direction: column; gap: 1.25rem; }
  .partners-logos { gap: 1.75rem; }
  .about-badge { right: 0; bottom: 0; position: relative; display: inline-block; margin-top: -1rem; border-radius: 6px; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  #contact-form { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-inner { padding: 7rem 1.25rem 3rem; }
  .nav-logo img { height: 32px; }
}

@media (max-width: 640px) {
  section, section > div, section > div > div, section > div > div > div { max-width: 100%; box-sizing: border-box; }
  .contact-grid > div { min-width: 0; max-width: 100%; }
}

@media (max-width: 400px) { #contact-form .g-recaptcha { transform: scale(0.85); } }
@media (max-width: 340px) { #contact-form .g-recaptcha { transform: scale(0.75); } }

.nav-links a.active { color: white; position: relative; }
.nav-links a.active:after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--red); }
.mobile-menu a.active { color: var(--red); }

.page-hero {
  position: relative;
  padding: 10rem 2rem 5rem;
  background: var(--black);
  overflow: hidden;
}

.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(130deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.6) 50%, rgba(196,16,16,0.25) 100%); }

.page-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }

.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
  font-family: 'Lexend', sans-serif;
  letter-spacing: 0.02em;
}

.breadcrumbs a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover { color: white; }
.breadcrumbs .sep { color: rgba(255,255,255,0.3); }
.breadcrumbs .current { color: var(--red); }

.page-hero-tag {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 0.375rem 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: 'Lexend', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  border-radius: 4px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.375rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 780px;
  font-weight: 700;
}

.page-hero h1 span { color: var(--red); }

.page-hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  line-height: 1.7;
}

.intro-block { max-width: 780px; margin: 0 auto 4rem; text-align: center; }
.intro-block .section-label { margin-left: auto; margin-right: auto; display: inline-block; }
.intro-block h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 1rem; line-height: 1.2; }
.intro-block p { font-size: 1.0625rem; color: var(--gray-700); line-height: 1.75; }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.service-detail.reverse { grid-template-columns: 1.1fr 1fr; }
.service-detail.reverse .service-detail-img { order: 2; }

.service-detail-img { position: relative; }
.service-detail-img > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 10px; }

.service-detail-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--red);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail-text h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1.25rem; line-height: 1.15; }
.service-detail-text h2 span { color: var(--red); }
.service-detail-text > p { font-size: 1.0625rem; line-height: 1.75; margin-bottom: 1.75rem; color: var(--gray-700); }

.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 2rem; }

.service-feature {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1rem 1.125rem;
  background: var(--gray-50);
  border-radius: 6px;
  border-left: 3px solid var(--red);
}

.service-feature-icon { color: var(--red); flex-shrink: 0; margin-top: 0.125rem; }
.service-feature h4 { font-size: 0.9375rem; margin-bottom: 0.125rem; }
.service-feature p { font-size: 0.8125rem; color: var(--gray-700); line-height: 1.5; margin: 0; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.check-list li {
  padding-left: 2rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.check-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 20px;
  height: 20px;
  background: var(--red-light);
  border-radius: 4px;
}
.check-list li:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 0.7em;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.team-member {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: var(--red);
}

.team-avatar {
  padding: 2.25rem 1.75rem 1rem;
  display: flex;
  justify-content: center;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.team-avatar-icon {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
}

.team-avatar-icon svg { width: 48px; height: 48px; }

.team-info { padding: 1.75rem; }
.team-role {
  display: block;
  color: var(--red);
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: 'Lexend', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.team-info h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.team-contact { display: flex; flex-direction: column; gap: 0.625rem; }
.team-contact a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--gray-700);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.team-contact a:hover { color: var(--red); }
.team-contact svg { color: var(--red); flex-shrink: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 0.875rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  background: var(--gray-100);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.big { grid-column: span 2; grid-row: span 2; }

.gallery-item-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(26,26,26,0.85), transparent);
  color: white;
  font-family: 'Lexend', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-caption { opacity: 1; }

.gallery-category {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.gallery-category-tag {
  padding: 0.5rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: 'Lexend', sans-serif;
  color: var(--gray-700);
}

.gallery-category-tag.active { background: var(--red); color: white; border-color: var(--red); }

.job-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2.5rem;
  position: sticky;
  top: 6rem;
}

@media (max-width: 1024px) { .job-card { position: static; } }

.job-card h2 { font-size: 1.75rem; margin-bottom: 1rem; line-height: 1.2; }
.job-card > p { font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; color: var(--gray-700); }

.job-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Lexend', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 1rem;
}

.job-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem; padding-top: 1.75rem; border-top: 1px solid var(--gray-200); }

.job-tag {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: 'Lexend', sans-serif;
  border-radius: 100px;
}

.job-meta { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-200); }
.job-meta-item { display: flex; gap: 0.75rem; align-items: center; font-size: 0.9375rem; }
.job-meta-item svg { color: var(--red); flex-shrink: 0; }
.job-meta-item strong { font-family: 'Lexend', sans-serif; font-weight: 600; color: var(--black); font-size: 0.9375rem; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.value-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.3s;
}

.value-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(196,16,16,0.08);
  transform: translateY(-3px);
}

.value-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-light);
  border-radius: 10px;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.value-card h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9375rem; color: var(--gray-700); line-height: 1.65; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin: 4rem 0;
}

.stat-row-item h3 {
  font-size: 2.75rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.375rem;
  font-weight: 700;
}

.stat-row-item p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: 'Lexend', sans-serif;
  color: var(--gray-700);
}

.story-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4.5rem; align-items: center; }
.story-img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 10px; }

.story-img { position: relative; }
.story-img-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--red);
  color: white;
  padding: 0.5rem 1rem;
  font-family: 'Lexend', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
}

.related-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.related-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.related-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.related-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-light);
  color: var(--red);
  border-radius: 8px;
  flex-shrink: 0;
}

.related-card > div:not(.related-card-icon):not(.related-card-arrow) { flex: 1; min-width: 0; }
.related-card h4 { font-size: 1rem; margin-bottom: 0.125rem; }
.related-card p { font-size: 0.8125rem; color: var(--gray-500); }
.related-card-arrow {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  background: var(--red-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.2s, background 0.2s;
}
.related-card-arrow svg { width: 16px; height: 16px; }
.related-card:hover .related-card-arrow { background: var(--red); color: white; transform: translateX(3px); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-side-info {
  background: var(--black);
  color: white;
  padding: 2.5rem;
  border-radius: 12px;
}

.contact-side-info h3 { color: white; font-size: 1.375rem; margin-bottom: 0.75rem; }
.contact-side-info > p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; font-size: 0.9375rem; }

.contact-side-list { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-side-item { display: flex; gap: 0.875rem; align-items: flex-start; }
.contact-side-item-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  border-radius: 8px;
  flex-shrink: 0;
  color: white;
}

.contact-side-item h4 { color: white; font-size: 0.8125rem; font-weight: 600; font-family: 'Lexend', sans-serif; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; opacity: 0.5; }
.contact-side-item p, .contact-side-item a { font-size: 0.9375rem; color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.contact-side-item a:hover { color: var(--red); }

.contact-hours {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-hours h4 { color: white; font-size: 0.8125rem; font-weight: 600; font-family: 'Lexend', sans-serif; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; opacity: 0.5; }
.contact-hours p { font-size: 0.9375rem; color: rgba(255,255,255,0.85); }

.full-map { margin-top: 4rem; border-radius: 12px; overflow: hidden; border: 1px solid var(--gray-200); }
.full-map iframe { display: block; width: 100%; height: 420px; border: none; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.news-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.06); }
.news-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.news-card-body { padding: 1.75rem; }
.news-card .news-date { font-size: 0.75rem; color: var(--red); font-weight: 700; font-family: 'Lexend', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.news-card h3 { font-size: 1.125rem; margin-bottom: 0.625rem; line-height: 1.35; }
.news-card p { font-size: 0.9375rem; color: var(--gray-700); line-height: 1.6; }

.services-overview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.service-overview-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.3s;
}

.service-overview-card:hover {
  border-color: var(--red);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
}

.service-overview-img { aspect-ratio: auto; position: relative; min-height: 240px; }
.service-overview-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.service-overview-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.service-overview-body .service-num { font-size: 0.75rem; color: var(--red); font-weight: 700; font-family: 'Lexend', sans-serif; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.service-overview-body h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.service-overview-body p { font-size: 0.9375rem; color: var(--gray-700); line-height: 1.65; margin-bottom: 1.25rem; }

.service-overview-link {
  color: var(--red);
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.2s;
}

.service-overview-link:hover { gap: 0.625rem; }

.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: 'Lexend', sans-serif;
  color: var(--black);
}

.cert-badge svg { color: var(--red); }

@media (max-width: 1024px) {
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail.reverse .service-detail-img { order: 0; }
  .service-features { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.big { grid-column: span 2; grid-row: span 2; }
  .job-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 2rem; padding: 2.5rem 0; margin: 3rem 0; }
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-img { max-width: 480px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-overview-grid { grid-template-columns: 1fr; }
  .service-overview-card { grid-template-columns: 1fr; }
  .service-overview-img { min-height: 200px; }
  .related-services { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 8rem 2rem 4rem; }
  .full-map iframe { height: 360px; }
  .section-pad { padding: 4.5rem 2rem; }
  .topbar-right { display: none; }
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.wide, .gallery-item.big { grid-column: span 1; grid-row: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .values-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); padding: 2rem 0; margin: 2.5rem 0; }
  .stat-row-item h3 { font-size: 2rem; }
  .news-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .page-hero h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .contact-side-info { padding: 1.75rem; }
  .job-card { padding: 1.75rem; }
  .full-map iframe { height: 320px; }
}
