/* ==========================================================================
   3rd Bell International — Static Site
   Rebuilt from Figma spec (Elementor/WordPress site retired)
   ========================================================================== */

:root {
  --color-orange: #EF7D00;
  --color-black: #10100F;
  --color-offwhite: #FEF8F0;
  --color-dark-ash: #6F6F6E;
  --color-ash: #DADADA;
  --color-white: #FFFFFF;
  --color-text-gray: #565656;

  --font-heading: 'Merriweather', serif;
  --font-body: 'Poppins', sans-serif;

  --max-width: 1410px;
  --radius-pill: 57px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-black);
  background: var(--color-offwhite);
  line-height: 1.5;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

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

/* ---------- Typography ---------- */

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-black);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 49px;
  height: 1px;
  background: var(--color-dark-ash);
  opacity: 0.5;
}
.eyebrow.on-dark { color: var(--color-white); }
.eyebrow.on-dark::before { background: var(--color-white); opacity: 1; }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::before { display: none; }

.section-title {
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.03em;
  color: var(--color-orange);
  line-height: 1.25;
}
.section-title.centered { text-align: center; }
.section-title.dark { color: var(--color-black); }
.section-title.big { font-size: clamp(32px, 5.5vw, 55px); }

.body-text {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text-gray);
  text-align: justify;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--color-offwhite); color: var(--color-black); }
.btn-orange { background: var(--color-orange); color: var(--color-offwhite); }
.btn-outline { background: transparent; color: var(--color-offwhite); border: 1px solid var(--color-offwhite); }
.btn-outline-dark { background: transparent; color: var(--color-black); border: 1px solid var(--color-black); }

.btn .icon-arrow {
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn .icon-arrow svg { width: 100%; height: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-offwhite);
  border-bottom: 1px solid rgba(111,111,110,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 24px;
}

.logo img { height: 44px; width: auto; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-black);
}
.main-nav a.active,
.main-nav a:hover { color: var(--color-orange); }

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

.header-cta { flex-shrink: 0; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}

.hero-video-bg {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-video-bg video {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(254,248,240,1) 0%, rgba(254,248,240,0.55) 55%, rgba(254,248,240,0.1) 100%);
}

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

.hero-content { max-width: 620px; }

.hero h1 {
  font-weight: 900;
  font-size: clamp(32px, 5vw, 55px);
  letter-spacing: 0.02em;
  color: var(--color-black);
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--color-orange); }

.hero p {
  font-size: 20px;
  color: var(--color-black);
  margin-bottom: 32px;
}

/* ==========================================================================
   Trusted-by strip
   ========================================================================== */

.trust {
  padding: 60px 0 40px;
  text-align: center;
}

.trust-heading {
  font-size: 14px;
  color: var(--color-text-gray);
  margin-bottom: 6px;
}

.stars { color: var(--color-orange); letter-spacing: 3px; margin-bottom: 6px; }

.trust h2 { margin-bottom: 36px; }

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.trust-logos .logo-card {
  width: 170px;
  height: 75px;
  background: var(--color-white);
  border: 1px solid rgba(111,111,110,0.4);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
}
.trust-logos .logo-card.featured {
  border: 1.5px solid var(--color-orange);
  box-shadow: 3px 3px 19px rgba(255,198,136,0.45);
}
.trust-logos .logo-card img { max-height: 40px; width: auto; object-fit: contain; }

/* ==========================================================================
   About / stats intro
   ========================================================================== */

.about {
  padding: 80px 0;
}

.about .container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-media {
  position: relative;
  flex: 0 0 340px;
}
.about-media img.main-photo {
  border-radius: 300px;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-media .badge {
  position: absolute;
  top: 20px;
  left: -20px;
  background: var(--color-orange);
  color: var(--color-white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 8px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
}

.about-body { flex: 1; }

.about-body p { margin: 24px 0 32px; }

.about-features { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.about-features .row { display: flex; gap: 60px; flex-wrap: wrap; }
.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text-gray);
}
.feature .dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--color-ash);
  flex-shrink: 0;
}
.feature.active .dot { background: var(--color-orange); }

/* ==========================================================================
   Products & Solutions (dark accordion)
   ========================================================================== */

.products {
  background: var(--color-black);
  border-radius: 40px;
  max-width: calc(var(--max-width) + 120px);
  margin: 0 auto 80px;
  padding: 60px 40px;
}

