:root{
  --page-bg:#ffffff;
  --header-bg:#f6f1ef;
  --text:#1b1b1b;
  --muted:#5b5b5b;
  --border:rgba(0,0,0,.10);

  --brand-red:#c81f1f;
  --brand-red-2:#d22a2a;
  --brand-green:#2f8b4a;

  --shadow:0 18px 45px rgba(0,0,0,.12);
  --shadow-soft:0 14px 34px rgba(0,0,0,.10);
  --shadow-card:0 16px 40px rgba(0,0,0,.10);

  --white:#ffffff;
  --radius:18px;
  --container:1100px;

  --footer-bg-1:#0b1220;
  --footer-bg-2:#0f1a2e;
  --footer-text:rgba(255,255,255,.78);
  --footer-title:#ffffff;
  --footer-line:rgba(255,255,255,.14);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
  background:var(--page-bg);
  color:var(--text);
  line-height:1.55;
}

img{max-width:100%;height:auto}

.container{
  width:min(100% - 2rem, var(--container));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:8px;
  padding:.6rem .9rem;
  background:var(--white);
  color:var(--text);
  border:1px solid var(--border);
  border-radius:10px;
}
.skip-link:focus{left:1rem;z-index:50}

.site-header{
  position:sticky;
  top:0;
  z-index:40;
  background:var(--header-bg);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.9rem 0;
  gap:1.25rem;
}

.brand{display:flex;align-items:center;text-decoration:none;color:inherit;min-width:0}
.brand-logo{display:block;width:auto;height:52px}

.site-nav{display:flex;align-items:center;gap:1.25rem}
.site-nav a{
  color:var(--text);
  text-decoration:none;
  padding:.45rem .15rem;
  border-radius:10px;
  font-weight:550;
}
.site-nav a:hover,.site-nav a:focus-visible{color:var(--brand-red)}

.nav-cta{
  margin-left:.25rem;
  padding:.55rem 1rem !important;
  border-radius:999px;
  background:var(--brand-red);
  color:var(--white) !important;
  font-weight:700;
}
.nav-cta:hover,.nav-cta:focus-visible{background:var(--brand-red-2)}

.nav-toggle{
  display:none;
  background:transparent;
  border:1px solid rgba(0,0,0,.14);
  color:var(--text);
  border-radius:12px;
  padding:.55rem .7rem;
}
.nav-toggle-lines{
  display:block;
  width:18px;
  height:12px;
  background:
    linear-gradient(var(--text),var(--text)) 0 0/100% 2px no-repeat,
    linear-gradient(var(--text),var(--text)) 0 50%/100% 2px no-repeat,
    linear-gradient(var(--text),var(--text)) 0 100%/100% 2px no-repeat;
  opacity:.9;
}

.hero{
  position:relative;
  padding:5.5rem 0 3.2rem;
  overflow:hidden;
  border-bottom-left-radius:28px;
  border-bottom-right-radius:28px;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(140,16,16,.72), rgba(160,20,20,.48)),
    url('../img/hero.png') center/cover no-repeat;
}
.hero-inner{
  position:relative;
  text-align:center;
}
.hero-title{
  margin:0;
  font-family:Georgia,"Times New Roman",Times,serif;
  font-weight:700;
  letter-spacing:.4px;
  color:var(--white);
  font-size:clamp(2.6rem, 6vw, 5.2rem);
  line-height:1.03;
}
.hero-subtitle{
  margin:1.2rem 0 0;
  font-size:clamp(1.35rem, 2.2vw, 2.25rem);
  color:rgba(255,255,255,.92);
  letter-spacing:.3px;
}
.hero-subtitle::after{
  content:"";
  display:block;
  width:min(320px, 70%);
  height:4px;
  margin:.7rem auto 0;
  background:var(--brand-green);
  border-radius:999px;
}
.hero-lead{
  margin:2.2rem auto 0;
  color:rgba(255,255,255,.9);
  font-size:clamp(1.05rem, 1.9vw, 1.5rem);
  max-width:46ch;
}

.hero-actions{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center;margin-top:2.4rem}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:.95rem 1.45rem;
  text-decoration:none;
  font-weight:750;
  border:2px solid transparent;
  min-width:210px;
}
.btn:focus-visible{outline:3px solid rgba(200,31,31,.35);outline-offset:3px}
.hero .btn:focus-visible{outline-color:rgba(255,255,255,.65)}

.btn-light{
  background:var(--white);
  color:var(--brand-red);
}
.btn-light:hover,.btn-light:focus-visible{filter:brightness(.98)}

.btn-outline{
  background:transparent;
  color:var(--white);
  border-color:rgba(255,255,255,.9);
}
.btn-outline:hover,.btn-outline:focus-visible{background:rgba(255,255,255,.08)}

.btn-solid{
  background:var(--brand-red);
  color:var(--white);
}
.btn-solid:hover,.btn-solid:focus-visible{background:var(--brand-red-2)}

