/* ============================================================
   MOCAN GROUP — Design | Build | Deliver
   ============================================================ */
:root {
  --bg: #0e0f12;
  --bg-2: #15171c;
  --bg-3: #1c1f26;
  --ink: #f4f2ed;
  --muted: #9ba0a8;
  --line: rgba(244, 242, 237, 0.1);
  --gold: #c8a24b;
  --gold-soft: rgba(200, 162, 75, 0.14);
  --radius: 14px;
  --font-head: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--gold);
}
.kicker::before { content: ""; width: 34px; height: 1px; background: var(--gold); }

.lead { color: var(--muted); font-size: 1.12rem; max-width: 640px; }

section { padding: 96px 0; }
.section-head { margin-bottom: 56px; display: flex; flex-direction: column; gap: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  padding: 15px 30px; border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer; transition: all 0.25s ease;
}
.btn-gold { background: var(--gold); color: #17130a; }
.btn-gold:hover { background: #dcb862; transform: translateY(-2px); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.3s ease, border 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(14, 15, 18, 0.9); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.logo { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; letter-spacing: 0.06em; display: inline-flex; align-items: center; }
.logo span { color: var(--gold); }
.logo img { height: 24px; width: auto; display: block; }
.site-footer .logo img { height: 28px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 0.93rem; color: var(--muted); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta { padding: 11px 22px; font-size: 0.88rem; }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); font-size: 1.6rem; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: flex-end;
  padding: 160px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,15,18,0.55) 0%, rgba(14,15,18,0.35) 40%, rgba(14,15,18,0.96) 100%);
}
.hero-inner { display: flex; flex-direction: column; gap: 26px; max-width: 850px; }
.hero .lead { font-size: 1.2rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.hero-locations {
  margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  font-family: var(--font-head); font-size: 0.85rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.hero-locations strong { color: var(--gold); font-weight: 500; }

/* ---------- Stats band ---------- */
.stats { padding: 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat { padding: 44px 28px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat b { display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--gold); margin-bottom: 6px; }
.stat span { color: var(--muted); font-size: 0.95rem; }

/* ---------- Cards / grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.3s ease, border-color 0.3s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(200,162,75,0.45); }
.card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.card-body p { color: var(--muted); font-size: 0.98rem; }
.card-link { color: var(--gold); font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; }
.card-tag {
  align-self: flex-start; font-size: 0.72rem; font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold);
  background: var(--gold-soft); padding: 5px 12px; border-radius: 999px;
}

/* ---------- Feature tiles (why us) ---------- */
.tile { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.tile h3 { font-size: 1.08rem; margin-bottom: 10px; }
.tile p { color: var(--muted); font-size: 0.94rem; }
.tile .icon {
  width: 44px; height: 44px; border-radius: 10px; margin-bottom: 18px;
  background: var(--gold-soft); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}

/* ---------- Process ---------- */
.process-step {
  position: relative; padding: 36px 30px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
}
.process-step .num {
  font-family: var(--font-head); font-size: 3rem; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1px var(--gold);
  margin-bottom: 14px; display: block;
}
.process-step h3 { margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; display: flex; flex-direction: column; gap: 18px;
}
.quote-card blockquote { font-size: 1.02rem; color: var(--ink); font-style: italic; }
.quote-card cite { color: var(--muted); font-style: normal; font-size: 0.9rem; }
.quote-card cite b { color: var(--gold); display: block; font-family: var(--font-head); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--bg-3), var(--bg-2));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-align: center;
}
.cta-band .wrap { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.cta-band p { max-width: 560px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 190px 0 70px; border-bottom: 1px solid var(--line); position: relative; }
.page-hero .lead { margin-top: 18px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { font-family: var(--font-head); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; display: block; margin-bottom: 8px; color: var(--muted); }
input, select, textarea {
  width: 100%; padding: 14px 16px;
  background: var(--bg-3); color: var(--ink);
  border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 0.98rem;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); }
textarea { resize: vertical; min-height: 130px; }

/* ---------- Contact layout ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 30px; }
.info-block h3 { font-size: 1rem; color: var(--gold); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500; }
.info-block p, .info-block a { color: var(--muted); }
.info-block a:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 70px 0 36px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-grid h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 16px; font-weight: 500; }
.footer-grid a, .footer-grid p { color: var(--muted); font-size: 0.94rem; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--muted); font-size: 0.85rem;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; }
  .stat { border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: fixed; inset: 0; background: rgba(14,15,18,0.98);
    flex-direction: column; justify-content: center; gap: 30px;
    transform: translateX(100%); transition: transform 0.3s ease;
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.3rem; }
  .nav-toggle { display: block; z-index: 101; }
}