.products .eyebrow, .products .section-title { text-align: center; justify-content: center; }
.products .eyebrow::before { display: none; }
.products .section-title { margin-bottom: 40px; }

.product-list { display: flex; flex-direction: column; }
.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 20px;
  border-top: 1px solid rgba(254,248,240,0.2);
}
.product-list .product-row:last-child { border-bottom: 1px solid rgba(254,248,240,0.2); }

.product-row h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-offwhite);
  margin-bottom: 4px;
}
.product-row p { font-size: 16px; color: var(--color-offwhite); opacity: 0.8; }

.product-row .btn { flex-shrink: 0; }

/* ==========================================================================
   Stats / "Front runner" section
   ========================================================================== */

.stats {
  padding: 80px 0;
  position: relative;
}

.stats .container { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }

.stats-text { flex: 1; min-width: 280px; }
.stats-text p { margin: 24px 0; max-width: 601px; }

.stats-map {
  flex: 1;
  min-width: 280px;
  position: relative;
  min-height: 260px;
}
.stats-map img { opacity: 0.5; mix-blend-mode: multiply; }

.stat-cards {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-content: center;
}
.stat-card {
  background: var(--color-white);
  border: 1px solid rgba(111,111,110,0.15);
  border-radius: 25px;
  padding: 20px;
  text-align: center;
}
.stat-card.highlight {
  background: var(--color-orange);
  box-shadow: 4px 4px 18px #FFC688;
  color: var(--color-offwhite);
}
.stat-card .num {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 32px;
  color: var(--color-text-gray);
}
.stat-card.highlight .num { color: var(--color-offwhite); }
.stat-card .rule {
  width: 60px; height: 2px;
  background: var(--color-text-gray);
  margin: 6px auto;
  border-radius: 26px;
}
.stat-card.highlight .rule { background: var(--color-offwhite); }
.stat-card .label { font-size: 16px; color: var(--color-text-gray); }
.stat-card.highlight .label { color: var(--color-offwhite); }

/* ==========================================================================
   CTA band "Have An Idea?"
   ========================================================================== */

.cta-band {
  position: relative;
  background: var(--color-black);
  border-radius: 40px;
  max-width: calc(var(--max-width) + 120px);
  margin: 0 auto 80px;
  overflow: hidden;
  padding: 80px 60px;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: url('../assets/images/footer-bg.jpg') center/cover;
  mix-blend-mode: soft-light;
  opacity: 0.5;
}
.cta-band .inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-weight: 900;
  font-size: clamp(32px, 5vw, 64px);
  color: var(--color-offwhite);
  letter-spacing: 0.02em;
  max-width: 620px;
}
.cta-band h2 .accent { color: var(--color-orange); }
.cta-band .cta-right { max-width: 400px; }
.cta-band .cta-right p { color: var(--color-offwhite); font-size: 18px; margin-bottom: 24px; text-align: justify; }
.cta-band .contact-line {
  display: flex; align-items: center; gap: 25px; flex-wrap: wrap; margin-top: 32px;
}
.cta-band .phone {
  font-family: var(--font-heading); font-weight: 900; font-size: 28px; color: var(--color-white);
}
.cta-band .email {
  font-family: var(--font-heading); font-weight: 700; font-size: 18px; color: var(--color-white); text-decoration: underline;
}

/* ==========================================================================
   Certifications
   ========================================================================== */

.certifications { padding: 40px 0 80px; text-align: center; }
.certifications .eyebrow, .certifications .section-title { justify-content: center; text-align: center; }
.certifications .eyebrow::before { display: none; }
.certifications .section-title { margin-bottom: 40px; }

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.cert-grid img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  background: var(--color-white);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(111,111,110,0.15);
}

/* ==========================================================================
   Blog / Updates
   ========================================================================== */

.updates {
  background: var(--color-black);
  border-radius: 40px;
  max-width: calc(var(--max-width) + 120px);
  margin: 0 auto 80px;
  padding: 60px 40px;
}
.updates .eyebrow, .updates .section-title { justify-content: center; text-align: center; }
.updates .eyebrow::before { display: none; }
.updates .section-title { margin-bottom: 40px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--color-offwhite);
  border-radius: 30px;
  overflow: hidden;
}
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card .content { padding: 24px; }
.blog-card h3 {
  font-family: var(--font-heading); font-weight: 700; font-size: 22px;
  color: var(--color-black); margin-bottom: 10px; line-height: 1.3;
}
.blog-card p { font-size: 15px; color: var(--color-text-gray); margin-bottom: 16px; text-align: left; }
.blog-card .meta {
  display: flex; gap: 24px; font-size: 14px; color: var(--color-text-gray); margin-bottom: 16px;
}
.blog-card .read-more {
  font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--color-black);
  display: inline-flex; align-items: center; gap: 6px;
}

