:root {
  --bg: #ffffff;
  --ink: #111111;
  --muted: #5b5b5b;
  --line: #e7e7e7;
  --soft: #f7f7f7;
  --red: #e1111c;
  --red-dark: #b80d16;
  --black: #050505;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--black);
  color: #fff;
  padding: 10px 14px;
  z-index: 999;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--black);
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.06em;
  border: 3px solid var(--red);
}
.brand-text {
  display: grid;
  line-height: 1.15;
}
.brand-text strong {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.brand-text small {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #242424;
  font-weight: 700;
  font-size: 0.94rem;
}
.site-nav a { position: relative; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}
.site-nav a:hover::after { transform: scaleX(1); }
.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-weight: 800;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.section { padding: 88px 0; }
.compact-section { padding-top: 38px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 770px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 680px;
  color: #333;
  margin-bottom: 28px;
}

.hero {
  padding-top: 58px;
  background:
    radial-gradient(circle at 8% 10%, rgba(225, 17, 28, 0.12), transparent 28%),
    linear-gradient(180deg, #fff, #fafafa);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.78fr);
  gap: 52px;
  align-items: center;
}
.hero-copy { padding: 40px 0; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 28px rgba(225, 17, 28, 0.22);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-outline {
  background: #fff;
  border-color: #d7d7d7;
  color: var(--ink);
}
.btn-quiet {
  background: var(--black);
  color: #fff;
}
.btn.full { width: 100%; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.9rem;
  color: #252525;
  font-weight: 800;
}
.hero-media {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--black);
  min-height: 620px;
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}
.hero-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.13);
}
.hero-card strong { font-size: 1.1rem; }
.hero-card span { color: var(--muted); font-weight: 700; }

.split {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 80px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 52px;
}
.split-copy p {
  color: #333;
  font-size: 1.06rem;
  margin-bottom: 16px;
}

.section-heading {
  max-width: 770px;
  text-align: center;
  margin: 0 auto 42px;
}
.section-heading.left {
  text-align: left;
  margin: 0;
}
.section-heading p { color: var(--muted); }

.card-grid {
  display: grid;
  gap: 18px;
}
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.service-card,
.film-card,
.review-card,
.quote-form,
.quote-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(0,0,0,0.045);
}
.service-card {
  min-height: 235px;
  padding: 24px;
}
.card-number {
  display: inline-block;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 34px;
}
.service-card p,
.film-card p,
.review-card p { color: var(--muted); margin-bottom: 0; }

.film-section { background: var(--soft); }
.film-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 54px;
  align-items: center;
}
.film-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.film-card { padding: 28px; min-height: 220px; }
.film-card.premium {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.film-card.premium p { color: #d8d8d8; }

.warranty { padding: 72px 0; }
.warranty-box {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 42px;
  align-items: center;
  background: var(--black);
  color: #fff;
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  position: relative;
  overflow: hidden;
}
.warranty-box::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(225, 17, 28, 0.42);
}
.warranty-box h2 { margin-bottom: 0; }
.warranty-box p:last-child {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: #efefef;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 290px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--black);
}
.gallery-item.large { grid-row: span 2; grid-column: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  font-size: 0.86rem;
  font-weight: 900;
}
.more-work {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.more-work summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 900;
  background: #fff;
}
.more-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 0 12px 12px;
}
.more-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
}

.reviews { background: var(--soft); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.review-card { padding: 30px; }
.stars {
  color: var(--red);
  letter-spacing: 0.08em;
  font-size: 1.08rem;
  margin-bottom: 18px;
}
blockquote {
  margin: 0 0 22px;
  font-size: 1.1rem;
  line-height: 1.65;
}
.review-name {
  font-weight: 900;
  color: var(--ink) !important;
}
.review-name span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-top: 3px;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 28px;
  align-items: start;
}
.quote-panel,
.quote-form { padding: clamp(24px, 4vw, 42px); }
.quote-panel {
  background: var(--black);
  color: #fff;
  position: sticky;
  top: 112px;
}
.quote-panel p { color: #e1e1e1; }
.contact-stack {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}
.phone-link {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #fff;
}
.contact-stack span { color: #d3d3d3; font-weight: 800; }
.form-row { margin-bottom: 18px; }
.form-row.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
label {
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
}
input, textarea, select {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
}
input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(225, 17, 28, 0.14);
  border-color: var(--red);
}
textarea { resize: vertical; }
.form-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 14px 0 0;
}
.quote-result {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.quote-result p { color: #333; }
.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  background: var(--black);
  color: #fff;
  padding: 42px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.6fr;
  gap: 24px;
  align-items: start;
}
.footer-brand { margin-bottom: 14px; }
.footer-grid p,
.footer-grid span,
.footer-grid a { color: #d6d6d6; }
.footer-grid h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.footer-grid div { display: grid; gap: 4px; }

@media (max-width: 1040px) {
  .site-nav { gap: 18px; }
  .hero-grid,
  .split,
  .film-grid,
  .quote-grid { grid-template-columns: 1fr; }
  .hero-media, .hero-media img { min-height: 520px; }
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
  .more-grid { grid-template-columns: repeat(3, 1fr); }
  .quote-panel { position: static; }
}

@media (max-width: 780px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav-wrap { min-height: 72px; }
  .brand-text small { display: none; }
  .header-call { display: none; }
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px; }
  .site-nav a::after { display: none; }
  .section { padding: 66px 0; }
  .hero { padding-top: 32px; }
  .hero-copy { padding: 16px 0 0; }
  h1 { font-size: clamp(3.15rem, 16vw, 5.2rem); }
  .hero-media, .hero-media img { min-height: 460px; }
  .hero-card { align-items: flex-start; flex-direction: column; }
  .film-cards,
  .review-grid,
  .footer-grid,
  .form-row.two-col { grid-template-columns: 1fr; }
  .warranty-box { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 250px; }
  .more-grid { grid-template-columns: 1fr 1fr; }
  .more-grid img { height: 180px; }
}

@media (max-width: 560px) {
  .card-grid.four,
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .trust-row span { width: 100%; text-align: center; }
  .hero-media, .hero-media img { min-height: 420px; }
  .service-card { min-height: auto; }
  .card-number { margin-bottom: 18px; }
  .phone-link { font-size: 2rem; }
  .more-grid { grid-template-columns: 1fr; }
}
