/* ============================================================
   PRIMETIME CONSTRUCTION — SHARED STYLESHEET
   ============================================================ */

:root {
  /* Color */
  --bg: #0a0c11;
  --bg-alt: #0f1319;
  --panel: #161a22;
  --panel-2: #1c212b;
  --border: rgba(201, 161, 90, 0.22);
  --border-strong: rgba(201, 161, 90, 0.45);
  --gold: #c9a15a;
  --gold-light: #e3c581;
  --gold-dim: #8a713f;
  --white: #f6f4ef;
  --gray: #a7adb8;
  --gray-dim: #6b7280;
  --success: #7fb069;

  /* Type */
  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-sm: 4px;
  --radius: 8px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

svg { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; flex-shrink: 0; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--gray); }

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

section { padding: 88px 0; }
section.tight { padding: 56px 0; }

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1305;
}
.btn-primary:hover { background: linear-gradient(180deg, #ecd28e, var(--gold-light)); }
.btn-outline {
  background: transparent;
  border-color: rgba(246, 244, 239, 0.35);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ---------- Eyebrow / section heading ---------- */
.eyebrow {
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-bottom: 14px;
  display: inline-block;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-head.left { margin: 0 0 48px; text-align: left; }
.rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 18px auto 0;
}
.section-head.left .rule { margin-left: 0; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 17, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon-img { height: 46px; width: auto; display: block; flex-shrink: 0; }
.footer-logo-img { height: 92px; width: auto; display: block; margin-bottom: 4px; }
.logo-text { font-family: var(--font-head); line-height: 1.05; }
.logo-text .l1 { display: block; font-size: 1.2rem; font-weight: 700; letter-spacing: 0.06em; color: var(--white); }
.logo-text .l1 span { color: var(--gold); }
.logo-text .l2 { display: block; font-size: 0.58rem; letter-spacing: 0.32em; color: var(--gray-dim); margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); border-color: var(--gold); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: none; }
.menu-toggle svg { width: 20px; height: 20px; }

@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--bg-alt);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 24px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { width: 100%; padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .menu-toggle { display: flex; }
  .header-cta .btn-outline { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8,9,13,0.94) 30%, rgba(8,9,13,0.55) 62%, rgba(8,9,13,0.2) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 620px; padding: 90px 0; }
.hero-content h1 { text-transform: uppercase; }
.hero-content h1 .accent { color: var(--gold); }
.hero-sub { font-size: 1.08rem; color: #d7d9de; max-width: 460px; }
.hero-tags { display: flex; gap: 28px; margin: 24px 0 32px; flex-wrap: wrap; }
.hero-tags span { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); font-size: 0.9rem; letter-spacing: 0.03em; }
.hero-tags svg { width: 20px; height: 20px; color: var(--gold); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.page-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { display: block; }
.page-hero p { max-width: 560px; margin: 0 auto; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--bg-alt);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.trust-item { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-size: 0.86rem; letter-spacing: 0.03em; color: #d7d9de; }
.trust-item svg { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; }

/* ============================================================
   CARDS — SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 16px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.service-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.service-card svg { width: 40px; height: 40px; color: var(--gold); margin: 0 auto 16px; }
.service-card h3 { font-size: 0.86rem; letter-spacing: 0.03em; margin: 0; text-transform: uppercase; }

/* Detailed service rows (services.html) */
.service-detail {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.service-detail:last-child { border-bottom: none; }
.service-detail .icon-wrap {
  width: 74px; height: 74px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  background: var(--panel);
}
.service-detail .icon-wrap svg { width: 34px; height: 34px; color: var(--gold); }
.service-detail h3 { text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 8px; }
.service-detail ul { margin: 14px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.service-detail ul li { display: flex; gap: 8px; font-size: 0.9rem; color: #ccd0d6; }
.service-detail ul li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }

@media (max-width: 640px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail ul { grid-template-columns: 1fr; }
}

/* ============================================================
   PROJECTS / GALLERY
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 9px 18px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { color: var(--white); }
.filter-btn.active { background: var(--gold); color: #1a1305; border-color: var(--gold); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .projects-grid { grid-template-columns: 1fr; } }

.project-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.project-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.project-thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-alt); }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.project-card:hover .project-thumb img { transform: scale(1.05); }
.project-info { padding: 16px 18px 20px; }
.project-info h3 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 6px; }
.project-loc { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--gold); font-family: var(--font-head); }
.project-loc svg { width: 14px; height: 14px; }

/* Lightbox modal */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(6,7,10,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-panel {
  background: var(--panel);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
}
.lightbox-img { aspect-ratio: 16/9; background: var(--bg-alt); overflow: hidden; }
.lightbox-img img, .lightbox-img svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.lightbox-body { padding: 28px 32px 32px; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%;
  width: 40px; height: 40px; color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   WHY US / CHECKLIST
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; }
@media (max-width: 520px) { .check-list { grid-template-columns: 1fr; } }
.check-list li { display: flex; gap: 12px; font-size: 0.96rem; color: #dfe2e7; }
.check-list svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.why-portrait { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/5; }
.why-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--gold); }
.stars svg { width: 17px; height: 17px; }
.review-card p { color: #d3d6db; font-size: 0.95rem; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--panel-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 0.85rem; color: var(--gold);
}
.reviewer-name { font-family: var(--font-head); font-size: 0.9rem; }
.reviewer-loc { font-size: 0.78rem; color: var(--gray-dim); }

.google-badge {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.google-badge .g-logo { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.google-badge .g-blue{color:#4285F4} .google-badge .g-red{color:#EA4335} .google-badge .g-yellow{color:#FBBC05} .google-badge .g-green{color:#34A853}
.google-badge .big-rating { font-family: var(--font-head); font-size: 2.4rem; color: var(--white); margin: 8px 0 4px; }
.google-badge .stars { justify-content: center; margin-bottom: 6px; }
.google-badge .g-count { color: var(--gray-dim); font-size: 0.85rem; margin-bottom: 18px; }

/* ============================================================
   FORMS
   ============================================================ */
.form-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-bottom: 7px;
  text-transform: uppercase;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.field textarea { resize: vertical; min-height: 100px; }
.field-file {
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  background: var(--bg-alt);
  cursor: pointer;
  color: var(--gray);
  font-size: 0.85rem;
}
.field-file svg { width: 22px; height: 22px; color: var(--gold); margin: 0 auto 8px; }

.form-note { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--gray-dim); margin-top: 16px; justify-content: center; }
.form-note svg { width: 15px; height: 15px; }
.form-status { margin-top: 14px; font-size: 0.88rem; text-align: center; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: var(--success); }
.form-status.err { color: #e07a5f; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(120deg, var(--panel-2), var(--panel));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-banner h2 { margin-bottom: 10px; }
.cta-banner p { max-width: 480px; margin: 0 auto 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-alt); border-top: 1px solid rgba(255,255,255,0.07); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-family: var(--font-head); font-size: 0.82rem; letter-spacing: 0.08em; color: var(--gold); text-transform: uppercase; margin-bottom: 18px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid ul a { color: var(--gray); font-size: 0.9rem; transition: color 0.2s ease; }
.footer-grid ul a:hover { color: var(--gold-light); }
.footer-about p { font-size: 0.88rem; margin-top: 14px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; color: var(--gray); font-size: 0.9rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  transition: all 0.2s ease;
}
.social-row a:hover { background: var(--gold); color: #1a1305; border-color: var(--gold); }
.social-row svg { width: 16px; height: 16px; }
.footer-map { border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: 0.8rem; color: var(--gray-dim); flex-wrap: wrap; gap: 10px;
}
.footer-bottom .licensed { display: flex; align-items: center; gap: 8px; color: var(--gold); font-family: var(--font-head); letter-spacing: 0.04em; }
.footer-bottom .licensed svg { width: 16px; height: 16px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.reviews-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; align-items: stretch; }
@media (max-width: 860px) { .reviews-layout { grid-template-columns: 1fr; } }
.bg-alt { background: var(--bg-alt); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
