/* ============================================================
   CUBRIGHT MANUFACTURING LIMITED — Corporate Website
   Premium Navy · Copper · White
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0B1E3D;
  --navy-mid:    #0f2850;
  --navy-light:  #1a3a6b;
  --copper:      #B87333;
  --copper-light:#C8893F;
  --copper-pale: #e8c98a;
  --white:       #ffffff;
  --off-white:   #F7F5F2;
  --mid-grey:    #9aa3b0;
  --text-dark:   #1a1a1a;
  --text-body:   #3a4252;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --container:   1200px;
  --section-gap: 100px;
  --radius:      4px;
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }
ul { list-style: none; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}
.btn-primary:hover {
  background: var(--copper-light);
  border-color: var(--copper-light);
  transform: translateY(-1px);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-full { width: 100%; }

/* ── SECTION BASE ─────────────────────────────────────────── */
.section { padding: var(--section-gap) 0; }

/* ── REVEAL ANIMATION ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────────────────────
   NAV
   ────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: linear-gradient(to bottom, rgba(11,30,61,0.65), transparent);
  padding: 0;
}
.site-nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 3px;
  transition: opacity 0.3s ease;
}
/* Default state: show white logo, hide colour logo */
.logo-white { display: block; }
.logo-color  { display: none; }
/* Scrolled state: show colour logo, hide white logo */
.site-nav.scrolled .logo-white { display: none; }
.site-nav.scrolled .logo-color  { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--white); }
/* When scrolled, nav turns white — links go dark */
.site-nav.scrolled .nav-links a {
  color: var(--navy);
}
.site-nav.scrolled .nav-links a:hover {
  color: var(--copper);
}
.nav-links .nav-cta {
  background: var(--copper);
  color: var(--white);
  padding: 9px 22px;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--copper-light); }
.site-nav.scrolled .nav-links .nav-cta {
  color: var(--white);
}
/* Hamburger bars — go dark on white nav */
.site-nav.scrolled .nav-hamburger span {
  background: var(--navy);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.mobile-menu nav a {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu nav a:hover { color: var(--copper); }

.mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px;
}

/* ──────────────────────────────────────────────────────────
   SECTION 1 — HERO
   ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11,30,61,0.88) 0%,
    rgba(11,30,61,0.65) 55%,
    rgba(11,30,61,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px 40px 80px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-pale);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.hero-support {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-style: italic;
}

/* Metrics */
.hero-metrics {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 2.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  width: fit-content;
  max-width: 100%;
  backdrop-filter: blur(8px);
}
.metric-block {
  display: flex;
  flex-direction: column;
  padding: 20px 28px;
}
.metric-value {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--copper-pale);
  line-height: 1.1;
  margin-bottom: 4px;
}
.metric-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
}
.metric-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  margin: 16px 0;
}

/* Hero actions */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ──────────────────────────────────────────────────────────
   SECTION 2 — ABOUT
   ────────────────────────────────────────────────────────── */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.about-headline-col .section-title {
  position: sticky;
  top: 120px;
}

.about-body-col p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  color: var(--text-body);
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(11,30,61,0.1);
  flex-wrap: wrap;
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--copper);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--mid-grey);
  letter-spacing: 0.04em;
}

/* ──────────────────────────────────────────────────────────
   SECTION 3 — CAPACITY
   ────────────────────────────────────────────────────────── */
.capacity-section {
  background: var(--off-white);
  border-top: 1px solid rgba(11,30,61,0.06);
  border-bottom: 1px solid rgba(11,30,61,0.06);
}

.capacity-intro {
  max-width: 680px;
  margin-bottom: 3.5rem;
}
.capacity-lead {
  color: var(--text-body);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.capacity-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5px;
  border: 1.5px solid rgba(11,30,61,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(11,30,61,0.08);
}

.capacity-card {
  background: var(--white);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: background var(--transition);
}
.capacity-card:hover { background: var(--navy); }
.capacity-card:hover .cap-icon,
.capacity-card:hover .cap-label { color: rgba(255,255,255,0.6); }
.capacity-card:hover .cap-value { color: var(--copper-pale); }

.cap-icon {
  width: 36px;
  height: 36px;
  color: var(--copper);
  transition: color var(--transition);
}
.cap-icon svg { width: 100%; height: 100%; }

.cap-value {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  transition: color var(--transition);
}
.cap-label {
  font-size: 0.8125rem;
  color: var(--mid-grey);
  line-height: 1.4;
  transition: color var(--transition);
}

/* ──────────────────────────────────────────────────────────
   SECTION 4 — PRODUCT
   ────────────────────────────────────────────────────────── */
.product-section { background: var(--white); }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.product-content p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--copper);
  color: var(--copper);
  border-radius: 2px;
}

.product-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(11,30,61,0.15);
}

/* ──────────────────────────────────────────────────────────
   SECTION 5 — PROCESS
   ────────────────────────────────────────────────────────── */
.process-section {
  background: var(--navy);
  color: var(--white);
}
.process-section .section-label { color: var(--copper-pale); }
.process-section .section-title { color: var(--white); }