.hero-down{
  display:inline-block;
  width:44px;
  height:44px;
  margin-top:2.4rem;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.55);
  position:relative;
}
.hero-down::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:12px;
  height:12px;
  border-right:3px solid rgba(255,255,255,.9);
  border-bottom:3px solid rgba(255,255,255,.9);
  transform:translate(-50%,-60%) rotate(45deg);
}

.section{padding:2.2rem 0}
.section h2{margin:0 0 .8rem;font-size:1.55rem}
.section p{color:var(--muted);max-width:75ch}

.section-head{
  text-align:center;
  padding:2.3rem 0 1.8rem;
}
.section-title{
  margin:0;
  font-family:Georgia,"Times New Roman",Times,serif;
  font-size:clamp(2.2rem, 4vw, 3.6rem);
  line-height:1.05;
  letter-spacing:.2px;
}
.section-underline{
  display:flex;
  justify-content:center;
  gap:0;
  margin:.7rem 0 0;
}
.section-underline .u-red,
.section-underline .u-green{
  display:block;
  height:4px;
}
.section-underline .u-red{width:56px;background:var(--brand-red)}
.section-underline .u-green{width:56px;background:var(--brand-green)}

.section-subtitle{
  margin:.95rem auto 0;
  font-size:clamp(1.05rem, 1.6vw, 1.35rem);
  color:#6b7280;
  max-width:64ch;
}

.products-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:2rem;
  padding:1.2rem 0 2.4rem;
}

.products-cta{
  text-align:center;
  padding:1.2rem 0 2.6rem;
}

.products-cta-text{
  margin:1.2rem auto 1.6rem;
  color:#6b7280;
  font-size:clamp(1.05rem, 1.7vw, 1.45rem);
  max-width:70ch;
}

.products-cta-btn{
  min-width:min(360px, 92%);
  padding:1.15rem 2.2rem;
  font-size:1.15rem;
  box-shadow:0 18px 40px rgba(200,31,31,.25);
}

.about-inner{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:3rem;
  align-items:start;
  padding:2.6rem 0 2.2rem;
}

.about-title{
  margin:0;
  font-family:Georgia,"Times New Roman",Times,serif;
  font-size:clamp(2.6rem, 4.8vw, 4.4rem);
  line-height:1.02;
  letter-spacing:.2px;
  color:#111827;
}

.about-underline{
  display:flex;
  margin:1rem 0 1.4rem;
}
.about-underline .u-red,
.about-underline .u-green{
  display:block;
  height:4px;
}
.about-underline .u-red{width:70px;background:var(--brand-red)}
.about-underline .u-green{width:70px;background:var(--brand-green)}

.about-lead,
.about-paragraph{
  margin:0 0 1.55rem;
  max-width:62ch;
  color:#374151;
  font-size:1.15rem;
  line-height:1.8;
}

.about-brand{
  font-weight:800;
  color:var(--brand-red);
}

.about-cards{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1.55rem;
  padding-top:.2rem;
}

.about-card{
  background:var(--white);
  border-radius:18px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:var(--shadow-soft);
  padding:1.35rem 1.4rem 1.45rem;
}

.about-icon{
  width:54px;
  height:54px;
  border-radius:14px;
  background:var(--brand-red);
  display:grid;
  place-items:center;
  color:var(--white);
  margin-bottom:1.05rem;
}

.about-card-title{
  margin:0;
  font-size:1.2rem;
  font-weight:800;
  color:#111827;
}

.about-card-text{
  margin:.6rem 0 0;
  color:#6b7280;
  font-size:1.02rem;
  line-height:1.6;
}

.product-card{
  border-radius:24px;
  background:var(--white);
  box-shadow:var(--shadow);
  overflow:hidden;
  border:1px solid rgba(0,0,0,.06);
}

.product-media{
  margin:0;
  aspect-ratio: 16 / 10;
  background:#e9edf3;
}

.product-img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.product-body{
  padding:1.5rem 1.7rem 1.9rem;
}

.product-title{
  margin:0;
  font-family:Georgia,"Times New Roman",Times,serif;
  font-size:clamp(1.35rem, 2.1vw, 1.9rem);
  letter-spacing:.1px;
}

.product-text{
  margin:.65rem 0 0;
  color:#6b7280;
  font-size:1.05rem;
  line-height:1.65;
}

.grid{
  margin-top:1rem;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:1rem;
}

.card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  padding:1rem;
  content-visibility:auto;
  contain-intrinsic-size:200px;
}
.card h3{margin:.1rem 0 .4rem;font-size:1.05rem}
.card p{margin:0;color:var(--muted)}

.text-link{color:var(--text);text-decoration:none;border-bottom:1px solid rgba(0,0,0,.2)}
.text-link:hover,.text-link:focus-visible{border-bottom-color:rgba(200,31,31,.8)}


.contact-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
  padding:1.2rem 0 2.6rem;
  align-items:start;
}

.contact-info{
  display:grid;
  gap:1.25rem;
}