.photo-strip {
  display: flex;
  width: 100%;
}
.photo-strip img {
  flex: 1;
  height: 260px;
  object-fit: cover;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  position: relative;
  background: var(--color-black);
  padding: 80px 0 30px;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute; inset: 0;
  background: url('../assets/images/footer-bg.jpg') center/cover;
  mix-blend-mode: soft-light;
  opacity: 0.5;
}
.site-footer .container { position: relative; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-col h4 {
  font-family: var(--font-heading); font-weight: 700; font-size: 22px;
  color: var(--color-white); margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 20px; }
.footer-links a {
  font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--color-white);
}
.footer-links a:hover { color: var(--color-orange); }

.footer-about { text-align: center; }
.footer-about img { height: 50px; margin: 0 auto 20px; }
.footer-about p { color: var(--color-white); font-size: 15px; text-align: center; opacity: 0.85; margin-bottom: 20px; }
.footer-social { display: flex; justify-content: center; gap: 16px; margin-bottom: 24px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--color-white); color: var(--color-black);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.footer-social a:hover { background: var(--color-orange); color: var(--color-white); }

.footer-newsletter {
  display: flex;
  align-items: center;
  background: var(--color-white);
  border-radius: 300px;
  box-shadow: 0 0 30px rgba(0,0,0,0.1);
  padding: 6px 6px 6px 24px;
  max-width: 420px;
  margin: 0 auto;
}
.footer-newsletter input {
  flex: 1; border: none; outline: none; font-family: var(--font-heading);
  font-size: 16px; color: var(--color-black); background: transparent;
}
.footer-newsletter button {
  width: 44px; height: 44px; border-radius: 50%; background: var(--color-orange);
  border: none; color: var(--color-white); cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}

.footer-contact-list { display: flex; flex-direction: column; gap: 20px; align-items: flex-end; }
.footer-contact-item { display: flex; align-items: center; gap: 16px; text-align: right; }
.footer-contact-item .text { color: var(--color-white); font-family: var(--font-heading); font-weight: 700; font-size: 16px; line-height: 1.4; }
.footer-contact-item .icon-circle {
  width: 44px; height: 44px; border-radius: 50%; background: var(--color-orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  text-align: center;
  color: var(--color-white);
  font-size: 15px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .about .container { flex-direction: column; }
  .stats .container { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-links { align-items: center; }
  .footer-contact-list { align-items: center; }
  .footer-contact-item { flex-direction: column; text-align: center; }
  .cta-band h2 { font-size: 36px; }
}

@media (max-width: 600px) {
  .header-cta { display: none; }
  .hero { text-align: center; }
  .hero-content { margin: 0 auto; }
}

/* ==========================================================================
   Page hero banner (About/Products/Blog/Contact)
   ========================================================================== */

.page-hero {
  position: relative;
  height: 280px;
  border-radius: 30px;
  max-width: var(--max-width);
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-black);
}
.page-hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.15;
}
.page-hero .content { position: relative; text-align: center; color: var(--color-offwhite); }
.page-hero h1 {
  font-weight: 900; font-size: 40px; letter-spacing: 0.03em; margin-bottom: 12px;
}
.breadcrumb { font-size: 16px; display: flex; gap: 8px; justify-content: center; align-items: center; }
.breadcrumb a { color: var(--color-offwhite); }
.breadcrumb .current { color: var(--color-orange); }

/* ==========================================================================
   Two-column media/text split (About "Who We Are")
   ========================================================================== */

.split-section { padding: 60px 0; }
.split-section .container { display: flex; gap: 60px; align-items: flex-start; flex-wrap: wrap; }
.split-media { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 20px; }
.split-media img { border-radius: 30px; width: 100%; object-fit: cover; }
.split-text { flex: 1; min-width: 300px; }
.split-text h2.big-serif {
  font-family: var(--font-heading); font-weight: 900; font-size: clamp(32px,5vw,55px);
  letter-spacing: 0.02em; margin-bottom: 18px; color: var(--color-black);
}
.split-text p { font-size: 18px; line-height: 1.6; color: var(--color-black); text-align: justify; margin-bottom: 16px; }
.split-text p.muted { color: var(--color-text-gray); }

