/* ── Variables ─────────────────────────────────────────── */
:root {
  --red:    #CC2027;
  --dark:   #111111;
  --gray:   #6B6B6B;
  --light:  #F9F9F9;
  --white:  #FFFFFF;
  --border: #E5E5E5;
  --font:   'Helvetica Neue', Helvetica, Arial, sans-serif;
  --radius: 8px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
ul { list-style: none; }

/* ── Nav ───────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 96px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.nav-logo {
  height: 86px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  height: 100%;
  align-items: center;
}

.nav-links > li {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links a {
  color: #404040;
  font-size: .825rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  border-bottom: none !important;
  transition: background .2s !important;
  letter-spacing: .04em !important;
}
.nav-cta:hover { background: #a81920 !important; opacity: 1 !important; }

/* ── Nav dropdown ───────────────────────────────────────── */
.nav-dropdown { position: relative; }

.nav-dropdown > a::after { content: ' ▾'; font-size: .65rem; vertical-align: middle; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  border: 1px solid var(--border);
  min-width: 240px;
  z-index: 200;
  list-style: none;
  padding: .4rem 0;
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #404040;
  font-size: .825rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: none;
  border-bottom: none;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu li a:hover {
  background: var(--light);
  color: var(--red);
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  background:
    linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.78)),
    url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
  color: var(--white);
  padding: 120px 5% 110px;
  display: flex;
  align-items: center;
  gap: 4rem;
  min-height: 560px;
}

.hero-text { flex: 1; min-width: 0; }

.hero-card {
  width: 240px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--red);
  padding: 1.5rem;
  align-self: center;
}

.hero-card-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: .75rem;
}

.hero-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.hero-card-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .65rem;
}

.hero-card-row svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--red);
}

.hero-card-row a {
  font-size: .85rem;
  color: var(--dark);
  word-break: break-all;
}
.hero-card-row a:hover { color: var(--red); }

.hero .hero-card p {
  color: var(--dark) !important;
  font-size: inherit;
  margin-bottom: 0;
  max-width: none;
  line-height: inherit;
  opacity: 1;
}

.hero-card .btn-red {
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  padding: 10px 16px;
  font-size: .85rem;
}

@media (max-width: 900px) {
  .hero-card { display: none; }
}

.hero-eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}

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

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}

/* ── Services + contact sidebar layout ─────────────────── */
.services-contact-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.services-main { flex: 1; min-width: 0; }

.contact-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--light);
  border-radius: var(--radius);
  border-top: 3px solid var(--red);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
}

.contact-sidebar h3 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}

.contact-sidebar-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.contact-sidebar-row {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .85rem;
}

.contact-sidebar-row svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
}

.contact-sidebar-row a,
.contact-sidebar-row span {
  font-size: .9rem;
  color: var(--dark);
  word-break: break-all;
}

.contact-sidebar-row a:hover { color: var(--red); }

@media (max-width: 900px) {
  .services-contact-layout { flex-direction: column; }
  .contact-sidebar { width: 100%; position: static; }
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }

.btn-red     { background: var(--red);   color: var(--white); }
.btn-white   { background: var(--white); color: var(--dark);  }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  opacity: 1;
}

/* ── Section shared ────────────────────────────────────── */
section { padding: 80px 5%; }

.section-label {
  display: inline-block;
  color: var(--red);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ── Work / photo grid ─────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}

.work-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  transition: opacity .25s, transform .25s;
}
.work-grid img:hover { opacity: .9; transform: scale(1.01); }

@media (max-width: 900px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-grid img { height: 180px; }
}

/* ── Services grid ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--red);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.08); }

.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.service-card p  { font-size: .9rem; color: var(--gray); }

/* ── Category cards (hub + home page) ──────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--red);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  border-color: transparent;
  border-top-color: var(--red);
}

.category-card .cat-icon {
  background: #FEF2F2;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  color: var(--red);
}
.category-card .cat-icon svg { width: 22px; height: 22px; }

.category-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.category-card p  { font-size: .875rem; color: var(--gray); flex: 1; margin-bottom: 1.25rem; line-height: 1.6; }
.category-card .cat-link {
  font-size: .825rem;
  font-weight: 700;
  color: var(--red);
}
.category-card .cat-link::after { content: ' →'; }

/* ── Page header (services, contact, sub-pages) ─────────── */
.page-header {
  position: relative;
  background: var(--dark);
  color: var(--white);
  padding: 72px 5% 64px;
  overflow: hidden;
}

