/* ============================================================
   NorthPros — design system
   Palette: deep charcoal/teal base + warm gold accent.
   Deliberately distinct from SharpStage (white/orange/minimal).
   ============================================================ */

:root {
  --ink:        #0f1c1b;   /* near-black deep teal */
  --ink-2:      #142826;   /* panel dark */
  --teal:       #16403c;   /* deep teal */
  --teal-2:     #1f5a53;
  --surface:    #f6f5f1;   /* warm off-white */
  --surface-2:  #ffffff;
  --line:       #e4e2da;
  --text:       #1c2a28;
  --text-soft:  #54625f;
  --text-ondark:#e8efed;
  --text-ondark-soft:#a9bdb9;
  --gold:       #d8a13a;   /* warm gold accent */
  --gold-2:     #e8b85a;
  --gold-ink:   #2a1f06;
  --radius:     14px;
  --radius-sm:  10px;
  --shadow:     0 10px 30px rgba(15, 28, 27, 0.10);
  --shadow-lg:  0 24px 60px rgba(15, 28, 27, 0.18);
  --maxw:       1140px;
  --gap:        clamp(1rem, 3vw, 2rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: "Sora", "Inter", sans-serif; line-height: 1.15; margin: 0 0 .5em; color: var(--ink); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--gold); color: var(--gold-ink); padding: .6rem 1rem; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

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

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--teal); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--bg); color: var(--fg);
  font-weight: 600; font-size: .98rem; line-height: 1;
  padding: .85rem 1.4rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  min-height: 44px; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-gold { --bg: var(--gold); --fg: var(--gold-ink); }
