/* Ward Ventures LLC — site styles
   Single stylesheet, no dependencies. */

:root {
  --ink: #1f2a44;
  --ink-soft: #4a5468;
  --muted: #6b7385;
  --bg: #ffffff;
  --bg-alt: #f6f8fa;
  --border: #e4e7ec;
  --accent: #2f6b58;
  --accent-dark: #245343;
  --accent-soft: #eaf3ef;
  --max: 1080px;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 4px 16px rgba(16, 24, 40, .06);
}

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-dark); }
a:hover { color: var(--accent); }

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

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); text-decoration: none; letter-spacing: -.01em; }
.brand-mark { width: 30px; height: 30px; border-radius: 8px; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 13px; }
.nav { display: flex; gap: 22px; }
.nav a { color: var(--ink-soft); text-decoration: none; font-size: 15px; font-weight: 500; }
.nav a:hover { color: var(--accent-dark); }

/* Hero */
.hero { background: linear-gradient(180deg, var(--accent-soft), #fff); border-bottom: 1px solid var(--border); }
.hero .container { padding-top: 72px; padding-bottom: 72px; }
.eyebrow { color: var(--accent-dark); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.hero h1 { font-size: clamp(30px, 5vw, 46px); line-height: 1.1; margin: 12px 0 16px; letter-spacing: -.02em; }
.hero p { font-size: 19px; color: var(--ink-soft); max-width: 640px; margin: 0 0 28px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.btn { display: inline-block; padding: 12px 22px; border-radius: 10px; font-weight: 600; font-size: 15px; text-decoration: none; border: 1px solid transparent; cursor: pointer; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-dark); }

/* Sections */
section { padding: 64px 0; }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(24px, 3.5vw, 32px); margin: 0 0 10px; letter-spacing: -.01em; }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }
.lead { max-width: 740px; color: var(--ink-soft); font-size: 17px; }
.bg-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Services */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.card h3 { margin: 0 0 6px; font-size: 18px; }
.card .tag { font-size: 12px; font-weight: 600; color: var(--accent-dark); background: var(--accent-soft); padding: 3px 9px; border-radius: 999px; align-self: flex-start; margin-bottom: 14px; }
.card p { color: var(--ink-soft); font-size: 14.5px; margin: 0 0 16px; }
.card .price { margin-top: auto; border-top: 1px solid var(--border); padding-top: 14px; font-size: 13.5px; color: var(--muted); }
.card .price strong { color: var(--ink); }

/* Payment band */
.pay { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.pay .lock { font-size: 22px; line-height: 1.3; }
.pay p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.contact-item h4 { margin: 0 0 6px; font-size: 14px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.contact-item p, .contact-item a { margin: 0; font-size: 16px; color: var(--ink); text-decoration: none; }
.contact-item a:hover { color: var(--accent-dark); }

/* Legal / prose pages */
.legal { padding: 56px 0; }
.legal .container { max-width: 760px; }
.legal h1 { font-size: 34px; margin: 0 0 6px; letter-spacing: -.01em; }
.legal .updated { color: var(--muted); font-size: 14px; margin: 0 0 32px; }
.legal h2 { font-size: 21px; margin: 34px 0 10px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 16px; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 8px; }
.legal .toc { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 32px; }
.legal .toc h4 { margin: 0 0 8px; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.legal .toc ul { margin: 0; columns: 2; }
.legal .toc li { margin-bottom: 4px; }

/* Footer */
.site-footer { background: var(--ink); color: #c7cedb; padding: 48px 0 32px; }
.site-footer a { color: #c7cedb; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-bottom: 28px; }
.footer-brand { max-width: 340px; }
.footer-brand .brand { color: #fff; margin-bottom: 10px; }
.footer-brand p { font-size: 14px; color: #97a1b5; margin: 0; }
.footer-col h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 12px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-legal { border-top: 1px solid #2c3855; padding-top: 20px; font-size: 13px; color: #8d97ac; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* Responsive */
@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }
@media (max-width: 680px) {
  .nav { display: none; }
  .hero .container { padding-top: 52px; padding-bottom: 52px; }
  section { padding: 48px 0; }
  .legal .toc ul { columns: 1; }
}

/* Accessibility */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.skip { position: absolute; left: -9999px; top: auto; }
.skip:focus { left: 16px; top: 12px; background: #fff; padding: 8px 14px; border-radius: 8px; z-index: 50; box-shadow: var(--shadow); }
