/* ============================================
   TruCraft Solutions LLC — Main Stylesheet
   Easy to edit: colors, fonts, and spacing live at the top.
   ============================================ */

:root {
  --bg: #0b0b0c;
  --bg-alt: #121214;
  --card: #1a1b1e;
  --border: #2a2b2f;
  --text: #f2f2f3;
  --muted: #9a9ca3;
  --steel: #7d8088;
  --accent: #e67e22;
  --accent-2: #f39c12;
  --accent-dark: #c0392b;
  --success: #27ae60;
  --radius: 12px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background-color: #0a0a0b;
  /* Subtle carbon-fiber weave — farthest layer */
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(45deg, rgba(0,0,0,0.55) 0 2px, transparent 2px 4px),
    linear-gradient(180deg, #141416 0%, #0a0a0b 40%, #0a0a0b 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.logo {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: none;
  gap: 1.35rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

.header-cta {
  display: flex;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.18s ease;
  white-space: nowrap;
}

.btn-accent {
  background: var(--accent);
  color: #111;
}

.btn-accent:hover {
  background: var(--accent-2);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 0.95rem 1.4rem;
  font-size: 1rem;
}

.menu-toggle {
  display: flex;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem 1rem 1.1rem;
  border-top: 1px solid var(--border);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 0.4rem 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 10%, rgba(230, 126, 34, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(18, 18, 20, 0.72) 0%, rgba(11, 11, 12, 0.88) 100%);
  z-index: -1;
}

.hero-kicker {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 16ch;
  margin-bottom: 1rem;
}

.hero p.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 38rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.photo-note {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 36rem;
  border-left: 3px solid var(--accent);
  padding-left: 0.85rem;
}

.photo-note strong {
  color: var(--text);
}

/* ---------- Sections ---------- */
section {
  padding: 4rem 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-head p {
  color: var(--muted);
  margin-top: 0.4rem;
  max-width: 40rem;
}

.bg-alt {
  background: rgba(18, 18, 20, 0.88);
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem;
}

.card h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.45rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.card ul {
  margin-top: 0.7rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.card li + li {
  margin-top: 0.25rem;
}

.accent-bar {
  width: 36px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 0.85rem;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  gap: 1.5rem;
}

.about-points {
  display: grid;
  gap: 0.85rem;
}

.point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.point-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(230, 126, 34, 0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #111;
  aspect-ratio: 4 / 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0.7rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-size: 0.8rem;
  color: #eee;
}

/* ---------- Testimonials ---------- */
.quotes {
  display: grid;
  gap: 1rem;
}

.quote {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.stars {
  color: var(--accent-2);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.quote p {
  color: #d7d8dc;
  font-size: 0.97rem;
}

.quote footer {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  gap: 1.5rem;
}

.contact-info a {
  color: var(--text);
}

.contact-info a:hover {
  color: var(--accent);
}

.big-phone {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  display: inline-block;
  margin: 0.35rem 0 0.5rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.8rem 0 1rem;
}

form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

input,
textarea,
select {
  width: 100%;
  background: #111214;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(230, 126, 34, 0.45);
  border-color: var(--accent);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 1.6rem 0 2.2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* ---------- Responsive ---------- */
@media (min-width: 760px) {
  .nav {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .quotes {
    grid-template-columns: 1fr 1fr;
  }
  .contact-wrap {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.page-hero {
  padding: 2.6rem 0 2.4rem;
}

.page-hero h1 {
  max-width: 22ch;
}

.path-grid {
  display: grid;
  gap: 1rem;
}

.path-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
}

.path-card:hover {
  border-color: var(--accent);
}

.path-card .k {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.charge {
  background: rgba(230, 126, 34, 0.1);
  border: 1px solid rgba(230, 126, 34, 0.35);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  margin: 1.2rem 0;
}

.charge strong {
  color: var(--accent-2);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.15rem;
  display: block;
  margin-bottom: 0.25rem;
}

.examples {
  display: grid;
  gap: 0.85rem;
}

.example {
  border-left: 3px solid var(--accent);
  padding: 0.15rem 0 0.15rem 0.9rem;
}

.example strong {
  display: block;
}

.muted {
  color: var(--muted);
}

.card a.more {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

@media (min-width: 880px) {
  .nav {
    font-size: 0.86rem;
    gap: 1.05rem;
  }
}

@media (min-width: 980px) {
  .hero {
    padding: 5.5rem 0 6rem;
  }
  .path-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