/* Mission / Vision blocks */
.mv-block { padding: 70px 0; }
.mv-block.dark { background: var(--color-black); }
.mv-block .container { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.mv-block .mv-media { flex: 1; min-width: 280px; }
.mv-block .mv-media img { width: 100%; border-radius: 30px; }
.mv-block .mv-text { flex: 1; min-width: 280px; }
.mv-block.dark .eyebrow { color: var(--color-offwhite); }
.mv-block.dark .eyebrow::before { background: var(--color-offwhite); }
.mv-block.dark p { color: var(--color-offwhite); }
.mv-block p { font-size: 18px; line-height: 1.6; text-align: justify; color: var(--color-black); }

/* Directors */
.directors { background: var(--color-black); padding: 70px 0; text-align: center; }
.directors .eyebrow, .directors .section-title { justify-content: center; }
.directors .eyebrow::before { display: none; }
.directors .section-title { margin-bottom: 40px; }
.director-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.director-card { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.director-avatar {
  width: 100%; max-width: 320px; aspect-ratio: 4/5; border-radius: 90px;
  background: linear-gradient(135deg, rgba(239,125,0,0.25), rgba(111,111,110,0.25));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.director-avatar .initials {
  font-family: var(--font-heading); font-weight: 900; font-size: 48px; color: var(--color-offwhite);
}
.director-card h3 {
  font-family: var(--font-heading); font-weight: 700; font-size: 26px; color: var(--color-offwhite);
  letter-spacing: 0.02em;
}
.director-card .role { color: var(--color-orange); font-size: 20px; }

/* Product mini-cards (About page) */
.product-mini-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
}
.product-mini-card {
  background: rgba(16,16,15,0.06); border-radius: 28px; padding: 32px 28px;
}
.product-mini-card .icon-circle {
  width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--color-orange);
  background: var(--color-white); display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.product-mini-card h3 {
  font-family: var(--font-heading); font-weight: 700; font-size: 24px; color: var(--color-orange); margin-bottom: 8px;
}
.product-mini-card p { color: var(--color-text-gray); font-size: 16px; line-height: 1.5; }

/* ==========================================================================
   Products & Solutions page — hero + spec list
   ========================================================================== */

.product-hero {
  position: relative; border-radius: 30px; overflow: hidden; max-width: var(--max-width);
  margin: 40px auto; min-height: 520px; display: flex; align-items: flex-end;
  background: var(--color-black);
}
.product-hero .bg-image {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.product-hero .scrim {
  position: absolute; inset: 0; background: rgba(16,16,15,0.7);
}
.product-hero .content { position: relative; padding: 60px; max-width: 700px; }
.product-hero h1 {
  font-family: var(--font-heading); font-weight: 900; font-size: clamp(32px,5vw,55px);
  color: var(--color-orange); letter-spacing: 0.03em; margin-bottom: 14px;
}
.product-hero p { color: var(--color-offwhite); font-size: 18px; margin-bottom: 24px; }

.spec-columns { display: flex; gap: 60px; flex-wrap: wrap; padding: 20px 0 60px; }
.spec-col { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 28px; }
.spec-col .item {
  font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--color-text-gray);
  cursor: pointer;
  transition: color 0.2s ease;
}
.spec-col .item:hover { color: var(--color-orange); }

.machine-capacity { background: var(--color-black); padding: 70px 0; }
.machine-capacity .container { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.machine-media { flex: 1; min-width: 280px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.machine-media img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; }
.machine-text { flex: 1.3; min-width: 280px; }
.machine-text .eyebrow { color: var(--color-offwhite); }
.machine-text .eyebrow::before { background: var(--color-offwhite); }
.spec-table { display: flex; flex-direction: column; gap: 16px; margin-top: 12px; }
.spec-row { display: flex; gap: 20px; }
.spec-row .label { flex: 0 0 220px; color: var(--color-offwhite); font-weight: 700; font-family: var(--font-heading); }
.spec-row .value { color: var(--color-offwhite); opacity: 0.85; }

/* ==========================================================================
   Blog listing page
   ========================================================================== */

.blog-list { display: flex; flex-direction: column; gap: 30px; padding: 40px 0 60px; }
.blog-list-card {
  position: relative; border-radius: 30px; overflow: hidden; min-height: 340px;
  display: flex; align-items: flex-end; padding: 40px;
}
.blog-list-card img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.blog-list-card .scrim {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,16,15,0.05) 0%, rgba(16,16,15,0.85) 90%);
}
.blog-list-card .content { position: relative; width: 100%; }
.blog-list-card .tag {
  display: inline-block; background: var(--color-orange); color: var(--color-offwhite);
  font-family: var(--font-heading); font-weight: 700; font-size: 16px;
  padding: 10px 18px; border-radius: 10px; margin-bottom: 24px;
}
.blog-list-card h2 {
  font-family: var(--font-heading); font-weight: 900; font-size: clamp(24px,3.5vw,36px);
  color: var(--color-white); letter-spacing: 0.02em; margin-bottom: 14px;
}
.blog-list-card hr { border: none; border-top: 1px solid var(--color-offwhite); margin-bottom: 14px; }
.blog-list-card .meta-row { display: flex; justify-content: space-between; color: var(--color-offwhite); font-size: 16px; }

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-split { padding: 40px 0 60px; }
.contact-split .container { display: flex; gap: 50px; flex-wrap: wrap; }
.contact-panel {
  flex: 1; min-width: 300px; position: relative; border-radius: 30px; overflow: hidden;
  min-height: 480px; display: flex; flex-direction: column; justify-content: center; padding: 50px;
}
.contact-panel img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-panel .scrim { position: absolute; inset: 0; background: rgba(16,16,15,0.75); }
.contact-panel .content { position: relative; }
.contact-panel h2 {
  font-family: var(--font-heading); font-weight: 900; font-size: clamp(32px,5vw,48px);
  color: var(--color-white); letter-spacing: 0.02em; margin-bottom: 20px; line-height: 1.2;
}
.contact-panel h2 .accent { color: var(--color-orange); }
.contact-panel p { color: var(--color-offwhite); font-size: 17px; line-height: 1.6; text-align: justify; }

.contact-form-wrap { flex: 1; min-width: 300px; }
.contact-form-wrap h2.section-title { margin-bottom: 24px; }
.form-row { display: flex; gap: 24px; margin-bottom: 20px; flex-wrap: wrap; }
.form-field { flex: 1; min-width: 220px; display: flex; flex-direction: column; gap: 10px; }
.form-field label { font-family: var(--font-heading); font-weight: 700; font-size: 18px; color: var(--color-text-gray); }
.form-field input, .form-field textarea {
  background: rgba(254,248,240,0.65); border: 1px solid rgba(218,218,218,0.65);
  border-radius: 15px; padding: 16px 20px; font-family: var(--font-body); font-size: 16px; color: var(--color-black);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--color-orange); }