.btn-gold:hover { background: var(--gold-2); }
.btn-outline { --bg: transparent; --fg: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { --bg: transparent; --fg: var(--text-ondark); border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 1.05rem 1.8rem; font-size: 1.05rem; }
.btn-sm { padding: .6rem 1rem; font-size: .9rem; min-height: 40px; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700;
  color: var(--teal-2); margin: 0 0 .6rem;
}
.hero .eyebrow, .trust-bar .eyebrow { color: var(--gold-2); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 28, 27, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 68px; }
.brand { display: flex; align-items: center; }
.main-nav { margin-left: auto; }
.nav-menu { display: flex; align-items: center; gap: 1.4rem; }
.nav-menu a { color: var(--text-ondark); font-weight: 500; font-size: .98rem; }
.nav-menu a:hover { color: #fff; }
.nav-cta { color: var(--gold-2) !important; font-weight: 700 !important; }
.header-contact { display: flex; gap: .5rem; margin-left: .4rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(216,161,58,.22), transparent 60%),
    linear-gradient(160deg, var(--ink) 0%, var(--teal) 100%);
  color: var(--text-ondark);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3.5rem, 8vw, 6rem);
}
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-copy h1 { color: #fff; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--text-ondark-soft); max-width: 38ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.4rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: 1.2rem; color: var(--text-ondark); font-weight: 500; }
.hero-points li { position: relative; padding-left: 1.5rem; }
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); box-shadow: inset 0 0 0 2px var(--teal);
}
/* Hero visual (pure CSS, no stock photo) */
.hero-visual { display: flex; justify-content: center; }
.hero-card {
  position: relative; width: min(360px, 100%); aspect-ratio: 4/3;
  background: linear-gradient(180deg, #1a3531, #112623);
  border: 1px solid rgba(255,255,255,.12); border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: 1.4rem; display: flex; flex-direction: column; gap: 1rem;
}
.hero-card-screen { flex: 1; border-radius: 10px; background: linear-gradient(135deg, #0c1716, #0a1413); border: 1px solid rgba(216,161,58,.25); }
.hero-card-bar { height: 14px; width: 55%; margin-inline: auto; border-radius: 6px; background: rgba(255,255,255,.15); }
.hero-tag {
  position: absolute; right: -10px; bottom: 22px;
  background: var(--gold); color: var(--gold-ink); font-weight: 700; font-size: .85rem;
  padding: .5rem .9rem; border-radius: 999px; box-shadow: var(--shadow);
}

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--ink-2); color: var(--text-ondark); padding: 1.6rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust-item { display: flex; flex-direction: column; gap: .15rem; border-left: 3px solid var(--gold); padding-left: 1rem; }
.trust-item strong { color: #fff; font-size: 1.02rem; }
.trust-item span { color: var(--text-ondark-soft); font-size: .9rem; }

/* ---------- Generic section ---------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--alt { background: var(--surface-2); border-block: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: 2.5rem; }
.section-lead { color: var(--text-soft); font-size: 1.08rem; }

/* ---------- Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; display: flex; flex-direction: column; gap: .4rem;
  box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px; color: var(--teal);
  background: rgba(31,90,83,.10); display: grid; place-items: center; margin-bottom: .6rem;
}
.service-icon svg { width: 30px; height: 30px; }
.service-list { margin: .4rem 0 1.2rem; display: grid; gap: .4rem; }
.service-list li { position: relative; padding-left: 1.4rem; color: var(--text-soft); font-size: .96rem; }
.service-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.service-card { cursor: pointer; }
.service-price { margin: 0 0 .4rem; font-family: "Sora", sans-serif; font-weight: 700; color: var(--teal); font-size: 1.05rem; }
.service-price span { font-family: "Inter", sans-serif; font-weight: 500; color: var(--text-soft); font-size: .85rem; }
.service-actions { margin-top: auto; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.service-pricing-link { font-weight: 600; color: var(--teal-2); }
.service-pricing-link:hover { color: var(--teal); text-decoration: underline; }
.service-card .btn { align-self: flex-start; }
.service-card--soon { background: linear-gradient(180deg, var(--surface), #efeee7); border-style: dashed; }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-item { padding: 1.4rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.why-item h3 { color: var(--teal); margin-bottom: .3rem; }
.why-item p { color: var(--text-soft); font-size: .96rem; margin: 0; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.price-card {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.7rem; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.price-card--feature { border: 2px solid var(--gold); position: relative; }
.price-card--feature::after {
  content: "Most booked"; position: absolute; top: -12px; right: 18px;
  background: var(--gold); color: var(--gold-ink); font-size: .72rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px;
}
.price-card-head { margin-bottom: 1rem; }
.price-card-head h3 { margin-bottom: .15rem; }
.price-note { color: var(--text-soft); font-size: .9rem; }
.price-list { display: grid; gap: .1rem; }
.price-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px dashed var(--line);
}
.price-list li:last-child { border-bottom: 0; }
.price-list .price { font-family: "Sora", sans-serif; font-weight: 700; color: var(--ink); white-space: nowrap; }
.price-fineprint { margin: 1rem 0 0; color: var(--text-soft); font-size: .9rem; }
.mount-link { color: var(--teal-2); font-weight: 600; border-bottom: 1px solid transparent; transition: border-color .15s ease, color .15s ease; }
.mount-link:hover { color: var(--teal); border-bottom-color: var(--teal); }
.mount-ext { font-size: .8em; color: var(--gold); }
.mount-note {
  margin: 1.1rem 0 0; padding: .8rem 1rem; font-size: .92rem; color: var(--text);
  background: rgba(31,90,83,.07); border-left: 3px solid var(--gold); border-radius: 8px;
}
.mount-note strong { color: var(--teal); }
.surcharge-note {
  margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; align-items: center;
  background: var(--ink-2); color: var(--text-ondark); padding: 1.1rem 1.4rem; border-radius: var(--radius);
}
.surcharge-note strong { color: #fff; }
.surcharge-note span { font-size: .95rem; color: var(--text-ondark-soft); }
.surcharge-note em { font-style: normal; color: var(--gold-2); font-weight: 700; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; position: relative; }
.step-num {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--gold-ink); font-family: "Sora",sans-serif; font-weight: 800; font-size: 1.2rem;
  margin-bottom: 1rem;
}
.step h3 { color: var(--teal); }
.step p { color: var(--text-soft); margin: 0; }

/* ---------- Quote form ---------- */
.quote-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.quote-direct { margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.quote-direct p { font-weight: 600; margin-bottom: .6rem; }
.quote-direct-btns { display: flex; flex-wrap: wrap; gap: .5rem; }
.quote-form {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: clamp(1.4rem, 3vw, 2rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.field { display: flex; flex-direction: column; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--text); background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .75rem .9rem; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal-2); background: #fff; outline: none; box-shadow: 0 0 0 3px rgba(31,90,83,.15); }
.field textarea { resize: vertical; }
.quote-send-label { font-weight: 600; margin: .4rem 0 .6rem; }
.quote-send-btns { display: flex; flex-wrap: wrap; gap: .6rem; }
.form-error { color: #b3261e; font-weight: 600; font-size: .9rem; margin: .8rem 0 0; }

/* ---------- Service areas ---------- */
.area-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .6rem; }
.area-list li {
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: .55rem 1rem; font-size: .95rem; color: var(--text); text-align: center; font-weight: 500;
  transition: border-color .15s ease, background .15s ease;
}
/* pills that are links: make the whole pill a tap target */
.area-list li:has(a) { padding: 0; overflow: hidden; }
.area-list li a { display: block; padding: .55rem 1rem; color: var(--text); }
.area-list li:has(a):hover { border-color: var(--gold); background: #fff; }
.area-list li a:hover { color: var(--teal-2); }

/* ---------- Service-areas hub ---------- */
.hero--compact { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.hero--compact h1 { color: #fff; max-width: 24ch; }
.hero--compact .hero-sub { max-width: 62ch; margin-bottom: 1.6rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.area-picker .section-head { max-width: 640px; margin-inline: auto; text-align: center; }
.area-select-wrap { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; align-items: stretch; max-width: 560px; margin-inline: auto; }
.area-select {
  flex: 1 1 280px; min-width: 0; font: inherit; color: var(--text); background: var(--surface-2);
  border: 1px solid var(--line); border-radius: 999px; padding: .9rem 1.3rem; min-height: 48px;
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2316403c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.2rem center;
}
.area-select:focus { border-color: var(--teal-2); outline: none; box-shadow: 0 0 0 3px rgba(31,90,83,.15); }
#area-go[aria-disabled="true"] { opacity: .5; pointer-events: none; }
.cta-band { text-align: center; max-width: 680px; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; }
.areas-cta { margin-top: 1.6rem; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: .8rem; max-width: 820px; }
.faq-item { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 1.1rem 1.3rem; font-weight: 600; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--gold); font-weight: 700; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.3rem 1.2rem; margin: 0; color: var(--text-soft); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post-card {
  display: flex; flex-direction: column; gap: .5rem; background: var(--surface-2);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem;
  box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .2s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-cat {
  align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--teal); background: rgba(31,90,83,.10);
  padding: .3rem .7rem; border-radius: 999px;
}
.post-card h2 { font-size: 1.2rem; margin: .2rem 0; }
.post-card h2 a:hover { color: var(--teal-2); }
.post-date { color: var(--text-soft); font-size: .85rem; margin: 0; }
.post-card p { color: var(--text-soft); font-size: .96rem; margin: 0; }
.post-more { margin-top: auto; color: var(--teal-2); font-weight: 600; padding-top: .4rem; }
.post-more:hover { color: var(--teal); }

/* Blog post article */
.post-wrap { max-width: 760px; margin-inline: auto; }
.post-breadcrumb { font-size: .88rem; color: var(--text-soft); margin-bottom: 1rem; }
.post-breadcrumb a:hover { color: var(--teal-2); }
.post-breadcrumb span { margin: 0 .3rem; }
.post h1 { margin: .6rem 0 .4rem; }
.post .post-date { margin-bottom: 1.6rem; }
.post-body { font-size: 1.05rem; color: var(--text); }
.post-body h2 { font-size: 1.4rem; color: var(--teal); margin: 1.8rem 0 .6rem; }
.post-body p { margin: 0 0 1.1rem; }
.post-body ul { margin: 0 0 1.1rem; padding-left: 1.2rem; list-style: disc; }
.post-body li { margin-bottom: .5rem; }
.post-body a { color: var(--teal-2); font-weight: 600; border-bottom: 1px solid transparent; }
.post-body a:hover { border-bottom-color: var(--teal-2); }
.post-back { margin-top: 2rem; }
.post-back a { color: var(--teal-2); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--text-ondark-soft); padding: 3rem 0 1.5rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand p { max-width: 32ch; margin-top: 1rem; font-size: .95rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: .8rem; }
.footer-col ul { display: grid; gap: .5rem; }
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .88rem;
}

/* ---------- Mobile sticky contact bar ---------- */
.mobile-bar { display: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }   /* hide decorative TV graphic on mobile/tablet */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .quote-wrap { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .header-contact { display: none; }
  .main-nav { margin-left: auto; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); border-top: 1px solid rgba(255,255,255,.1);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-menu.open { max-height: 360px; }
  .nav-menu li { border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-menu a { display: block; padding: 1rem 1.4rem; }
  .pricing-grid { grid-template-columns: 1fr; }

  /* sticky bottom contact bar on mobile */
  .mobile-bar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: rgba(15,28,27,.97); backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .mobile-bar-btn {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    padding: .55rem 0 .65rem; color: var(--text-ondark); font-size: .72rem; font-weight: 600;
  }
  .mobile-bar-btn--wa { color: var(--gold-2); }
  .mb-ico { font-size: 1.1rem; line-height: 1; }
  body { padding-bottom: 64px; }
}

@media (max-width: 460px) {
  .trust-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .quote-form { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
