
:root{
  --bg:#f7f4f2;
  --white:#ffffff;
  --text:#231f20;
  --muted:#6e6668;
  --line:rgba(88,28,43,.12);
  --primary:#7a001f;
  --primary-dark:#4f0014;
  --soft:#eee7e2;
  --shadow:0 22px 60px rgba(64,14,25,.08);
  --radius:24px;
  --max:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter, Arial, Helvetica, sans-serif;
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.container{width:min(calc(100% - 40px), var(--max)); margin:0 auto}

.topbar{
  background:var(--primary-dark);
  color:#fff;
  font-size:13px;
}
.topbar-inner{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.topbar-left{display:flex; align-items:center; gap:12px}
.topbar-left a, .topbar-right span{opacity:.92}

.header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(247,244,242,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:flex;
  align-items:center;
}
.brand img{
  width:180px;
  height:72px;
  object-fit:contain;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:14px;
}
.lang-switch{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:42px;
  padding:5px 11px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  box-shadow:0 8px 22px rgba(64,14,25,.06);
}
.lang-switch span{
  width:1px;
  height:17px;
  background:var(--line);
}
.lang-btn{
  border:0;
  padding:3px 2px;
  background:transparent;
  color:var(--muted);
  font:inherit;
  font-size:12px;
  font-weight:900;
  cursor:pointer;
}
.lang-btn.active{
  color:var(--primary);
}
.lang-btn:hover{
  color:var(--primary-dark);
}
.menu{
  display:flex;
  align-items:center;
  gap:28px;
  font-weight:700;
  color:#3d3739;
}
.menu a:hover{color:var(--primary)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 24px;
  border-radius:999px;
  font-weight:800;
  transition:.2s ease;
}
.btn-primary{
  background:var(--primary);
  color:#fff;
  box-shadow:0 12px 32px rgba(122,0,31,.22);
}
.btn-primary:hover{background:var(--primary-dark); transform:translateY(-2px)}
.btn-secondary{
  background:transparent;
  color:var(--primary);
  border:1px solid rgba(122,0,31,.22);
}
.btn-secondary:hover{background:rgba(122,0,31,.05)}
.btn-light{
  background:#fff;
  color:var(--primary);
}
.hero{
  position:relative;
  overflow:hidden;
  padding:86px 0 92px;
  background:linear-gradient(135deg,#fcfaf8 0%, #f3ece8 100%);
}
.hero-watermark{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  pointer-events:none;
  opacity:.06;
}
.hero-watermark img{
  width:min(58vw, 900px);
  height:auto;
  transform:translateX(12%);
  object-fit:contain;
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:48px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  color:var(--primary);
  font-size:12px;
  font-weight:900;
  letter-spacing:.18em;
}
.eyebrow.light{color:#fff}
.hero-copy h1{
  margin:0 0 18px;
  font-family:Georgia, "Times New Roman", serif;
  font-size:64px;
  line-height:1.02;
  letter-spacing:-.05em;
  color:var(--primary-dark);
  max-width:750px;
}
.hero-copy p{
  margin:0 0 28px;
  max-width:650px;
  font-size:18px;
  color:#5d5658;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:26px;
}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  max-width:760px;
}
.stat-box{
  padding:18px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.7);
  backdrop-filter:blur(8px);
  border-radius:18px;
  box-shadow:var(--shadow);
}
.stat-box strong{
  display:block;
  margin-bottom:6px;
  color:var(--primary);
  font-size:28px;
}
.stat-box span{
  color:var(--muted);
  font-size:13px;
}
.hero-panel{
  display:flex;
  justify-content:flex-end;
}
.hero-panel-inner{
  width:100%;
  max-width:430px;
  padding:34px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(255,255,255,.7);
  backdrop-filter:blur(10px);
  border-radius:30px;
  box-shadow:var(--shadow);
}
.small-title{
  display:inline-block;
  margin-bottom:10px;
  color:var(--primary);
  font-size:13px;
  font-weight:800;
}
.hero-panel h3{
  margin:0 0 16px;
  font-size:31px;
  line-height:1.15;
}
.feature-list{
  list-style:none;
  padding:0;
  margin:0;
}
.feature-list li{
  padding:13px 0;
  border-bottom:1px solid var(--line);
  color:#554d4f;
}
.feature-list li:last-child{border-bottom:none}

.section{padding:92px 0}
.section-head{
  max-width:760px;
  margin-bottom:34px;
}
.section-head.center{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
.section-head h2{
  margin:0 0 12px;
  font-family:Georgia, "Times New Roman", serif;
  font-size:48px;
  line-height:1.08;
  color:var(--primary-dark);
}
.section-head p{
  margin:0;
  color:var(--muted);
  font-size:17px;
}
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.about-card{
  padding:34px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.about-card.highlight{
  background:linear-gradient(145deg,#fff 0%, #f8f1ed 100%);
}
.about-card h3{
  margin:0 0 14px;
  font-size:28px;
}
.about-card p{margin:0; color:var(--muted)}
.about-card ul{
  list-style:none;
  padding:0;
  margin:0;
}
.about-card li{
  position:relative;
  padding-left:26px;
  margin:12px 0;
  color:#534c4e;
}
.about-card li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  font-weight:900;
  color:var(--primary);
}

.services{background:#fff}
.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.service-card{
  padding:32px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.service-no{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--primary);
  color:#fff;
  font-weight:900;
  margin-bottom:18px;
}
.service-card h3{
  margin:0 0 10px;
  font-size:25px;
}
.service-card p{
  margin:0;
  color:var(--muted);
}

.references{background:var(--bg)}
.logo-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.logo-card{
  min-height:170px;
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow);
}
.logo-card img{
  max-width:100%;
  max-height:90px;
  width:auto;
  height:auto;
  object-fit:contain;
}
.logo-fallback{
  display:none;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:800;
  color:var(--primary-dark);
  font-size:18px;
}

.cta-box{
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  align-items:center;
  padding:40px;
  background:linear-gradient(135deg,var(--primary-dark), var(--primary));
  color:#fff;
  border-radius:32px;
  box-shadow:var(--shadow);
}
.cta-box h2{
  margin:0 0 10px;
  font-family:Georgia, "Times New Roman", serif;
  font-size:42px;
}
.cta-box p{
  margin:0;
  color:rgba(255,255,255,.82);
}

.contact{background:#fff}
.contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.contact-card{
  padding:28px;
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:22px;
}
.contact-card strong{
  display:block;
  margin-bottom:8px;
  color:var(--primary-dark);
}
.contact-card span{
  color:var(--muted);
}
.contact-card a{color:inherit}

.footer{
  padding:26px 0;
  background:var(--primary-dark);
  color:rgba(255,255,255,.84);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.footer-brand img{
  width:130px;
  height:auto;
  object-fit:contain;
  filter:brightness(1.05);
}

@media (max-width:1100px){
  .hero-grid,
  .about-grid{
    grid-template-columns:1fr;
  }
  .hero-panel{
    justify-content:flex-start;
  }
  .hero-copy h1{font-size:54px}
  .logo-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:860px){
  .menu, .header-contact{display:none}
  .service-grid,
  .contact-grid,
  .hero-stats{grid-template-columns:1fr}
  .logo-grid{grid-template-columns:repeat(2,1fr)}
  .topbar-inner,
  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .cta-box{
    grid-template-columns:1fr;
  }
}
@media (max-width:560px){
  .nav{gap:10px}
  .nav-actions{gap:8px}
  .lang-switch{padding:4px 9px}

  .container{width:min(calc(100% - 24px), var(--max))}
  .hero{padding:60px 0 68px}
  .hero-copy h1{font-size:40px}
  .section{padding:68px 0}
  .section-head h2{font-size:36px}
  .logo-grid{grid-template-columns:1fr}
  .brand img{width:150px; height:62px}
}