.btn-black { background: var(--color-black); color: var(--color-offwhite); border: none; }

.contact-info-bar {
  background: var(--color-black); border-radius: 40px; max-width: calc(var(--max-width) + 120px);
  margin: 0 auto 40px; padding: 40px 50px; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px;
}
.contact-info-item { display: flex; align-items: center; gap: 18px; }
.contact-info-item .icon-circle {
  width: 56px; height: 56px; border-radius: 50%; background: var(--color-orange);
  display: flex; align-items: center; justify-content: center; color: var(--color-white); font-size: 20px; flex-shrink: 0;
}
.contact-info-item .text { color: var(--color-white); font-family: var(--font-heading); font-weight: 700; font-size: 17px; line-height: 1.4; }

.office-map { padding: 0 0 60px; }
.office-map .frame {
  background: var(--color-black); border-radius: 40px; max-width: calc(var(--max-width) + 120px);
  margin: 0 auto; padding: 60px; text-align: center;
}
.office-map h2 { color: var(--color-offwhite); margin-bottom: 30px; }
.office-map iframe { width: 100%; height: 420px; border: 0; border-radius: 20px; }

/* Responsive additions */
@media (max-width: 900px) {
  .split-section .container, .mv-block .container, .machine-capacity .container, .contact-split .container { flex-direction: column; }
  .contact-info-bar { flex-direction: column; align-items: center; text-align: center; }
}
