:root {
  --red: #f95e5f;
  --red-dark: #e24b4c;
  --ink: #2a2a2a;
  --heading: #1a1a1a;
  --muted: #5c5c5c;
  --bg: #fff;
  --bg-alt: #f6f4f3;
  --dark: #1a1819;
  --header: #222021;
  --white: #fff;
  --max: 1040px;
  --wide: 1180px;
  --shadow: 0 10px 30px rgba(26, 24, 25, .08);
  --radius: 12px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Open Sans", Poppins, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--red); text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4 {
  font-family: Montserrat, sans-serif;
  color: var(--heading);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
}

p { margin: 0 0 1em; }

.wrap { width: min(92%, var(--max)); margin: 0 auto; }
.wrap-wide { width: min(94%, var(--wide)); }
.center { text-align: center; }
.center .btn { margin-top: .4em; }

::selection { background: rgba(249, 94, 95, .22); }

.lead,
.prose-narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}
.lead { text-align: center; margin-bottom: 1.6em; }
.prose-narrow { margin-bottom: 2em; }
.lead p:last-child,
.prose-narrow p:last-child { margin-bottom: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}

.header-top {
  width: min(94%, 1200px);
  margin: 0 auto;
  padding: 10px 4px 0;
}

.header-inner {
  width: min(94%, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  position: relative;
  padding: 6px 4px 12px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red) !important;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  fill: var(--red);
  flex-shrink: 0;
}

.header-phone:hover { color: #fff !important; }
.header-phone:hover svg { fill: #fff; }

.logo { display: flex; align-items: center; flex-shrink: 0; }

.logo img {
  width: 168px;
  height: auto;
  mix-blend-mode: lighten;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: #f3f3f3;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 10px 13px;
  display: block;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--red);
  background: transparent;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 11px;
  border-radius: 2px;
  transition: .2s;
}

.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: rotate(45deg); top: 0; }
body.nav-open .nav-toggle span::after { transform: rotate(-45deg); top: 0; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 14px 32px;
  background: var(--red);
  box-shadow: 0 10px 22px rgba(249, 94, 95, .32);
  transition: .22s ease;
}

.btn:hover {
  background: var(--red-dark);
  color: #fff;
  box-shadow: 0 12px 26px rgba(226, 75, 76, .4);
}

.btn-light {
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  box-shadow: none;
}

.btn-light:hover {
  background: #fff;
  color: var(--red);
  border-color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

/* Hero */
.hero {
  min-height: 78vh;
  background-size: cover;
  background-position: center 42%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 11, .5);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(92%, 880px);
  padding: 96px 16px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(32px, 5.4vw, 56px);
  font-weight: 700;
  text-shadow: 0 8px 30px rgba(0,0,0,.35);
  margin-bottom: .35em;
}

.hero h2 {
  color: rgba(255,255,255,.95);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 auto 1.8em;
  max-width: 32em;
  text-shadow: 0 4px 16px rgba(0,0,0,.3);
}

.page-hero {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34,32,33,.55), rgba(34,32,33,.78));
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(30px, 4.4vw, 44px);
  padding: 88px 16px;
  text-shadow: 0 6px 24px rgba(0,0,0,.35);
}

/* Sections */
.section { padding: 88px 0 72px; }
.section-alt { background: var(--bg-alt); }
.section-faq { background: #fff; }

.section-title {
  text-align: center;
  font-size: clamp(22px, 3vw, 30px);
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--red);
  margin: 14px auto 32px;
  border-radius: 2px;
}

.section-title.left { text-align: left; }
.section-title.left::after { margin-left: 0; }
.section-title.left + .prose-narrow {
  margin-left: 0;
  margin-right: auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
  margin: 48px 0 40px;
}

.features article { text-align: center; }

.features h4 {
  font-size: 18px;
  margin: 0 0 .5em;
}

.features p {
  margin: 0 auto;
  max-width: 280px;
  color: var(--muted);
  font-size: 15px;
}

.icon {
  color: var(--red);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}

.icon svg {
  width: 58px;
  height: 58px;
  fill: currentColor;
}

/* Gallery */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-btn {
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  border: 1px solid #eadede;
  background: #fff;
  color: #444;
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  transition: .18s ease;
}

.filter-btn:hover { border-color: var(--red); color: var(--red); }

.filter-btn.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 6px 16px rgba(249, 94, 95, .28);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery-3 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 16px;
  margin-top: 28px;
}

.g-item {
  display: block;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 10px;
  background: #eee;
  aspect-ratio: 4 / 3;
}

.gallery-3 .g-item {
  aspect-ratio: auto;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  text-align: center;
}

.g-thumb {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #eee;
  aspect-ratio: 4 / 3;
}