.process-lead {
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
  max-width: 580px;
  margin-bottom: 3.5rem;
  line-height: 1.8;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-step {
  background: rgba(255,255,255,0.03);
  padding: 36px 28px;
  position: relative;
  transition: background var(--transition);
}
.process-step:hover { background: rgba(255,255,255,0.07); }

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-icon {
  width: 40px;
  height: 40px;
  color: var(--copper);
  margin-bottom: 1rem;
}
.step-icon svg { width: 100%; height: 100%; }

.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.process-step p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ──────────────────────────────────────────────────────────
   SECTION 6 — WHY CUBRIGHT
   ────────────────────────────────────────────────────────── */
.why-section {
  background: var(--off-white);
  border-top: 1px solid rgba(11,30,61,0.06);
}

.why-lead {
  font-size: 1.0625rem;
  color: var(--text-body);
  max-width: 680px;
  margin-bottom: 3.5rem;
  line-height: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: rgba(11,30,61,0.1);
  border: 1.5px solid rgba(11,30,61,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.why-card {
  background: var(--white);
  padding: 36px 28px;
  transition: background var(--transition);
}
.why-card:hover { background: var(--navy); }
.why-card:hover .why-icon { color: var(--copper); }
.why-card:hover h3 { color: var(--white); }
.why-card:hover p { color: rgba(255,255,255,0.65); }

.why-icon {
  width: 40px;
  height: 40px;
  color: var(--copper);
  margin-bottom: 1.25rem;
  transition: color var(--transition);
}
.why-icon svg { width: 100%; height: 100%; }

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.why-card p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.7;
  transition: color var(--transition);
}

/* ──────────────────────────────────────────────────────────
   SECTION 7 — FACILITY
   ────────────────────────────────────────────────────────── */
.facility-section { background: var(--white); }

.facility-lead {
  font-size: 1.0625rem;
  color: var(--text-body);
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 1.5px solid rgba(11,30,61,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(11,30,61,0.08);
}

.facility-img-wrap {
  position: relative;
  overflow: hidden;
  cursor: default;
  margin: 0;
}

.facility-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}
.facility-img-wrap:hover img { transform: scale(1.04); }

figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(11,30,61,0.85), transparent);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ──────────────────────────────────────────────────────────
   SECTION 8 — LOCATION
   ────────────────────────────────────────────────────────── */
.location-section {
  background: var(--navy);
  color: var(--white);
}
.location-section .section-label { color: var(--copper-pale); }
.location-section .section-title { color: var(--white); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.location-content p {
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.location-address {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.address-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--copper);
  margin-top: 3px;
}
.address-icon svg { width: 100%; height: 100%; }
.location-address strong { color: var(--white); font-weight: 600; }

.location-map img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}
.google-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  line-height: 0;
}
.google-map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  filter: grayscale(20%) contrast(1.05);
}

/* ──────────────────────────────────────────────────────────
   SECTION 9 — FINAL CTA
   ────────────────────────────────────────────────────────── */
.cta-section { background: var(--off-white); }

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.copper-rule {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  margin: 2rem 0;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.cta-body {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* ──────────────────────────────────────────────────────────
   SECTION 10 — CONTACT
   ────────────────────────────────────────────────────────── */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: var(--text-body);
}
.contact-detail svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--copper);
  margin-top: 2px;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(11,30,61,0.15);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(184,115,51,0.12);
}
.form-group input.error,
.form-group textarea.error { border-color: #d94f4f; }

.form-error {
  font-size: 0.8rem;
  color: #d94f4f;
  min-height: 18px;
}
.form-success {
  font-size: 0.9375rem;
  color: #2a7a4b;
  font-weight: 500;
  text-align: center;
  padding: 10px 0;
}

/* ──────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 70px 0 30px;
  border-top: 3px solid var(--copper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
  border-radius: 3px;
  background: transparent;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4,
.footer-address h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-pale);
  margin-bottom: 1.25rem;
}

.footer-links ul li + li { margin-top: 0.6rem; }
.footer-links ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--white); }

.footer-address address {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.footer-powered {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.footer-powered a {
  color: var(--copper-pale);
  font-weight: 500;
  transition: color var(--transition);
}
.footer-powered a:hover {
  color: var(--white);
}

/* ──────────────────────────────────────────────────────────
   TOAST
   ────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--navy);
  color: var(--white);
  border-left: 3px solid var(--copper);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
  z-index: 9999;
  max-width: 360px;
}
.toast svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--copper);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────────────────── */

/* Large tablet */
@media (max-width: 1100px) {
  .capacity-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .google-map-wrap iframe { height: 360px; }
}

/* Tablet */
@media (max-width: 900px) {
  :root { --section-gap: 70px; }
  .container { padding: 0 28px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-headline-col .section-title { position: static; }

  .product-grid { grid-template-columns: 1fr; gap: 3rem; }
  .product-image img { height: 340px; }

  .location-grid { grid-template-columns: 1fr; gap: 3rem; }
  .location-map img { height: 300px; }
  .google-map-wrap iframe { height: 300px; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .facility-grid { grid-template-columns: 1fr; gap: 1.5px; }
  .facility-img-wrap img { height: 260px; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --section-gap: 56px; }
  .container { padding: 0 20px; }

  .hero-content { padding: 120px 20px 60px; }
  .hero-metrics {
    flex-direction: column;
    width: 100%;
  }
  .metric-divider { width: 100%; height: 1px; margin: 0 20px; width: auto; }
  .hero-actions { flex-direction: column; }

  .capacity-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .about-stats { flex-direction: column; gap: 1.25rem; }
  .cta-actions { flex-direction: column; align-items: stretch; }

  .toast { left: 20px; right: 20px; bottom: 20px; max-width: none; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 420px) {
  .capacity-grid { grid-template-columns: 1fr; }
  .logo-img { height: 38px; }
  .footer-logo { height: 38px; }
}

/* ── PRINT ────────────────────────────────────────────────── */
@media print {
  .site-nav, .toast { display: none; }
  .hero { min-height: auto; }
  .hero-overlay { display: none; }
  .hero-img { position: static; height: 400px; }
}
