:root {
  --red: #e01919;
  --red-dark: #b31212;
  --black: #111315;
  --white: #ffffff;
  --gray-100: #f6f7f8;
  --gray-300: #d7d9dc;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  color: var(--black);
  background: var(--white);
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: saturate(180%) blur(6px);
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid var(--gray-300);
  z-index: 1000;
  overflow: visible;
}

.site-header.sticky-scrolled { box-shadow: 0 6px 14px rgba(17,19,21,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 96px; }

.brand { text-decoration: none; display: inline-flex; align-items: baseline; gap: 10px; }
.brand-logo { height: 96px; display: inline-block; object-fit: contain; filter: drop-shadow(0 2px 0 0 #0e0e0e); margin-top: -6px; max-width: 100%; }
.brand-mark {
  position: relative;
  display: inline-block;
  padding: 6px 14px 6px 22px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%, 8% 50%);
  box-shadow: 0 2px 0 0 #0e0e0e;
}
.brand-sub { font-weight: 600; color: var(--black); opacity: 0.8; }
.brand-mark.xl { font-size: 48px; line-height: 1; padding: 10px 24px 10px 30px; }
.brand-logo.xl { height: 150px; }

.nav { display: flex; align-items: center; gap: 18px; }
.nav a { text-decoration: none; color: var(--black); font-weight: 600; }
.nav a:hover { color: var(--red-dark); }
.cta-nav { background: var(--red); color: var(--white); padding: 10px 14px; border-radius: 8px; }
.nav-toggle { display: none; font-size: 22px; background: none; border: none; }

.hero {
  position: relative;
  padding: 96px 0 110px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -60px -200px auto auto;
  height: 380px;
  width: 60vw;
  transform: skewX(-18deg);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 2px 0 0 #0e0e0e;
}
.hero-inner { position: relative; z-index: 1; }
.hero-title { font-size: 48px; margin: 0 0 10px; }
.hero-subtitle { font-size: 18px; opacity: 0.8; margin: 0 0 24px; }

.btn { display: inline-block; text-decoration: none; font-weight: 700; border-radius: 10px; padding: 12px 18px; }
.btn-primary { background: var(--red); color: var(--white); }
.btn-outline { border: 2px solid var(--black); color: var(--black); }
.btn-outline:hover { border-color: var(--red-dark); color: var(--red-dark); }
.hero-ctas { display: flex; gap: 12px; }

.section { padding: 64px 0; }
.section-contrast { background: var(--black); color: var(--white); }
.section-title { font-size: 32px; margin: 0 0 24px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.card {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 12px;
  padding: 18px;
  font-weight: 700;
}
.section-contrast .card { background: #1a1d20; color: var(--white); border-color: #2c2f34; }

.about { display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: center; gap: 24px; }
.bullets { margin: 14px 0 0; padding: 0 0 0 18px; }
.about-badge { display: flex; justify-content: center; align-items: center; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ph { aspect-ratio: 4/3; border-radius: 12px; background: radial-gradient(circle at 30% 30%, #444 0%, #1a1a1a 60%); border: 2px solid #2c2f34; }

.instagram-actions { display: flex; justify-content: flex-start; margin-bottom: 12px; }
.instagram-embed { width: 100%; border: 0; min-height: 640px; border-radius: 12px; background: #fff; }
.instagram-feed { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.instagram-feed .instagram-media { width: 100% !important; max-width: 100% !important; margin: 0 !important; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lead { font-weight: 700; }
.small { font-size: 12px; opacity: 0.7; }
.muted { opacity: 0.8; }
.contact-actions { display: flex; gap: 12px; margin-top: 10px; }

.site-footer { border-top: 1px solid var(--gray-300); background: var(--white); }
.footer-inner { height: 72px; display: flex; align-items: center; justify-content: space-between; }
.socials a { text-decoration: none; font-weight: 700; color: var(--black); margin-left: 12px; }

@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-feed { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav a { display: none; }
  .nav-toggle { display: inline-block; }
  .header-inner { height: 72px; }
  .brand-logo { height: 64px; margin-top: 0; }
  .brand-logo.xl { height: 96px; }
  .hero { padding: 56px 0 64px; }
  .hero::before { height: 220px; width: 80vw; inset: -40px -140px auto auto; }
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 16px; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .section { padding: 40px 0; }
  .section-title { font-size: 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .instagram-embed { min-height: 420px; }
  .footer-inner { height: 64px; }
}