.g-item img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  border-radius: 10px;
  transition: transform .45s ease;
}

.gallery-3 .g-item img {
  border-radius: 0;
}

.g-item:hover img { transform: scale(1.05); }

.g-caption {
  display: block;
  margin-top: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--heading);
}

.g-item.is-hidden { display: none; }

/* Clients */
.clients {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: stretch;
}

.client {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 16px;
  display: grid;
  place-items: center;
  min-height: 118px;
  transition: box-shadow .2s, border-color .2s;
}

.client:hover {
  border-color: #f0c9c9;
  box-shadow: var(--shadow);
}

.client img {
  max-height: 72px;
  width: auto;
  margin: 0 auto;
}

/* FAQ */
.wrap-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: start;
}

.faq details {
  border-bottom: 1px solid #ececec;
  padding: 14px 0;
}

.faq summary {
  cursor: pointer;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--red);
  font-size: 22px;
  font-weight: 500;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 10px 0 6px; color: var(--muted); }

.faq-photo img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* CTA */
.cta-band {
  background: linear-gradient(135deg, #f95e5f 0%, #e24b4c 100%);
  color: #fff;
  text-align: center;
  padding: 56px 16px;
}

.cta-band p {
  font-family: Montserrat, sans-serif;
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 22px;
}

/* Contact */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: center;
}

.contact-cards article {
  padding: 36px 20px 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid #f0ecec;
  transition: transform .22s ease, box-shadow .22s ease;
}

.contact-cards article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(26,24,25,.12);
}

.contact-cards .icon {
  margin: 0 auto 16px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
}

.contact-cards .icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.contact-cards a {
  color: var(--ink);
  font-weight: 700;
  font-size: 17px;
}
.contact-cards a:hover { color: var(--red); }
.contact-cards p { margin: 0; }

.contact-map {
  line-height: 0;
  background: #e8e8e8;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #cfcfcf;
  padding: 64px 0 22px;
}

.footer-grid {
  width: min(94%, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr .7fr;
  gap: 36px;
}

.site-footer h3 {
  color: #fff;
  font-size: 13px;
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.site-footer h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  margin-top: 10px;
  border-radius: 2px;
}

.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--red); }
.site-footer p { font-size: 14px; line-height: 1.7; }

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li { margin: 0 0 8px; }

.ig {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff !important;
  transition: transform .2s, background .2s;
}

.ig:hover { transform: translateY(-2px); background: var(--red-dark); }
.ig svg { width: 20px; height: 20px; fill: currentColor; fill-rule: evenodd; }

.footer-bottom {
  width: min(94%, 1200px);
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: #aaa;
}

.footer-bottom p { margin: 0; }

/* Privacy / about lists */
.prose { padding-top: 48px; padding-bottom: 24px; }
.prose h1 { font-size: 34px; }
.prose h2 { font-size: 22px; margin-top: 1.5em; }
.prose ul { padding-left: 1.2em; margin-bottom: 1em; }

.work-list { padding-left: 1.15em; color: var(--muted); line-height: 1.7; }
.work-list li { margin-bottom: .55em; }
.work-list ul { margin: .45em 0 .7em; padding-left: 1.15em; }

.faq summary:hover { color: var(--red); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: min(96vw, 1400px);
  max-height: 92vh;
  object-fit: contain;
  border-radius: 6px;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
  line-height: 1;
}

/* Mobile */
@media (max-width: 980px) {
  .features,
  .wrap-split,
  .contact-cards,
  .footer-grid { grid-template-columns: 1fr; }

  .clients { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--header);
    box-shadow: 0 16px 32px rgba(0,0,0,.25);
    padding: 8px 0 16px;
  }

  body.nav-open .site-nav { display: block; }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  .site-nav a {
    display: block;
    padding: 14px;
    font-size: 15px;
    border-radius: 0;
  }

  .hero { min-height: 62vh; }
  .hero-inner { padding: 72px 16px; }
  .hero .btn, .section .btn { width: min(100%, 320px); }
  .lead { text-align: left; }
  .prose-narrow { max-width: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .faq-photo { order: -1; }
}

@media (max-width: 480px) {
  .header-top { padding: 8px 0 0; }
  .header-inner { min-height: 0; padding: 6px 0 10px; }
  .logo img { width: 132px; }
  .clients { grid-template-columns: repeat(2, 1fr); }
  .gallery,
  .gallery-3 { grid-template-columns: 1fr; }
  .section { padding: 56px 0 44px; }
  .filter-btn { font-size: 12px; padding: 8px 12px; }
  .page-hero { min-height: 200px; }
  .page-hero h1 { padding: 64px 16px; }
  .contact-map iframe { height: 320px; }
}