.page-header.has-bg {
  background-size: cover;
  background-position: center;
}
.page-header.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
}
.page-header.has-bg > * { position: relative; }

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-top: .75rem;
}
.page-header p {
  color: rgba(255,255,255,.7);
  margin-top: .75rem;
  max-width: 520px;
  font-size: 1.05rem;
}

/* ── Service sub-page ───────────────────────────────────── */
.breadcrumb {
  padding: 14px 5%;
  background: var(--light);
  font-size: .85rem;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { margin: 0 .4rem; }

.service-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-page-grid .includes-list {
  background: var(--light);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 4px solid var(--red);
}
.service-page-grid .includes-list h3 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--dark);
}
.service-page-grid .includes-list ul { padding-left: 1rem; }
.service-page-grid .includes-list ul li {
  list-style: disc;
  font-size: .95rem;
  color: var(--gray);
  margin-bottom: .6rem;
}

@media (max-width: 640px) {
  .service-page-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Why us strip ──────────────────────────────────────── */
.why-strip {
  background: var(--dark);
  color: var(--white);
}

.why-strip .section-label {
  color: #F87171;
  background: rgba(196,30,36,.2);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(196,30,36,.3);
}

.why-strip .section-title {
  color: var(--white);
  margin-top: 1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.why-item { text-align: center; }
.why-item .icon {
  background: rgba(255,255,255,.07);
  border-radius: 12px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .75rem;
  color: var(--white);
}
.why-item .icon svg { width: 22px; height: 22px; }
.why-item h3 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; letter-spacing: .01em; }
.why-item p  { font-size: .875rem; color: rgba(255,255,255,.5); }

/* ── CTA banner ────────────────────────────────────────── */
.cta-banner {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 72px 5%;
}
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -.02em; margin-bottom: .75rem; }
.cta-banner p  { font-size: 1.05rem; margin-bottom: 2rem; opacity: .9; }

/* ── Contact page ──────────────────────────────────────── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-block { margin-bottom: 2rem; }
.contact-info-block h3 {
  font-size: .75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.contact-info-block p, .contact-info-block a {
  font-size: 1.05rem;
  color: var(--dark);
}
.contact-info-block a:hover { color: var(--red); }

.contact-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 2.5rem;
  border-top: 4px solid var(--red);
}
.contact-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: .4rem;
  color: #404040;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,30,36,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Services page detail ──────────────────────────────── */
.services-detail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.service-detail-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.service-detail-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-3px); }
.service-detail-card .card-header {
  background: var(--dark);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.service-detail-card .card-header span { font-size: 1.5rem; }
.service-detail-card .card-header h3 { font-size: 1rem; font-weight: 700; }
.service-detail-card .card-body { padding: 1.5rem; }
.service-detail-card .card-body p { font-size: .9rem; color: var(--gray); margin-bottom: 1rem; }
.service-detail-card .card-body ul { padding-left: 1rem; }
.service-detail-card .card-body ul li {
  font-size: .875rem;
  color: var(--gray);
  margin-bottom: .35rem;
  list-style: disc;
}

/* ── Footer ────────────────────────────────────────────── */
footer {
  background: #0A0A0A;
  color: #888;
  padding: 56px 5% 28px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.footer-logo { height: 44px; width: auto; filter: brightness(0) invert(1); margin-bottom: .75rem; }
.footer-tagline { font-size: .875rem; color: #444; max-width: 240px; line-height: 1.6; }

.footer-col h4 {
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .875rem; color: #555; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col p { font-size: .875rem; color: #555; margin-bottom: .4rem; }

.footer-divider { border: none; border-top: 1px solid #1a1a1a; margin-bottom: 1.25rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.footer-bottom p { font-size: .8rem; color: #333; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { flex-direction: column; padding: 72px 5% 64px; }
  .contact-section { grid-template-columns: 1fr; }
  .nav-links { gap: 1.25rem; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 520px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  .hero-trust { gap: .75rem; }
}

/* ── Photo gallery ──────────────────────────────────────── */
.gallery-section { padding: 0 5% 80px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: .75rem;
  margin-top: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  transition: opacity .2s;
}
.gallery-grid img:hover { opacity: .88; }
.gallery-grid .wide { grid-column: span 2; }

@media (max-width: 640px) {
  .gallery-grid .wide { grid-column: span 1; }
}
