:root{
  --bg:#f5f7fa;
  --bg-soft:#eef3f7;
  --bg-card:#ffffff;
  --text:#24303f;
  --muted:#5f6b7a;
  --title:#0f172a;
  --line:rgba(15,23,42,.10);

  --accent:#c62828;
  --accent-dark:#a61f1f;
  --accent-soft:#fbe9e7;

  --dark:#0f1726;
  --dark-2:#182335;

  --white:#ffffff;
  --shadow:0 14px 40px rgba(15,23,42,.08);
  --shadow-soft:0 10px 24px rgba(15,23,42,.06);

  --radius:18px;
  --radius-sm:12px;
  --container:1180px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#f8fafc 0%, #f3f6f9 55%, #f8fafc 100%);
  line-height:1.65;
}

img{
  max-width:100%;
  display:block;
  border:0;
}

a{
  color:inherit;
}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}

.section{
  padding:88px 0;
}

.center{
  text-align:center;
}

.center-text{
  text-align:center;
}

.max{
  max-width:900px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:78px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  font-weight:900;
  color:var(--title);
  font-size:1.08rem;
}

.brand-logo{
  width:46px;
  height:46px;
  object-fit:contain;
  border-radius:10px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:16px;
}

.nav-links a{
  text-decoration:none;
  font-weight:800;
  color:var(--title);
  transition:color .2s ease;
}

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

.menu-toggle{
  display:none;
  font-size:28px;
  background:none;
  border:none;
  cursor:pointer;
  color:var(--title);
}

.hero{
  position:relative;
  padding:86px 0 62px;
  overflow:hidden;
  background:
    linear-gradient(rgba(15,23,38,.60), rgba(15,23,38,.60)),
    radial-gradient(circle at top left, rgba(198,40,40,.22), transparent 38%),
    linear-gradient(120deg, rgba(198,40,40,.12), rgba(255,255,255,0));
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(120deg, rgba(198,40,40,.10), rgba(255,255,255,0));
}

.hero .container{
  position:relative;
  z-index:1;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:center;
}

.hero-copy h1{
  font-size:clamp(2.3rem,4.8vw,4.3rem);
  line-height:1.02;
  margin:0 0 18px;
  color:var(--white);
  font-weight:900;
  max-width:760px;
}

.page-hero{
  padding:72px 0 32px;
  background:transparent;
}

.page-hero h1{
  font-size:clamp(2.1rem,4vw,3.7rem);
  line-height:1.08;
  margin:0 0 18px;
  color:var(--title);
  font-weight:900;
  max-width:900px;
}

.lead{
  font-size:1.08rem;
  color:rgba(255,255,255,.92);
  margin-bottom:22px;
  max-width:760px;
}

.page-hero .lead,
.page-hero p{
  color:var(--muted);
}

.eyebrow{
  display:inline-block;
  margin:0 0 14px;
  color:#ffd7d2;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:900;
  font-size:.82rem;
}

.page-hero .eyebrow,
.section .section-heading .eyebrow,
.section-soft .eyebrow{
  color:var(--accent);
}

.eyebrow.light{
  color:#ffe1dc;
}

.hero-card img{
  width:100%;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:24px 0 24px;
}

.center-cta{
  justify-content:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:12px 20px;
  border-radius:12px;
  font-weight:900;
  text-decoration:none;
  border:1px solid transparent;
  transition:transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
  cursor:pointer;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-small{
  min-height:42px;
  padding:9px 14px;
}

.btn-primary{
  background:var(--accent);
  color:var(--white);
  box-shadow:0 10px 24px rgba(198,40,40,.24);
}

.btn-primary:hover{
  background:var(--accent-dark);
}

.btn-secondary{
  background:rgba(255,255,255,.95);
  color:var(--title);
  border-color:rgba(255,255,255,.18);
}

.btn-secondary:hover{
  background:var(--white);
}

.btn-white{
  background:var(--white);
  color:var(--accent);
}

.btn-white:hover{
  background:#fff5f3;
}

.btn-outline-white{
  background:transparent;
  color:var(--white);
  border-color:rgba(255,255,255,.50);
}

.btn-outline-white:hover{
  background:rgba(255,255,255,.10);
}

.trust-list,
.check-list{
  margin:0;
  padding-left:18px;
}

.trust-list li{
  color:rgba(255,255,255,.92);
  margin-bottom:7px;
}

.check-list li{
  color:var(--text);
  margin-bottom:7px;
}

.section-heading{
  margin-bottom:34px;
}

.section-heading h2{
  margin:0 0 14px;
  font-size:clamp(1.8rem,3vw,2.7rem);
  line-height:1.12;
  color:var(--title);
}

.section-heading p{
  margin:0;
  color:var(--muted);
  max-width:840px;
}

.section-heading.center p{
  margin-left:auto;
  margin-right:auto;
}

.grid-2,
.grid-3,
.services-grid,
.footer-grid,
.two-col,
.field-grid,
.gallery{
  display:grid;
  gap:22px;
}

.grid-2{
  grid-template-columns:repeat(2,1fr);
}

.grid-3{
  grid-template-columns:repeat(3,1fr);
}

.services-grid{
  grid-template-columns:repeat(3,1fr);
}

.two-col{
  grid-template-columns:1.1fr .9fr;
  align-items:start;
}

.field-grid{
  grid-template-columns:repeat(2,1fr);
}

.card,
.service-card,
.contact-form,
.cta-box{
  background:var(--bg-card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
}

.card,
.service-card{
  padding:24px;
}

.card h3,
.service-card h3{
  margin-top:0;
  margin-bottom:10px;
  color:var(--title);
}

.card p,
.service-card p{
  margin:0;
  color:var(--muted);
}

.card img,
.service-card img{
  width:100%;
  border-radius:14px;
  margin-bottom:16px;
  object-fit:cover;
}

.section-dark{
  background:linear-gradient(180deg,var(--dark) 0%, var(--dark-2) 100%);
  color:var(--white);
}

.section-dark .section-heading h2,
.section-dark .service-card h3,
.section-dark .card h3{
  color:var(--white);
}

.section-dark .section-heading p,
.section-dark .service-card p,
.section-dark .card p,
.section-dark .check-list li{
  color:rgba(255,255,255,.84);
}

.section-dark .service-card,
.section-dark .card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:none;
}

.section-soft{
  background:#f4f6f8;
  color:var(--text);
}

.section-soft h2,
.section-soft h3{
  color:var(--title);
}

.section-soft p,
.section-soft li{
  color:var(--text);
}

.section-accent{
  background:linear-gradient(135deg, #a32017 0%, #ca2d21 100%);
  color:var(--white);
}

.section-accent h2,
.section-accent h3{
  color:var(--white);
}

.section-accent p{
  color:rgba(255,255,255,.92);
}

.cta-box{
  background:rgba(255,255,255,.08);
  padding:30px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:none;
}

.gallery{
  grid-template-columns:repeat(2,1fr);
}

.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  min-height:320px;
  box-shadow:var(--shadow);
  background:#dfe6eb;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}

.gallery-item:hover img{
  transform:scale(1.04);
}

.gallery-item figcaption{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:18px;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,.72));
  color:var(--white);
  font-weight:800;
}

