:root {
  --red: #e00012;
  --dark: #111111;
  --light: #f5f5f5;
  --white: #ffffff;
  --grey: #666666;
  --border: #e6e6e6;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky; top: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between;
  padding: 12px 5vw; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.brand img { width: 165px; height: 62px; object-fit: contain; }
.main-nav { display: flex; gap: 24px; align-items: center; font-size: 14px; font-weight: 700; }
.main-nav a:hover { color: var(--red); }
.menu-toggle { display: none; background: none; border: 0; font-size: 28px; }
.hero {
  min-height: 84vh; position: relative; display: flex; align-items: center; padding: 80px 8vw;
  background: url('assets/bouscat-1.jpeg') center/cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.25)); }
.hero-content { position: relative; color: white; max-width: 760px; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-weight: 800; color: var(--red); font-size: 13px; }
.hero h1 { font-size: clamp(44px, 7vw, 82px); line-height: 1.02; margin: 12px 0 22px; }
.hero p { font-size: 19px; max-width: 680px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn { display: inline-flex; justify-content: center; align-items: center; padding: 14px 22px; border-radius: 6px; font-weight: 800; border: 2px solid transparent; cursor: pointer; }
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: #b9000f; }
.btn-secondary { border-color: white; color: white; }
.btn-secondary:hover { background: white; color: var(--dark); }
.section { padding: 90px 8vw; }
.section-dark { background: var(--dark); color: white; }
.section-heading { max-width: 800px; margin-bottom: 44px; }
.section-heading h2 { font-size: clamp(34px, 5vw, 56px); line-height: 1.1; margin: 8px 0; }
.two-columns { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: start; }
.text-card { font-size: 18px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stats div { padding: 24px; border: 1px solid var(--border); border-left: 4px solid var(--red); }
.stats strong { display: block; font-size: 28px; }
.stats span { color: var(--grey); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 28px; background: #1d1d1d; border-top: 3px solid var(--red); min-height: 210px; }
.service-card span { color: var(--red); font-weight: 900; }
.service-card h3 { font-size: 22px; margin-bottom: 8px; }
.service-card p { color: #cfcfcf; }
.projects { display: grid; gap: 42px; }
.project-card { display: grid; grid-template-columns: 1.2fr .8fr; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: white; box-shadow: 0 18px 50px rgba(0,0,0,.07); }
.slider { position: relative; min-height: 460px; background: #ddd; overflow: hidden; }
.slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .5s ease; }
.slider img.active { opacity: 1; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(0,0,0,.55); color: white; font-size: 28px; cursor: pointer; }
.slider-btn.prev { left: 14px; }
.slider-btn.next { right: 14px; }
.project-content { padding: 42px; align-self: center; }
.project-meta { color: var(--red); font-weight: 800; text-transform: uppercase; font-size: 13px; letter-spacing: .08em; }
.project-content h3 { font-size: 34px; line-height: 1.15; margin: 10px 0 18px; }
.project-content ul { padding-left: 18px; }
.quote-section { background: #f7f7f7; }
.quote-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; }
.document-list, .quote-form { background: white; padding: 34px; border-radius: 12px; border: 1px solid var(--border); }
.document-list li { margin-bottom: 8px; }
.note, .form-help { font-size: 14px; color: var(--grey); }
.quote-form { display: grid; gap: 15px; }
.quote-form label { display: grid; gap: 6px; font-weight: 700; }
input, select, textarea { width: 100%; padding: 13px; border: 1px solid #ccc; border-radius: 6px; font: inherit; }
textarea { resize: vertical; }
.contact-section { background: white; }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-card { padding: 28px; border: 1px solid var(--border); border-left: 4px solid var(--red); border-radius: 8px; }
.contact-card span { display: block; color: var(--grey); font-size: 14px; text-transform: uppercase; margin-bottom: 6px; }
.contact-card strong { font-size: 20px; }
footer { background: var(--dark); color: white; padding: 42px 8vw; text-align: center; }
footer img { width: 220px; margin: 0 auto 18px; background: white; padding: 8px; border-radius: 6px; }
footer a { color: #ddd; }
.reveal { opacity: 0; transform: translateY(24px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 950px) {
  .menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: 86px; background: white; padding: 22px 5vw; flex-direction: column; align-items: flex-start; border-bottom: 1px solid var(--border); }
  .main-nav.open { display: flex; }
  .two-columns, .project-card, .quote-layout { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .slider { min-height: 390px; }
}
@media (max-width: 620px) {
  .section { padding: 68px 6vw; }
  .site-header { padding-inline: 4vw; }
  .brand img { width: 135px; height: 54px; }
  .hero { min-height: 78vh; padding-inline: 6vw; }
  .hero p { font-size: 16px; }
  .service-grid, .stats, .contact-grid { grid-template-columns: 1fr; }
  .project-content { padding: 28px; }
  .project-content h3 { font-size: 28px; }
  .slider { min-height: 330px; }
}

.reviews{text-align:center;padding:60px 20px;background:#f7f7f7}.stars{font-size:2rem;color:#d4a017;letter-spacing:4px}
