/* Nuanced Therapy Colorado — shared styles */

:root {
  --color-bg: #faf6f1;
  --color-bg-alt: #f1e9df;
  --color-surface: #ffffff;
  --color-text: #3a332e;
  --color-text-soft: #6b6058;
  --color-accent: #8a6f5c;
  --color-accent-dark: #6b5545;
  --color-border: #e4d9cc;
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 960px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / nav */

.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 2px;
}

.site-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--color-text-soft);
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-accent-dark);
  border-bottom-color: var(--color-accent);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  text-align: center;
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-border);
}

.hero-motif {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  height: 380px;
  max-width: 55%;
  pointer-events: none;
  z-index: 0;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  margin: 0 0 12px;
  color: var(--color-text);
}

.hero .tagline {
  font-size: 19px;
  color: var(--color-text-soft);
  max-width: 560px;
  margin: 0 auto 28px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 40px;
  text-align: center;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.page-hero-motif {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  max-width: 55%;
  pointer-events: none;
  z-index: 0;
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .hero-motif {
    width: 220px;
    height: 220px;
  }

  .page-hero-motif {
    width: 170px;
    height: 170px;
  }
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 40px;
  margin: 0 0 8px;
}

.page-hero p {
  color: var(--color-text-soft);
  max-width: 560px;
  margin: 0 auto;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent-dark);
  border: 1.5px solid var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-bg-alt);
}

/* Sections */

main {
  padding: 64px 0;
}

section + section {
  margin-top: 56px;
}

h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin: 0 0 16px;
  color: var(--color-text);
}

h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin: 0 0 10px;
}

p {
  color: var(--color-text-soft);
}

.lede {
  font-size: 19px;
  color: var(--color-text);
  max-width: 680px;
}

/* Process list */

.process-list {
  list-style: none;
  counter-reset: process;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.process-list li {
  counter-increment: process;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 24px 24px 20px;
  position: relative;
}

.process-list li::before {
  content: counter(process);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 14px;
}

.process-title {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--color-text);
  display: block;
  margin-bottom: 8px;
}

.process-list p {
  margin: 0;
  font-size: 15px;
}

/* Cards / grid */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 28px;
}

.card h3 {
  color: var(--color-accent-dark);
}

/* Two-column layout (therapist photo + bio) */

.split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 640px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-soft);
  font-size: 14px;
  text-align: center;
  padding: 20px;
  overflow: hidden;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.credentials {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.credentials li {
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-soft);
  font-size: 15px;
}

/* Contact */

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.contact-method {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 24px;
}

.contact-method .label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
  display: block;
}

.contact-method a {
  font-size: 17px;
  text-decoration: none;
  color: var(--color-text);
  overflow-wrap: break-word;
  word-break: break-word;
}

.reveal-btn {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-accent-dark);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.reveal-btn:hover {
  background: var(--color-border);
}

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

.note-box {
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-accent);
  border-radius: 8px;
  padding: 18px 22px;
  margin-top: 32px;
  font-size: 15px;
  color: var(--color-text-soft);
}

/* Placeholder marker */

.placeholder {
  background: #fff6e5;
  border: 1px dashed #d9b45c;
  border-radius: 4px;
  padding: 0 4px;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 32px 0;
  text-align: center;
  color: var(--color-text-soft);
  font-size: 14px;
}

.site-footer a {
  color: var(--color-text-soft);
}

.crisis-note {
  max-width: var(--max-width);
  margin: 0 auto 12px;
  padding: 0 24px;
  font-size: 13px;
  color: var(--color-text-soft);
}
