/* v2 — тёплый редакционный стиль, тематические фото */

body { font-feature-settings: "ss01" on; overflow-x: hidden; }

/* Акцент: тёплый зелёный/тил */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: #0d9488;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #0f766e; transform: translateY(-1px); }
.btn-primary:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.35); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 2px solid #0d9488;
  background: transparent;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0d9488;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: #0d9488; color: #fff; }

.header-link {
  font-weight: 500;
  color: #57534e;
  transition: color 0.2s;
}
.header-link:hover { color: #0d9488; }

.mobile-link {
  display: block;
  padding: 0.6rem 0.75rem;
  color: #44403c;
  transition: background 0.2s, color 0.2s;
}
.mobile-link:hover { background: #f5f5f4; color: #0d9488; }

.field-label { display: block; margin-bottom: 0.35rem; font-size: 0.8125rem; font-weight: 500; color: #57534e; }
.field-input {
  display: block;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #d6d3d1;
  background: #fff;
  padding: 0.6rem 0.75rem;
  font-size: 0.9375rem;
  color: #1c1917;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field-input:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}
.field-input-error { border-color: #dc2626; }
.field-error { margin-top: 0.25rem; font-size: 0.75rem; color: #dc2626; }

/* Hero с фоновым изображением */
.hero-bg {
  background-image: linear-gradient(120deg, rgba(28,25,23,0.85) 0%, rgba(28,25,23,0.5) 50%, rgba(28,25,23,0.3) 100%),
    url('/assets/img/photo-1454165804606-c3d57bc86b40.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Карточки с миниатюрой */
.card-with-img {
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-with-img:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.card-with-img .card-img {
  height: 140px;
  background-size: cover;
  background-position: center;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in-up.is-visible { opacity: 1; transform: translateY(0); }
.fade-in-up.delay-1 { transition-delay: 0.1s; }
.fade-in-up.delay-2 { transition-delay: 0.2s; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
