/* Priya Agency — Trio Pages
   Anthropic/Claude-inspired design tokens */

:root {
  --bg-canvas: #F5F4ED;
  --bg-surface: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #6B6862;
  --text-tertiary: #A6A29A;
  --border-subtle: #E8E6DC;
  --border-default: #D4D0C8;
  --accent: #CC785C;
  --accent-hover: #B5694F;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-canvas: #1A1A1A;
    --bg-surface: #232323;
    --text-primary: #E8E6DC;
    --text-secondary: #A6A29A;
    --text-tertiary: #6B6862;
    --border-subtle: #2E2E2E;
    --border-default: #3A3A3A;
    --accent: #E89B7C;
    --accent-hover: #D5876A;
  }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-canvas);
  color: var(--text-primary);
  font-family: -apple-system, "Segoe UI", "Inter", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}

header.brand {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 24px;
  margin-bottom: 48px;
}

header.brand a.logo {
  font-family: Georgia, "Tiempos", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}

header.brand .tagline {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

h1 {
  font-family: Georgia, "Tiempos", serif;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

h1 + .updated {
  color: var(--text-tertiary);
  font-size: 13px;
  margin-bottom: 48px;
}

h2 {
  font-family: Georgia, "Tiempos", serif;
  font-size: 22px;
  font-weight: 500;
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 32px 0 12px;
}

p {
  margin: 0 0 16px;
  color: var(--text-primary);
}

ul, ol {
  padding-left: 22px;
  margin: 0 0 20px;
}

li { margin-bottom: 8px; }

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

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

strong { color: var(--text-primary); font-weight: 600; }

.callout {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 2px;
}

.callout p:last-child { margin: 0; }

.contact-block {
  margin-top: 48px;
  padding: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
}

.contact-block p { margin-bottom: 8px; }

footer {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-tertiary);
  text-align: center;
}

footer a {
  color: var(--text-secondary);
  margin: 0 12px;
  text-decoration: none;
}

footer a:hover { color: var(--accent); text-decoration: underline; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: #FFFFFF !important;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.btn:hover { background: var(--accent-hover); }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}

th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-subtle);
}

th { font-weight: 600; color: var(--text-secondary); }

@media (max-width: 640px) {
  .container { padding: 32px 20px 64px; }
  h1 { font-size: 28px; }
  h2 { font-size: 20px; }
}