.info-card{
  display:flex;
  gap:1rem;
  align-items:flex-start;
  padding:1.15rem 1.25rem;
  border-radius:16px;
  background:var(--white);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:var(--shadow-card);
}

.info-icon{
  width:46px;
  height:46px;
  border-radius:12px;
  display:grid;
  place-items:center;
  color:var(--white);
  flex:0 0 auto;
}
.info-icon-red{background:var(--brand-red)}
.info-icon-green{background:var(--brand-green)}

.info-body{min-width:0}
.info-title{margin:0;font-weight:800;color:#111827;font-size:1.05rem}
.info-text{margin:.35rem 0 0;color:#6b7280;line-height:1.6}
.info-text .text-link{border-bottom-color:rgba(0,0,0,.18)}

.contact-form-card{
  background:var(--white);
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  box-shadow:var(--shadow-card);
  padding:1.4rem 1.5rem 1.55rem;
}

.contact-form-title{
  margin:.2rem 0 1rem;
  font-family:Georgia,"Times New Roman",Times,serif;
  font-size:1.55rem;
  color:#111827;
}

.list{margin:.6rem 0 0;padding-left:1.1rem;color:var(--muted)}
.list a{color:var(--text)}

.contact-form{
  padding:0;
}

label{display:grid;gap:.35rem;margin-bottom:1rem;color:#374151;font-weight:650;font-size:.95rem}
input,textarea{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(17,24,39,.18);
  background:#fff;
  color:var(--text);
  padding:.75rem .85rem;
}
input:focus,textarea:focus{outline:2px solid rgba(200,31,31,.35);outline-offset:2px}
.form-note{margin:.6rem 0 0;color:var(--muted);font-size:.92rem}

.contact-submit{
  width:100%;
  min-width:0;
  padding:1.05rem 1.4rem;
  font-size:1.05rem;
  margin-top:.15rem;
}

.site-footer{
  margin-top:2rem;
  padding:3.2rem 0 2rem;
  color:var(--footer-text);
  background:
    radial-gradient(1200px 700px at 18% 8%, rgba(255,255,255,.10), transparent 55%),
    radial-gradient(1100px 700px at 82% 88%, rgba(255,255,255,.08), transparent 55%),
    linear-gradient(180deg, var(--footer-bg-1), var(--footer-bg-2));
}

.footer-top{
  display:grid;
  grid-template-columns:1.2fr .9fr 1.1fr;
  gap:3rem;
  align-items:start;
}

.footer-col{min-width:0}

.footer-logo{
  width:max-content;
}
.footer-logo img{
  display:block;
  height:80px;
  width:auto;
}

.footer-tagline{
  margin:1.4rem 0 0;
  font-size:1.15rem;
  line-height:1.7;
  max-width:28ch;
  color:rgba(255,255,255,.70);
}

.footer-title{
  margin:.2rem 0 1rem;
  color:var(--footer-title);
  font-size:1.4rem;
  font-weight:800;
}

.footer-links{
  display:grid;
  gap:.65rem;
}

.site-footer a{
  color:rgba(255,255,255,.72);
  text-decoration:none;
}
.site-footer a:hover,.site-footer a:focus-visible{color:#ffffff}

.footer-contact p{margin:.35rem 0;color:rgba(255,255,255,.70);line-height:1.7}

.footer-divider{
  height:1px;
  background:var(--footer-line);
  margin:2.2rem auto 1.4rem;
}

.footer-bottom{
  text-align:center;
  color:rgba(255,255,255,.62);
}

.footer-bottom p{margin:0;font-size:1.05rem}

@media (max-width: 900px){
  .grid{grid-template-columns:1fr}
  .contact-layout{grid-template-columns:1fr;gap:1.25rem}
  .header-inner{position:relative}
  .site-nav{display:none}
  .site-nav.is-open{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    position:absolute;
    top:calc(100% + .65rem);
    right:0;
    width:min(340px, calc(100vw - 2rem));
    padding:1rem;
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:var(--white);
    box-shadow:var(--shadow-soft);
    z-index:45;
  }
  .nav-toggle{display:inline-flex}

  .brand{min-width:0}

  .hero{padding:4.6rem 0 2.8rem}
  .hero-actions{gap:.8rem}
  .btn{min-width:240px}

  .products-grid{grid-template-columns:1fr;gap:1.25rem}
  .section-head{padding:2rem 0 1.2rem}

  .products-cta{padding:1rem 0 2.2rem}

  .about-inner{grid-template-columns:1fr;gap:1.75rem;padding:2rem 0 1.6rem}
  .about-cards{grid-template-columns:1fr;gap:1.15rem}

  .site-footer{padding:2.6rem 0 1.6rem}
  .footer-top{grid-template-columns:1fr;gap:1.8rem}
  .footer-tagline{max-width:unset}
}

@media (max-width: 1180px){
  .products-grid{gap:1.4rem}

  .about-inner{gap:2.2rem}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
}
