:root {
  --bg-start: hsl(0 0% 7%);
  --bg-end: hsl(0 0% 16%);
  --bg-elevated: hsl(0 0% 12%);
  --bg-card: hsl(0 0% 13%);
  --border-subtle: hsl(0 0% 25%);
  --text-main: hsl(0 0% 95%);
  --text-muted: hsl(0 0% 65%);
  --primary: hsl(174 73% 39%);
  --accent-teal: #00b894;      /* цвет подсветки кнопок */
  --primary-soft: hsla(174, 73%, 39%, 0.18);
  --primary-strong: hsla(174, 73%, 39%, 0.35);
  --danger: hsl(0 70% 55%);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 14px 36px rgba(0, 0, 0, 0.6);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, #112424 0, transparent 50%),
    radial-gradient(circle at bottom right, #101520 0, transparent 55%),
    linear-gradient(to bottom, var(--bg-start), var(--bg-end));
}

/* Layout */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page--simple {
  background: radial-gradient(circle at top left, #101821 0, transparent 55%),
    linear-gradient(to bottom, #050608, #111119);
}

.container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

/* Header & nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 8, 0.9),
    rgba(5, 6, 8, 0.6),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 0;
}

.nav__logo img {
  height: 46px;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s ease, transform 0.15s ease;
}

.nav__links button:hover {
  color: var(--text-main);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  background: none;
  border: none;
  padding: 0;
  margin-left: 12px;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--text-main);
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(32px0px + 500px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 20px 0 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none; 
}


.hero__bg img {
  position: absolute;
  right: -1%;
  top: 25%;
  transform: translateY(-50%);
  width: min(780px, 70vw);
  opacity: 95%;
  object-fit: contain;
  filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.8));
  mask-image: linear-gradient(to left, #000 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, #000 0%, transparent 100%);
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(15, 80, 80, 0.4),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 0, 0, 0.8),
      transparent 60%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__text {
  max-width: 520px;
  padding-top: 36px;
}

.hero__logo img {
  width: min(500px, 85%);
  display: block;
  margin-bottom: 18px;
  margin-left: -40px; /* смещение влево */
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 26px;
}

.hero__cta {
  margin-top: 4px;
}

.hero__glow {
  position: absolute;
  bottom: -80px;
  left: 18%;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: var(--primary-soft);
  filter: blur(110px);
  z-index: 0;
}

/* Sections */

.section {
  padding: 60px 0;
}

.section__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.section__header {
  max-width: 680px;
}

.section__title {
  font-size: 28px;
  margin: 0 0 10px;
}

.section__subtitle {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

/* About */

.section--about {
  background: radial-gradient(
      circle at top left,
      rgba(41, 171, 164, 0.12),
      transparent 55%
    ),
    rgba(0, 0, 0, 0.08);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.about-card {
  background: rgba(10, 10, 10, 0.9);
  border-radius: var(--radius-lg);
  padding: 20px 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-card);
}

.about-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.about-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Gallery */

.section--gallery {
  background: transparent;
}

.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.chip {
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(6, 8, 10, 0.8);
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.1s ease;
}

.chip--active,
.chip:hover {
  background: var(--primary-strong);
  color: var(--text-main);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.gallery-card {
  background: rgba(8, 10, 13, 0.95);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.gallery-card__image img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.gallery-card__body {
  padding: 14px 16px 16px;
}

.gallery-card__body h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.gallery-card__body p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.gallery-note {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 14px;
}

/* Sizes */

.section--sizes {
  background: radial-gradient(
      circle at bottom right,
      rgba(0, 200, 180, 0.1),
      transparent 55%
    ),
    rgba(0, 0, 0, 0.14);
}

.sizes-table-wrapper {
  overflow-x: auto;
}

.sizes-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: rgba(8, 10, 13, 0.96);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.sizes-table th,
.sizes-table td {
  padding: 10px 14px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sizes-table th {
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  font-weight: 500;
}

.sizes-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.01);
}

.sizes-hint {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 14px;
}

/* Contact */

.section--contact {
  background: transparent;
}

.contact-text {
  max-width: 520px;
}

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

.contact-list li {
  margin-bottom: 6px;
  font-size: 14px;
}

.contact-label {
  color: var(--text-muted);
  margin-right: 6px;
}

.contact-form-card {
  background: rgba(8, 10, 13, 0.96);
  border-radius: var(--radius-lg);
  padding: 20px 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 13px;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: #050608;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 10px;
  color: var(--text-main);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary-strong);
  background: #05070b;
}

.form-note {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--text-muted);
}

.form-note a {
  color: var(--primary);
  text-decoration: none;
}

.form-note a:hover {
  text-decoration: underline;
}

.form-toast {
  margin-top: 8px;
  font-size: 13px;
  min-height: 18px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-main);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.btn-primary {
  background: var(--accent-teal);
  color: #000;
  border-color: var(--accent-teal);
}

.btn-primary:hover {
  box-shadow: 0 0 18px var(--accent-teal);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  border-color: var(--accent-teal);
  box-shadow: 0 0 14px var(--accent-teal);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--accent-teal);
  box-shadow: 0 0 14px var(--accent-teal);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-large {
  padding-block: 18px;
  justify-content: center;
}

.btn-small {
  padding: 6px 12px;
  font-size: 13px;
}


/* Footer */

.site-footer {
  margin-top: auto;
  padding: 20px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(
      circle at top center,
      rgba(0, 180, 160, 0.18),
      transparent 55%
    ),
    rgba(0, 0, 0, 0.9);
}

.site-footer--simple {
  background: transparent;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.footer__sub {
  margin: 2px 0 0;
  color: var(--text-muted);
  font-size: 12px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--primary);
}

/* Cookie banner */

.cookie {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  max-width: 520px;
  width: calc(100% - 32px);
  z-index: 60;
}

.cookie__body {
  background: rgba(8, 10, 13, 0.98);
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  box-shadow: var(--shadow-soft);
}

.cookie__body p {
  margin: 0;
  color: var(--text-muted);
}

.cookie__body a {
  color: var(--primary);
  text-decoration: none;
}

.cookie__body a:hover {
  text-decoration: underline;
}

.cookie.hidden {
  display: none;
}

/* Simple pages */

.simple-header {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.simple-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.simple-header__logo {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
}

.simple-header__back {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}

.simple-header__back:hover {
  color: var(--primary);
}

.simple-main {
  padding: 40px 0 32px;
  min-height: calc(100vh - 120px);
}

.simple-main--center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.simple-content {
  max-width: 720px;
}

.simple-content h1 {
  font-size: 26px;
  margin-bottom: 16px;
}

.simple-content h2 {
  font-size: 18px;
  margin-top: 20px;
}

.simple-content p,
.simple-content ul {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 14px;
}

.simple-content--center {
  text-align: center;
}

.simple-note {
  margin-top: 18px;
  font-size: 13px;
}

/* Responsive */

@media (max-width: 768px) {
  .nav__burger {
    display: inline-flex;
    flex-direction: column;
  }

  .nav__links {
    position: absolute;
    right: 16px;
    top: 54px;
    padding: 10px 14px;
    background: rgba(8, 10, 13, 0.98);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    display: none;
  }

  .nav__links.nav__links--open {
    display: flex;
  }

  .hero {
    padding-top: 26px;
    min-height: auto;
  }

  .hero__bg img {
    opacity: 0.9;
    width: 140%;
    right: -32%;
  }

  .section {
    padding: 40px 0;
  }

  .section__inner--split {
    grid-template-columns: minmax(0, 1fr);
  }

  .cookie__body {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-card__image img {
    height: 160px;
  }
}
/* =========================================================
   FIX для кнопок соцсетей — отдельный стиль, не перебивается
   ========================================================= */

.btn-social {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 10px 16px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  line-height: 1 !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: var(--text-main) !important;
  cursor: pointer !important;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
}

/* эффект свечения */
.btn-social:hover {
  border-color: var(--accent-teal) !important;
  box-shadow: 0 0 16px var(--accent-teal) !important;
  transform: translateY(-2px) !important;
}

/* иконки внутри */
.btn-social img {
  width: 18px !important;
  height: 18px !important;
  object-fit: contain !important;
}

/* --- ФОН НЕ ЛОВИТ КЛИКИ, КНОПКИ ЛОВЯТ --- */

.hero {
  position: relative;
}

.hero__content {
  position: relative;
  z-index: 2;
}

/* ВСЕ возможные фоновые слои делаем «прозрачными» для мыши */
.hero__bg,
.hero__bg-gradient,
.hero__bg img,
.hero__glow,
.hero::before,
.hero::after {
  pointer-events: none !important;
  z-index: 0;
}

/* А вот сами кнопки – наоборот, активные */
.hero-actions a,
.hero-actions .btn {
  pointer-events: auto !important;
}
.hero-container {
  display: flex;
  flex-direction: row; /* Десктоп – как было */
  align-items: center;
  justify-content: center;
}

.logo {
  order: 1;
}

.hero-dog {
  order: 2;
}

/* ----- Мобильная версия ----- */
/* Мобильная версия */
@media (max-width: 768px) {
  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero__content {
    order: 1;   /* ЛОГОТИП ПЕРВЫМ */
  }

  .hero__bg {
    order: 2;   /* БОРЗАЯ ПОСЛЕ */
  }
}





