/* ─────────────────────────────────────────
   MizTextile LLC — style.css
   Color Palette:
     Navy:  #0B1628
     Gold:  #C9A84C
     Light: #F5F0E8
     Text:  #2C2C2C
   ───────────────────────────────────────── */

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

:root {
  --navy:      #0B1628;
  --navy-mid:  #132038;
  --gold:      #C9A84C;
  --gold-dark: #a8882d;
  --gold-light:#E8D08A;
  --cream:     #F5F0E8;
  --white:     #ffffff;
  --text:      #2C2C2C;
  --text-muted:#6B7280;
  --border:    #E2D9C8;
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(11,22,40,0.10);
  --shadow-lg: 0 12px 48px rgba(11,22,40,0.16);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ─── TYPOGRAPHY ─── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.body-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.gold { color: var(--gold); }

/* ─── LAYOUT ─── */
.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}
.section {
  padding: 96px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-gold-sm {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--gold);
  color: var(--navy);
  transition: all var(--transition);
  margin-top: 1.2rem;
}
.btn-gold-sm:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(11,22,40,0.96);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.logo-miz     { color: var(--gold); }
.logo-textile { color: var(--white); }
.logo-llc     { color: var(--text-muted); font-size: 0.75rem; vertical-align: super; margin-left: 2px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  padding: 9px 22px;
  border-radius: 50px;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold-dark); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: slowZoom 12s ease-in-out alternate infinite;
}
@keyframes slowZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,22,40,0.88) 0%,
    rgba(11,22,40,0.70) 50%,
    rgba(11,22,40,0.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 60px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 720px;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--gold-light); font-weight: 600; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-plus {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.2);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  display: block;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); opacity:1; }
  50%      { transform: translateY(10px); opacity:0.5; }
}

/* ─── TICKER ─── */
.ticker-wrap {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.ticker {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  width: max-content;
}
.ticker span {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.ticker .dot {
  color: var(--gold);
  font-size: 0.6rem;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── ABOUT ─── */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.img-stack {
  position: relative;
}
.img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}
.about-text { padding-right: 20px; }
.about-flags {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.flag-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.flag-item img { border-radius: 3px; }
.flag-arrow {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}

/* ─── PRODUCTS ─── */
.products { background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}
.product-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.product-tag-blue {
  background: var(--navy);
  color: var(--white);
}
.product-tag-purple {
  background: #6B21A8;
  color: var(--white);
}
.product-tag-green {
  background: #166534;
  color: var(--white);
}
.product-tag-rose {
  background: #9D174D;
  color: var(--white);
}
.product-tag-earth {
  background: #7C2D12;
  color: var(--white);
}
.product-body h3 em {
  font-style: normal;
  font-size: 0.9em;
  color: var(--gold);
  margin-left: 4px;
}
.product-body {
  padding: 32px;
}
.product-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.product-body p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.product-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
}
.product-specs li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.product-specs li span {
  font-weight: 600;
  color: var(--navy);
}

/* ─── INDUSTRIES ─── */
.industries { background: var(--cream); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.ind-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}
.ind-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.ind-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.ind-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ind-card:hover .ind-img-wrap img {
  transform: scale(1.06);
}
.ind-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,22,40,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.ind-icon {
  font-size: 1.6rem;
  color: var(--gold);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.ind-body { padding: 28px; }
.ind-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.ind-body p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.ind-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ind-tags span {
  background: rgba(11,22,40,0.06);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

/* ─── WHY US ─── */
.why-us {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
}
.why-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,22,40,0.95) 0%, rgba(11,22,40,0.85) 100%);
}
.why-us .container { position: relative; z-index: 2; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.why-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.why-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.2rem;
  color: var(--gold);
}
.why-icon svg { width: 100%; height: 100%; }
.why-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ─── PROCESS ─── */
.process { background: var(--white); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}
.process-line {
  flex: 0 0 auto;
  height: 2px;
  width: 60px;
  background: linear-gradient(to right, var(--gold), var(--gold-dark));
  margin-top: 32px;
  opacity: 0.4;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}
.step-content h4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── CONTACT ─── */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact-left .section-title { text-align: left; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.c-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.c-icon svg { width: 18px; height: 18px; }
.contact-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-item span {
  font-size: 0.95rem;
  color: #555;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0a9a0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}
.form-success {
  text-align: center;
  padding: 14px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-sm);
  color: #16a34a;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 12px;
}
.hidden { display: none !important; }

/* ─── FOOTER ─── */
.footer {
  background: var(--navy);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}
.footer-links-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about-grid    { gap: 48px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-top    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links { 
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11,22,40,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.2rem; }
  .nav-hamburger { display: flex; z-index: 1001; position: relative; }

  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

  .about-grid      { grid-template-columns: 1fr; gap: 48px; }
  .img-accent      { display: none; }
  .about-text      { padding-right: 0; }

  .products-grid   { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr; }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .process-line {
    width: 2px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
  }
  .process-step { padding: 0; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top    { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
