@charset "UTF-8";
:root {
  --logo: #680000;
  --c1: #f5d6d6;
  --c2: #e8b3b3;
  --c3: #f2cfcf;
  --c4: #fcf4ee;
  --c5: #f8e6d8;
  --grey: #e8e9e9;
  --dark: #1a0a0a;
  --mid: #3d1a1a;
  --white: #ffffff;
  --steel: #4a5568;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

header {
  background: var(--white);
  border-bottom: 3px solid var(--logo);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(104, 0, 0, 0.1);
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav a {
  font-family: "Oswald", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  padding: 22px 14px;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  position: relative;
  top: 0;
}

nav a:hover, nav a.active {
  color: var(--logo);
  border-bottom-color: var(--logo);
}

section {
  padding: 90px 80px;
}

footer {
  background: var(--dark);
  color: var(--c1);
  padding: 70px 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand {
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--c2);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h5 {
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--c1);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--c2);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--c1);
}

.footer-contact-item span {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(245, 214, 214, 0.4);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  section {
    padding: 70px 40px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-visual {
    display: none;
  }
  .hero-content {
    padding: 80px 40px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  nav {
    display: none;
  }
  header {
    padding: 0 20px;
  }
  section {
    padding: 60px 20px;
  }
  .why-grid, .ind-grid, .testi-grid, .process-steps {
    grid-template-columns: 1fr;
  }
  .process-steps::before {
    display: none;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .cta-band {
    flex-direction: column;
    padding: 50px 20px;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 50px 20px 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
/* ── TOPBAR ── */
.topbar {
  background: var(--logo);
  color: var(--c1);
  font-size: 0.78rem;
  padding: 7px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.04em;
}

.topbar a {
  color: var(--c2);
  text-decoration: none;
  margin-left: 20px;
}

.topbar a:hover {
  color: var(--white);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.logo-icon {
  width: 54px;
  height: 54px;
  background: var(--logo);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 32px;
  height: 32px;
}

.logo-text .brand {
  font-family: "Oswald", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--logo);
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.logo-text .tagline {
  font-size: 0.7rem;
  color: var(--steel);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-cta {
  background: var(--logo);
  color: var(--white) !important;
  border-radius: 4px;
  padding: 10px 20px !important;
  border-bottom: none !important;
  top: 0 !important;
  margin-left: 10px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--mid) !important;
  border-bottom: none !important;
}

/* ── HERO ── */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--logo) 55%, var(--mid) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-diagonal {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  background: rgba(255, 255, 255, 0.04);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease both;
}

.hero-eyebrow {
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c2);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--c2);
}

.hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero h1 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--c2);
  font-weight: 400;
}

.hero p {
  font-size: 1.05rem;
  color: var(--c1);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--white);
  color: var(--logo);
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--c1);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.stat-num {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--c2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 60px 60px 60px 0;
  animation: fadeUp 0.8s 0.2s ease both;
}

.machine-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 420px;
}

.machine-card-mini {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 24px 18px;
  backdrop-filter: blur(6px);
  text-align: center;
  transition: background 0.25s, transform 0.25s;
  cursor: default;
}

.machine-card-mini:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.machine-card-mini:first-child {
  grid-column: 1/-1;
}

.mc-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.mc-name {
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.section-label {
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--logo);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--logo);
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--steel);
  line-height: 1.7;
  max-width: 600px;
}

/* ── WHY US ── */
.why-us {
  background: var(--c4);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--logo);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
}

.why-text h4 {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.why-text p {
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.6;
}

.why-image-block {
  background: linear-gradient(160deg, var(--logo), var(--mid));
  border-radius: 16px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.why-image-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Crect x='0' y='0' width='2' height='2'/%3E%3C/g%3E%3C/svg%3E");
}

.big-number {
  font-family: "Oswald", sans-serif;
  font-size: 7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 20px;
  right: 20px;
  line-height: 1;
}

.why-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 20px 28px;
  text-align: center;
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
  min-width: 180px;
}

.why-badge .num {
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.why-badge .lbl {
  font-size: 0.72rem;
  color: var(--c2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── PRODUCTS STRIP ── */
.products-strip {
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.prod-card {
  border: 1px solid var(--grey);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  background: var(--white);
}

.prod-card:hover {
  box-shadow: 0 12px 40px rgba(104, 0, 0, 0.12);
  transform: translateY(-5px);
}

.prod-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}

.prod-thumb::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--logo);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.prod-card:hover .prod-thumb::after {
  transform: scaleX(1);
}

.pc-body {
  padding: 20px;
}

.pc-body h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.pc-body p {
  font-size: 0.82rem;
  color: var(--steel);
  line-height: 1.6;
  margin-bottom: 14px;
}

.pc-link {
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--logo);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.pc-link:hover {
  gap: 10px;
}

.bg1 {
  background: var(--c1);
}

.bg2 {
  background: var(--c3);
}

.bg3 {
  background: var(--c5);
}

.bg4 {
  background: var(--c2);
}

/* ── INDUSTRIES ── */
.industries {
  background: var(--dark);
  color: var(--white);
}

.industries .section-label {
  color: var(--c2);
}

.industries .section-label::before {
  background: var(--c2);
}

.industries .section-title {
  color: var(--white);
}

.industries .section-sub {
  color: var(--c1);
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.ind-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 28px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background 0.25s, border-color 0.25s;
}

.ind-item:hover {
  background: rgba(104, 0, 0, 0.35);
  border-color: var(--logo);
}

.ind-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ind-item h4 {
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.ind-item p {
  font-size: 0.82rem;
  color: var(--c1);
  line-height: 1.55;
}

/* ── PROCESS ── */
.process {
  background: var(--c4);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 50px;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--logo), var(--c2));
}

.step {
  text-align: center;
  padding: 0 20px;
}

.step-num {
  width: 72px;
  height: 72px;
  background: var(--logo);
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  border: 4px solid var(--c4);
}

.step h4 {
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.step p {
  font-size: 0.82rem;
  color: var(--steel);
  line-height: 1.6;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(120deg, var(--logo) 0%, var(--mid) 100%);
  padding: 70px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.cta-band p {
  color: var(--c1);
  margin-top: 8px;
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── TESTIMONIAL ── */
.testimonials {
  background: var(--white);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.testi-card {
  background: var(--c4);
  border-radius: 12px;
  padding: 30px 28px;
  border-left: 4px solid var(--logo);
  position: relative;
}

.testi-card::before {
  content: '"';
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  color: var(--c2);
  position: absolute;
  top: -10px;
  right: 20px;
  line-height: 1;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  background: var(--logo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.testi-name {
  font-family: "Oswald", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

.testi-company {
  font-size: 0.75rem;
  color: var(--steel);
}

@media (max-width: 480px) {
  .hero-content {
    padding: 80px 20px 80px 20px;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.8s ease both;
  }
  .hero-stats {
    display: flex;
    gap: 15px;
    margin-top: 48px;
  }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: center;
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 50px;
  }
  .ind-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-top: 50px;
  }
  .ind-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 28px 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: background 0.25s, border-color 0.25s;
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    margin-top: 50px;
    position: relative;
  }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-top: 50px;
  }
  .hero {
    min-height: 88vh;
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 30px;
    animation: fadeUp 0.8s 0.2s ease both;
  }
}

/*# sourceMappingURL=master.css.map */
