/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --bg:        #faf7f2;
  --bg-alt:    #f0ebe2;
  --text:      #1a1a1a;
  --muted:     #6b6457;
  --accent:    #b45309;
  --accent-hv: #92400e;
  --border:    #e0d8cc;

  --font-sans: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  --font-mono: 'Courier New', monospace;

  --max-w: 760px;
  --section-pad: 5rem 1.5rem;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

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

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section        { padding: var(--section-pad); }
.section-alt    { background: var(--bg-alt); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 6rem 1.5rem 5rem;
  text-align: left;
}

.hero .eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hero .subhead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 2rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.65rem 1.5rem;
  border-radius: 100px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.15s ease;
}

.btn:hover { background: var(--accent-hv); color: #fff; }

.btn-large {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

/* ============================================================
   HEADINGS
   ============================================================ */
h2 {
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 2rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--text);
}

/* ============================================================
   SERVICES — CARDS
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem;
}

.card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 0.75rem;
}

.card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.card ul li {
  color: var(--muted);
  font-size: 0.97rem;
  padding-left: 1.25rem;
  position: relative;
}

.card ul li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--muted);
}

.card .rate {
  font-size: 0.85rem;
  font-family: var(--font-mono);
  color: var(--accent);
  margin-top: 0.5rem;
}

/* ============================================================
   WHY LIST
   ============================================================ */
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-list li {
  padding-left: 1.25rem;
  border-left: 2px solid var(--accent);
  color: var(--muted);
  font-size: 0.97rem;
}

.why-list li strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.15rem;
}

/* ============================================================
   SAMPLES
   ============================================================ */
.samples-intro {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.sample-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sample-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  background: var(--bg-alt);
  transition: border-color 0.15s;
}

.sample-item:hover { border-color: var(--accent); color: var(--text); }

.sample-tag {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--muted);
  background: var(--bg);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  border: 1px solid var(--border);
}

.placeholder-note {
  color: var(--muted);
  font-style: italic;
  font-size: 0.9rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-container {
  text-align: center;
}

.contact-container p {
  color: var(--muted);
  margin-bottom: 1.75rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
}

.footer p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 480px) {
  .hero { padding: 4rem 1.25rem 3rem; }
  .hero h1 { font-size: 1.75rem; }
  .cards { grid-template-columns: 1fr; }
}
