/* Thomason Network, LLC — standalone stylesheet (no frameworks, no build step) */

:root {
  --background: oklch(0.985 0.004 80);
  --foreground: oklch(0.22 0.025 250);
  --card: oklch(1 0 0);
  --secondary: oklch(0.95 0.01 80);
  --muted-foreground: oklch(0.5 0.02 250);
  --accent: oklch(0.62 0.06 55);
  --border: oklch(0.9 0.01 80);
  --radius: 0.375rem;
  --max: 72rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, dl, dd { margin: 0; }

.serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-feature-settings: 'liga', 'dlig';
  font-weight: 500;
  letter-spacing: -0.01em;
}

.wrap { max-width: var(--max); margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }
.eyebrow {
  font-size: 0.75rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--muted-foreground);
}
.eyebrow.accent { color: var(--accent); }
.muted { color: var(--muted-foreground); }
.icon { width: 20px; height: 20px; stroke: var(--accent); stroke-width: 1.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklch, var(--background) 85%, transparent);
  backdrop-filter: blur(10px);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.25rem; padding-bottom: 1.25rem;
}
.brand { display: flex; align-items: baseline; gap: 0.375rem; }
.brand .name { font-size: 1.25rem; }
.brand .llc {
  font-size: 11px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--muted-foreground);
}
.site-nav { display: none; gap: 2.25rem; font-size: 0.875rem; color: var(--muted-foreground); }
.site-nav a { transition: color 0.2s; }
.site-nav a:hover { color: var(--foreground); }

/* Sections */
section { border-bottom: 1px solid var(--border); }
.section-pad { padding-top: 6rem; padding-bottom: 6rem; }
.tinted { background: color-mix(in oklch, var(--secondary) 40%, var(--background)); }
.grid12 { display: grid; gap: 4rem; }
.col-title h2 { font-size: 2.25rem; margin-top: 1rem; line-height: 1.1; }

/* Hero */
.hero .wrap { padding-top: 7rem; padding-bottom: 8rem; }
.hero h1 { font-size: 3rem; line-height: 1.05; margin-top: 2rem; }
.hero p { margin-top: 2rem; max-width: 42rem; font-size: 1.125rem; line-height: 1.7; }

/* About values */
.values { display: grid; gap: 2.5rem; margin-top: 4rem; }
.values h3 { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em; margin-top: 1.25rem; }
.values p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; }
.lead { font-size: 1.125rem; line-height: 1.75; }

/* Product card */
.card {
  display: block; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card); padding: 2rem; transition: border-color 0.2s;
}
.card:hover { border-color: color-mix(in oklch, var(--foreground) 30%, transparent); }
.card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; }
.card h3 { font-size: 1.875rem; margin-top: 0.75rem; }
.card .desc { margin-top: 0.75rem; max-width: 36rem; line-height: 1.7; }
.card .more { display: inline-flex; gap: 0.5rem; margin-top: 2rem; font-size: 0.875rem; font-weight: 500; }
.arrow { stroke: var(--muted-foreground); flex: none; transition: transform 0.2s, stroke 0.2s; }
.card:hover .arrow { transform: translate(2px, -2px); stroke: var(--foreground); }

/* Contact */
.contact-list { display: grid; gap: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item .icon { margin-top: 0.25rem; }
dt { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-foreground); }
dd { margin-top: 0.375rem; font-size: 1.5rem; }
dd a { transition: color 0.2s; }
dd a:hover { color: var(--accent); }
.contact-note { margin-top: 3rem; max-width: 36rem; line-height: 1.7; }

/* Footer */
footer .wrap {
  display: flex; flex-direction: column; gap: 0.75rem;
  padding-top: 2.5rem; padding-bottom: 2.5rem;
  font-size: 0.75rem; color: var(--muted-foreground);
}
footer .place { text-transform: uppercase; letter-spacing: 0.18em; }

/* Animation */
@keyframes fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.fade-up { animation: fade-up 0.8s ease-out both; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up { animation: none; }
}

/* Responsive */
@media (min-width: 640px) {
  .values { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .site-nav { display: flex; }
  .section-pad { padding-top: 8rem; padding-bottom: 8rem; }
  .grid12 { grid-template-columns: repeat(12, 1fr); }
  .col-title { grid-column: span 4; }
  .col-body { grid-column: span 8; }
  .col-title h2 { font-size: 3rem; }
  .hero .wrap { padding-top: 10rem; padding-bottom: 11rem; }
  .hero h1 { font-size: 4.5rem; }
  .hero p { font-size: 1.25rem; }
  .card { padding: 2.5rem; }
  .card h3 { font-size: 2.25rem; }
  footer .wrap { flex-direction: row; align-items: center; justify-content: space-between; }
}
