/* ERH 26001 AS - doma-horosho.shop
   Unique design: Centered Minimalist + Warm Sand palette
   Narrow column, lots of white space, typography focus
   Different from all previous (no masonry, no sticky sidebar)
*/

:root {
  --accent: #8B6F47;
  --accent-light: #A68B6A;
  --bg: #FAF7F2;
  --card: #FFFFFF;
  --text: #2C2520;
  --text-light: #6B5F55;
  --border: #E8E0D5;
  --radius: 8px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
}

/* Centered narrow content */
.container-narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Typography focus */
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.025em;
}

/* Cards - clean with subtle border */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgb(44 37 32 / 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgb(44 37 32 / 0.08);
}

/* Buttons - thin border, slightly pill */
.btn {
  padding: 0.7rem 1.6rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--accent);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #6B5435;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
}

.btn-secondary:hover {
  background: #F5EDE3;
}

/* Tabs */
.tab-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-light);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tab-btn.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* Article content */
.article-content {
  font-size: 1.05rem;
  line-height: 1.85;
}

.article-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
  border-bottom: 2px solid #F5EDE3;
  padding-bottom: 0.5rem;
}

/* Form */
input, textarea, select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

/* Header */
header {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

/* Footer */
footer {
  background: #2C2520;
  color: #A89B8A;
}

footer a:hover {
  color: #C4B39A;
}