.contact-form{
  padding:28px;
  max-width:860px;
}

label{
  display:block;
  margin:0 0 8px;
  font-weight:800;
  color:var(--title);
}

input,
select,
textarea{
  width:100%;
  padding:14px 15px;
  border-radius:12px;
  border:1px solid rgba(15,23,38,.14);
  font:inherit;
  background:#fff;
  color:var(--text);
  transition:border-color .2s ease, box-shadow .2s ease;
}

input:focus,
select:focus,
textarea:focus{
  outline:none;
  border-color:rgba(198,40,40,.55);
  box-shadow:0 0 0 4px rgba(198,40,40,.10);
}

textarea{
  resize:vertical;
  min-height:150px;
}

.checkbox-field{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:14px 0 18px;
}

.checkbox-field input{
  width:auto;
  margin-top:4px;
  flex:0 0 auto;
}

.checkbox-field label{
  margin:0;
  font-weight:600;
  color:var(--muted);
  line-height:1.5;
}

.checkbox-field a{
  color:var(--accent);
  text-decoration:none;
  font-weight:800;
}

.form-success-message{
  margin-top:18px;
  padding:16px 18px;
  border-radius:12px;
  background:#ecfdf3;
  border:1px solid #b7ebc6;
  color:#166534;
  font-weight:700;
  line-height:1.5;
}

.site-footer{
  background:#0f1726;
  color:var(--white);
  padding:38px 0;
}

.footer-grid{
  grid-template-columns:1.2fr 1fr 1fr;
  align-items:start;
}

.site-footer a{
  color:var(--white);
  text-decoration:none;
}

.site-footer a:hover{
  color:#ffd6d1;
}

.site-footer p{
  margin:.35rem 0;
  color:rgba(255,255,255,.82);
}

.site-footer h3{
  margin-top:0;
  margin-bottom:12px;
}

@media (max-width: 1024px){
  .hero-grid,
  .two-col,
  .services-grid,
  .grid-3,
  .grid-2,
  .footer-grid,
  .gallery{
    grid-template-columns:1fr;
  }

  .hero{
    padding:72px 0 54px;
  }

  .gallery-item{
    min-height:300px;
  }
}

@media (max-width: 820px){
  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:78px;
    left:0;
    right:0;
    background:#fff;
    border-bottom:1px solid var(--line);
    padding:18px 20px 22px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .nav-links.open{
    display:flex;
  }

  .field-grid{
    grid-template-columns:1fr;
  }

  .hero{
    padding-top:52px;
  }

  .hero-copy h1,
  .page-hero h1{
    font-size:clamp(2rem,9vw,3rem);
  }

  .section{
    padding:72px 0;
  }

  .contact-form,
  .card,
  .service-card,
  .cta-box{
    padding:22px;
  }

  .btn,
  .btn-small{
    width:100%;
  }

  .hero-cta{
    flex-direction:column;
  }
}

@media (max-width: 560px){
  .container{
    padding:0 16px;
  }

  .nav{
    min-height:74px;
  }

  .brand span{
    font-size:1rem;
  }

  .brand-logo{
    width:42px;
    height:42px;
  }

  .gallery-item{
    min-height:260px;
  }

  .section-heading h2{
    font-size:1.75rem;
  }
 .cookie-banner{
  position:fixed;
  inset:0;
  background:rgba(15,23,38,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:2000;
}

.cookie-banner.hidden{
  display:none;
}

.cookie-box{
  width:min(100%, 560px);
  background:#fff;
  border-radius:18px;
  padding:24px;
  box-shadow:0 20px 50px rgba(15,23,42,.18);
  border:1px solid rgba(15,23,42,.08);
}

.cookie-box h3{
  margin:0 0 12px;
  color:var(--title);
}

.cookie-box p{
  margin:0;
  color:var(--text);
}

.cookie-box a{
  color:var(--accent);
  font-weight:700;
  text-decoration:none;
}

.cookie-actions{
  display:flex;
  gap:12px;
  margin-top:20px;
  flex-wrap:wrap;
}

@media (max-width: 640px){
  .cookie-actions{
    flex-direction:column;
  }

  .cookie-actions .btn{
    width:100%;
  }
} 

  .lead{
    font-size:1rem;
  }
}
