/* ==========================================================================
   Kouga Digital website stylesheet
   Design system carried forward from the quote document system.
   Tokens, typefaces, and component patterns are settled; the type scale is
   a deliberate web-scale extension of the document scale (flagged per the
   design system seed: document sizes are print-tuned, the web needs larger).
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
  --ink:         #14181c;            /* near-black; primary text and heavy rules */
  --graphite:    #2b333c;            /* secondary text, slightly softer */
  --slate:       #5a6571;            /* muted/tertiary text, metadata, footers */
  --mist:        #f4f6f7;            /* subtle surface tint; card backgrounds, tag fills */
  --ui-bg:       #eef1f3;            /* overall page/app background */
  --accent:      #0fb5a6;            /* teal; hover states, checkboxes, accent overlays */
  --accent-deep: #0a8d82;            /* darker teal; primary CTAs, section labels, prices */
  --line:        rgba(20,24,28,.12); /* borders and dividers */
  --row-tint:    rgba(15,181,166,0.10); /* recommended row tint */

  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --sans: "IBM Plex Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

.wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent-deep);
  color: #fff;
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 13px;
  z-index: 100;
}
.skip-link:focus { left: 0; }

a { color: var(--accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ==========================================================================
   Header, wordmark, nav
   ========================================================================== */

.site-header { background: #fff; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 0 14px;
}

.brand { display: flex; align-items: center; gap: 12px; }

.brand svg { width: 44px; height: 44px; fill: var(--accent); flex: none; }

.wordmark {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--ink);
  line-height: 1.2;
}

.descriptor {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--slate);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-btn {
  display: inline-block;
  background: var(--mist);
  color: var(--accent-deep);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 14px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.nav-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); text-decoration: none; }
.nav-btn.active { background: var(--accent-deep); color: #fff; border-color: var(--accent-deep); }

/* Brand stripe: 3px ink bar with 90px teal left segment */
.brand-stripe { height: 3px; width: 100%; background: var(--ink); position: relative; }
.brand-stripe::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 90px;
  background: var(--accent);
}

/* ==========================================================================
   Sections and typography
   ========================================================================== */

.section { padding: 44px 0; }
.section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

h1 {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(28px, 4.6vw, 40px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

h2 {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 9px;
  margin: 0 0 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.section-number { color: var(--accent-deep); }

h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}

p { margin: 0 0 14px; }
.lede { font-size: 18.5px; color: var(--graphite); max-width: 62ch; }
.fine { font-size: 13px; color: var(--slate); }

ul { margin: 6px 0 14px; padding-left: 20px; }
li { margin-bottom: 7px; }

.mono { font-family: var(--mono); }

/* ==========================================================================
   Hero
   ========================================================================== */

/* Dark ink hero: brings the ink/graphite/slate neutrals forward on every page */
.hero { background: var(--ink); padding: 56px 0 52px; }
.hero h1 { color: #fff; }
.hero .lede { color: rgba(255,255,255,.85); }
.hero a:not(.btn) { color: var(--accent); }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.hero .btn-ghost:hover { background: var(--graphite); color: #fff; border-color: var(--accent); }
.hero .trust-strip { border-top-color: rgba(255,255,255,.18); }
.hero .include-item { color: rgba(255,255,255,.85); }
.hero .kicker { color: var(--accent); }

.kicker {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-deep);
  margin: 0 0 12px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.btn {
  display: inline-block;
  background: var(--accent-deep);
  color: #fff;
  border: 1px solid var(--accent-deep);
  border-radius: 8px;
  padding: 12px 22px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background .2s ease, border-color .2s ease;
}
.btn:hover { background: var(--accent); border-color: var(--accent); text-decoration: none; }

.btn-ghost { background: transparent; color: var(--accent-deep); border-color: var(--line); }
.btn-ghost:hover { background: var(--mist); color: var(--accent-deep); border-color: var(--accent); }

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* ==========================================================================
   Components carried forward from the document system
   ========================================================================== */

/* Callout / note block */
.callout {
  background: var(--mist);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 13px 16px;
  margin: 0 0 18px;
  color: var(--graphite);
}
.callout p:last-child { margin-bottom: 0; }

/* Cards (party-card pattern) */
.card {
  background: var(--mist);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: 16px 18px;
  margin-bottom: 14px;
}
.card p:last-child, .card ul:last-child { margin-bottom: 0; }

.card-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-deep);
  margin-bottom: 6px;
}

.card .price-tag {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 15px;
  color: var(--accent-deep);
}

/* Card grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.grid .card { margin-bottom: 0; }

/* Status badges */
.badge {
  background: var(--accent-deep);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  padding: 2.5px 8px;
  display: inline-block;
  vertical-align: middle;
}
.badge.next { background: var(--slate); }

/* Service item rows */
.item-row { margin-bottom: 18px; }
.item-row p { margin: 4px 0 0; }

.item-label {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--accent-deep);
  font-size: 14px;
}

/* Include checklist */
.include-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 8px;
  column-gap: 18px;
  margin: 10px 0 16px;
  padding: 0;
  list-style: none;
}
.include-item {
  display: flex;
  align-items: baseline;
  color: var(--graphite);
  margin: 0;
}
.include-bullet {
  width: 13px;
  height: 13px;
  background: var(--accent);
  border-radius: 3px;
  margin-right: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  flex: none;
  position: relative;
  top: 1px;
}

/* Tables */
.table-scroll { overflow-x: auto; margin-bottom: 20px; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

th, td {
  border: 1px solid var(--line);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

td { background: #fff; }

.price {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--accent-deep);
  white-space: nowrap;
}

tr.recommended td { background: var(--row-tint); }

/* ==========================================================================
   Forms (contact)
   ========================================================================== */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }

label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px 12px;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-color: var(--accent);
}
textarea { min-height: 130px; resize: vertical; }

.hp-field { display: none; }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: var(--graphite);
  color: #fff;
  padding: 40px 0;
}
.cta-band h2 { color: #fff; border-bottom-color: rgba(255,255,255,.2); }
.cta-band .section-number { color: var(--accent); }
.cta-band p { color: rgba(255,255,255,.82); }
.cta-band .btn { background: var(--accent); border-color: var(--accent); }
.cta-band .btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

/* ==========================================================================
   Footer bar
   ========================================================================== */

.site-footer {
  border-top: 3px solid var(--accent);
  background: var(--ink);
  padding: 24px 0 32px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.footer-brand {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}

.footer-contact { font-size: 13px; color: rgba(255,255,255,.72); }
.footer-contact a { color: var(--accent); }

.footer-note {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 720px) {
  .header-inner { justify-content: center; text-align: center; }
  .brand { flex-direction: column; gap: 8px; }
  .nav-row { justify-content: center; }
  .hero { padding: 40px 0; }
  .include-list { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; text-align: center; }
}

@media print {
  .nav-row, .hero-actions, .cta-band { display: none; }
  body { background: #fff; }
}
