/* ============================================================
   MISS WEBSITE — SHARED DESIGN SYSTEM
   Metro Sign Installation & Supplies LLC
   missigns.com | (240) 755-6802
============================================================ */

/* Google Fonts loaded in each HTML file */

:root {
  --green-deep:   #0d3b2e;
  --green-mid:    #1a5c45;
  --green-light:  #2a7a5c;
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --cream:        #f9f6f0;
  --white:        #ffffff;
  --gray-100:     #f4f4f2;
  --gray-200:     #e8e6e1;
  --gray-600:     #6b6b6b;
  --gray-800:     #2c2c2c;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', sans-serif;
  --nav-h:        80px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--gray-800); background: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Utilities ─────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; line-height: 1.15;
  color: var(--green-deep);
}
.section-title.light { color: var(--white); }

.divider { width: 60px; height: 2px; background: var(--gold); margin: 20px 0 32px; }
.divider.center { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans); font-size: 13px;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; border: none; transition: var(--transition);
}
.btn-primary { background: var(--gold); color: var(--green-deep); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-dark { background: var(--green-deep); color: var(--white); }
.btn-dark:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,59,46,0.35); }

/* ── Top Bar ───────────────────────────────────────────── */
#top-bar {
  background: var(--green-deep); padding: 10px 0;
  text-align: center; font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.75);
}
#top-bar a { color: var(--gold); font-weight: 600; transition: color var(--transition); }
#top-bar a:hover { color: var(--gold-light); }

/* ── Sticky Nav ────────────────────────────────────────── */
#nav {
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-h); background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
#nav .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-badge {
  width: 44px; height: 44px; background: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 18px; font-weight: 700;
  color: var(--gold); letter-spacing: 0.05em;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text .brand-name { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--green-deep); letter-spacing: 0.04em; }
.nav-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-600); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-800); position: relative; transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--green-deep); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-size: 13px; font-weight: 600; color: var(--green-deep); letter-spacing: 0.04em; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green-deep); transition: var(--transition); }

.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  padding: 24px; z-index: 999; box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }
.mobile-menu ul a { font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-deep); }

/* ── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  background: var(--green-deep); padding: 80px 0;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.page-hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.page-hero-eyebrow-text { font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.page-hero-title { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 600; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.page-hero-sub { font-size: 15px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.7); max-width: 560px; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.breadcrumb a { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { font-size: 12px; color: rgba(255,255,255,0.3); }
.breadcrumb .current { font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.06em; }

/* ── Ticker ────────────────────────────────────────────── */
#ticker { background: var(--gold); padding: 14px 0; overflow: hidden; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker-scroll 28s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 24px; padding: 0 32px; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-deep); }
.ticker-dot { width: 5px; height: 5px; background: var(--green-deep); border-radius: 50%; opacity: 0.5; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Stats Bar ─────────────────────────────────────────── */
#stats { background: var(--green-deep); padding: 64px 0; position: relative; }
#stats::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
#stats::after  { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 24px 16px; border-right: 1px solid rgba(201,168,76,0.2); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-serif); font-size: 3.2rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

/* ── CTA Band ──────────────────────────────────────────── */
.cta-band { background: var(--gold); padding: 56px 0; text-align: center; }
.cta-band-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; color: var(--green-deep); margin-bottom: 8px; }
.cta-band-sub { font-size: 14px; font-weight: 500; color: rgba(13,59,46,0.7); margin-bottom: 32px; letter-spacing: 0.04em; }
.cta-band-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── Footer ────────────────────────────────────────────── */
#footer { background: #071f18; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(201,168,76,0.15); margin-bottom: 32px; }
.footer-brand-name { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer-brand-sub { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-desc { font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.45); margin-bottom: 24px; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-contact-icon { color: var(--gold); font-size: 14px; min-width: 16px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.3); }
.footer-copy a { color: var(--gold); }

/* ── Mobile Sticky Bar ─────────────────────────────────── */
#mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1100; height: 60px; }
#mobile-bar a, #mobile-bar button { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-sans); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border: none; cursor: pointer; }
#mobile-bar .bar-call { background: var(--green-deep); color: var(--white); }
#mobile-bar .bar-quote { background: var(--gold); color: var(--green-deep); }

/* ── Form Styles ───────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-600); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; font-family: var(--font-sans); font-size: 14px; color: var(--gray-800); background: var(--white); border: 1px solid var(--gray-200); outline: none; transition: border-color var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-mid); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 16px; background: var(--green-deep); color: var(--white); font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border: none; cursor: pointer; transition: var(--transition); margin-top: 8px; }
.form-submit:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,59,46,0.3); }

/* ── Scroll Animations ─────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #mobile-bar { display: flex; }
  #footer { padding-bottom: 80px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
