/* ============ Global Studio — публичный сайт ============ */
:root {
  --ink: #17140f;
  --ink-soft: #4c463c;
  --paper: #faf7f1;
  --paper-tint: #f1ebe0;
  --gold: #b8892f;
  --gold-light: #d4af5f;
  --white: #fffdf9;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Manrope', 'Segoe UI', sans-serif;
  --shadow: 0 20px 60px rgba(23, 20, 15, .12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; }

/* ---------- Шапка ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background .35s, box-shadow .35s, padding .35s;
}
.site-header.scrolled {
  background: rgba(250, 247, 241, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(23, 20, 15, .08);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; gap: 32px; }
.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 700;
  letter-spacing: .04em;
}
.logo-sub {
  font-size: .62rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.main-nav { display: flex; gap: 28px; margin-left: auto; }
.main-nav a {
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 0; position: relative; opacity: .85; transition: opacity .2s;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width .25s;
}
.main-nav a:hover, .main-nav a.active { opacity: 1; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.nav-toggle { display: none; }

/* Шапка поверх тёмного hero */
.site-header:not(.scrolled).on-hero { color: var(--white); }
.site-header:not(.scrolled).on-hero .logo-sub { color: var(--gold-light); }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-block; padding: 14px 34px;
  font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid transparent; cursor: pointer; transition: all .25s;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--ink); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--gold); }
.btn-ghost { border-color: rgba(255, 253, 249, .6); color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--ink); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.header-cta { padding: 10px 22px; font-size: .72rem; }
.site-header:not(.scrolled).on-hero .header-cta { border-color: rgba(255,253,249,.6); color: var(--white); }
.site-header:not(.scrolled).on-hero .header-cta:hover { background: var(--white); color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  color: var(--white); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 25%;
  background-color: #2a251d;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15, 13, 10, .82) 25%, rgba(15, 13, 10, .35) 65%, rgba(15, 13, 10, .5));
}
.hero-content { position: relative; max-width: 1200px; padding-top: 80px; }
.hero-kicker {
  font-size: .78rem; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600; margin-bottom: 26px;
  animation: fadeUp .8s ease both;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 5rem); font-weight: 500; max-width: 780px;
  margin-bottom: 26px; animation: fadeUp .8s .15s ease both;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-text {
  max-width: 520px; font-size: 1.05rem; font-weight: 300; opacity: .92;
  margin-bottom: 40px; animation: fadeUp .8s .3s ease both;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp .8s .45s ease both; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: .68rem; letter-spacing: .35em; text-transform: uppercase; opacity: .65;
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 34px;
  background: var(--white); margin: 10px auto 0;
  animation: scrollLine 1.8s ease infinite;
}
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* ---------- Секции ---------- */
.section { padding: 96px 0; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-tint { background: var(--paper-tint); }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 48px; gap: 20px; flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.link-arrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); transition: letter-spacing .25s;
}
.link-arrow:hover { letter-spacing: .22em; }

/* ---------- Преимущества ---------- */
.features { padding-top: 88px; }
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.feature-num {
  font-family: var(--serif); font-size: .95rem; color: var(--gold);
  display: block; margin-bottom: 14px;
}
.feature-num::after {
  content: ''; display: block; width: 34px; height: 1px; background: var(--gold); margin-top: 10px;
}
.feature h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature p { font-size: .92rem; color: var(--ink-soft); }

/* ---------- Модели ---------- */
.models-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.model-card { display: block; group: card; }
.model-photo {
  aspect-ratio: 3 / 4; overflow: hidden; background: var(--paper-tint);
}
.model-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform .6s ease, filter .6s;
}
.model-card:hover .model-photo img { transform: scale(1.05); }
.model-info { padding: 18px 4px 0; display: flex; flex-direction: column; }
.model-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.model-city {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-top: 4px;
}
.section-dark .model-city { color: var(--gold-light); }

/* ---------- Блог ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); box-shadow: 0 4px 24px rgba(23,20,15,.06); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-cover { aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-tint); }
.blog-cover img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .6s; }
.blog-card:hover .blog-cover img { transform: scale(1.04); }
.blog-body { padding: 22px 24px 26px; }
.blog-body time {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600;
}
.blog-body h3 { font-size: 1.15rem; margin-top: 10px; font-weight: 600; }

/* ---------- CTA ---------- */
.cta-band {
  background: linear-gradient(120deg, #1c1811, #35291a 60%, #1c1811);
  color: var(--white); padding: 90px 0; text-align: center;
}
.cta-inner h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); max-width: 720px; margin: 0 auto 14px; }
.cta-inner p { opacity: .8; margin-bottom: 34px; }

/* ---------- Внутренние страницы ---------- */
.page-head {
  padding: 170px 0 64px;
  background: var(--paper-tint);
  border-bottom: 1px solid rgba(23,20,15,.06);
}
.page-head h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 10px; }
.page-head .eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; color: var(--gold-dark); margin-bottom: 12px; }
.page-head .page-lead { color: var(--ink-soft); max-width: 640px; }
.page-head p { color: var(--ink-soft); max-width: 560px; }
.breadcrumbs { margin-bottom: 28px; }
.breadcrumbs a {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: var(--gold);
}
.empty-note { color: var(--ink-soft); text-align: center; padding: 40px 0; }

/* ---------- Страница модели ---------- */
.model-page { padding-top: 140px; }
.model-layout {
  display: grid; grid-template-columns: minmax(0, 460px) 1fr; gap: 56px; align-items: start;
}
.model-main-photo { aspect-ratio: 3 / 4; overflow: hidden; box-shadow: var(--shadow); }
.model-main-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.model-details h1 { font-size: clamp(2rem, 3.8vw, 3rem); margin-bottom: 24px; }
.model-stats { list-style: none; margin-bottom: 28px; }
.model-stats li {
  display: flex; gap: 18px; padding: 12px 0; border-bottom: 1px solid rgba(23,20,15,.09);
  font-weight: 600;
}
.model-stats li span {
  width: 120px; flex-shrink: 0; font-weight: 400; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft);
  padding-top: 3px;
}
.model-desc { color: var(--ink-soft); margin-bottom: 32px; }
.model-desc p + p { margin-top: 12px; }
.gallery-title { font-size: 1.9rem; margin: 72px 0 30px; }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { overflow: hidden; cursor: zoom-in; background: var(--paper-tint); }
.photo-grid .gallery-item { aspect-ratio: 3 / 4; }
.photo-grid .gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.04); }

/* ---------- Статья ---------- */
.article-page { padding-top: 140px; }
.article-date {
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.article-page h1 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin: 14px 0 30px; }
.article-cover { margin-bottom: 36px; box-shadow: var(--shadow); }
.article-text { font-size: 1.06rem; color: #2c2820; }
.article-text p + p { margin-top: 16px; }
.article-gallery { margin-top: 44px; }

/* ---------- О школе ---------- */
.about-text .lead { font-size: 1.15rem; }
.about-text .lead + .lead { margin-top: 14px; }
.about-text h2 { font-size: 1.7rem; margin: 44px 0 18px; }
.about-list { list-style: none; }
.about-list li {
  padding: 14px 0 14px 30px; border-bottom: 1px solid rgba(23,20,15,.08);
  position: relative; color: var(--ink-soft);
}
.about-list li::before {
  content: '—'; position: absolute; left: 0; color: var(--gold); font-weight: 700;
}
.about-list strong { color: var(--ink); }
.about-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px; }

/* ---------- Контакты ---------- */
.contacts-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contacts-info h2 { font-size: 2rem; margin-bottom: 24px; }
.contacts-list { list-style: none; margin-bottom: 24px; }
.contacts-list li { padding: 14px 0; border-bottom: 1px solid rgba(23,20,15,.09); font-weight: 600; font-size: 1.05rem; }
.contacts-list li span {
  display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 400; margin-bottom: 4px;
}
.contacts-list a:hover { color: var(--gold); }
.contacts-note { color: var(--ink-soft); font-size: .92rem; }
.contacts-form { background: var(--white); padding: 40px; box-shadow: var(--shadow); }
.apply-form label {
  display: block; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: var(--ink-soft); margin-bottom: 20px;
}
.apply-form input, .apply-form textarea {
  display: block; width: 100%; margin-top: 8px; padding: 13px 16px;
  border: 1px solid rgba(23,20,15,.18); background: var(--paper);
  font: inherit; font-size: .95rem; letter-spacing: normal; text-transform: none;
  transition: border-color .2s;
}
.apply-form input:focus, .apply-form textarea:focus { outline: none; border-color: var(--gold); }
.apply-form .btn { width: 100%; }
.form-success { text-align: center; padding: 40px 0; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 10px; color: var(--gold); }

.blog-cover-video { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; background: var(--ink); color: var(--gold); font-size: 2.2rem; }

/* ---------- Текст СЕО-статей ---------- */
.article-text h2 { font-size: 1.35rem; margin: 30px 0 12px; }
.article-text .text-li { padding-left: 26px; position: relative; margin-bottom: 8px; }
.article-text .text-li::before { content: '✦'; position: absolute; left: 2px; color: var(--gold); }
.article-text a { color: var(--gold-dark); }

/* ---------- Занятия (услуги) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.service-card { display: block; background: var(--white); box-shadow: var(--shadow); text-decoration: none; color: var(--ink); transition: transform .3s, box-shadow .3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,.14); }
.service-photo { aspect-ratio: 16/10; overflow: hidden; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.service-info { padding: 26px 28px 30px; }
.service-info h2 { font-size: 1.35rem; margin-bottom: 10px; }
.service-info p { color: var(--ink-soft); font-size: .95rem; line-height: 1.6; margin-bottom: 14px; }
.service-more { color: var(--gold-dark); font-weight: 600; font-size: .92rem; }
.service-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: start; }
.service-intro { font-size: 1.06rem; line-height: 1.75; margin-bottom: 28px; }
.service-text h2 { font-size: 1.4rem; margin: 26px 0 14px; }
.service-program { list-style: none; padding: 0; margin-bottom: 10px; }
.service-program li { padding: 9px 0 9px 30px; position: relative; color: var(--ink-soft); line-height: 1.5; }
.service-program li::before { content: '✦'; position: absolute; left: 4px; color: var(--gold); }
.service-cta { margin-top: 36px; background: var(--white); box-shadow: var(--shadow); padding: 30px 32px 34px; }
.service-gallery { grid-template-columns: repeat(2, 1fr); }
.service-others { margin-top: 28px; }
.service-others h3 { font-size: 1.05rem; margin-bottom: 12px; }
.service-others a { display: block; padding: 9px 0; color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(0,0,0,.07); }
.service-others a:hover { color: var(--gold-dark); }
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-layout { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- СЕО-блоки ---------- */
.seo-block { padding-top: 0; }
.seo-block h2 { font-size: 1.5rem; margin-bottom: 16px; }
.seo-block p { color: var(--ink-soft); max-width: 860px; margin-bottom: 14px; line-height: 1.7; font-size: .97rem; }

/* ---------- Страница «Видео»: карусель ---------- */
.video-carousel-wrap { position: relative; }
.video-carousel {
  display: flex; gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 2px 16px; scrollbar-width: thin;
}
.video-slide { flex: 0 0 300px; scroll-snap-align: start; }
.video-holder {
  position: relative; width: 100%; aspect-ratio: 9/14; background: #111;
  border-radius: 4px; box-shadow: var(--shadow); overflow: hidden; cursor: pointer;
}
.video-holder img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.video-holder video { width: 100%; height: 100%; object-fit: contain; background: #000; }
.video-play {
  position: absolute; inset: 0; margin: auto; width: 64px; height: 64px;
  border: none; border-radius: 50%; background: rgba(20,20,20,.65); color: var(--gold);
  font-size: 1.5rem; padding-left: 6px; cursor: pointer; transition: transform .2s, background .2s;
}
.video-holder:hover .video-play { transform: scale(1.1); background: rgba(20,20,20,.85); }
.video-holder video ~ .video-play, .video-holder:has(video) .video-play { display: none; }
.car-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border: none; border-radius: 50%;
  background: var(--white); color: var(--ink); font-size: 1.6rem; line-height: 1;
  box-shadow: 0 4px 18px rgba(0,0,0,.18); cursor: pointer; transition: background .2s, color .2s;
}
.car-btn:hover { background: var(--gold); color: #fff; }
.car-prev { left: -14px; }
.car-next { right: -14px; }
.video-caption { display: block; margin-top: 10px; font-size: .92rem; color: var(--ink); text-decoration: none; line-height: 1.35; }
a.video-caption:hover { color: var(--gold-dark); }
.video-caption-plain { color: var(--ink-soft); }
@media (max-width: 560px) {
  .video-slide { flex-basis: 78vw; }
  .car-prev { left: 4px; }
  .car-next { right: 4px; }
}

/* ---------- Видео в статье ---------- */
.article-videos { margin: 28px 0; display: grid; gap: 20px; }
.article-video { width: 100%; max-height: 70vh; background: #000; border-radius: 4px; box-shadow: var(--shadow); }

/* ---------- Приглашение модели ---------- */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; }
.invite-block { margin-top: 80px; background: var(--white); box-shadow: var(--shadow); }
.invite-inner { max-width: 680px; margin: 0 auto; padding: 56px 40px; }
.invite-block h2 { font-size: 1.9rem; margin-bottom: 12px; }
.invite-note { color: var(--ink-soft); margin-bottom: 28px; }
.invite-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.invite-form .btn { width: auto; padding-left: 48px; padding-right: 48px; }
@media (max-width: 640px) {
  .invite-inner { padding: 36px 22px; }
  .invite-grid { grid-template-columns: 1fr; }
  .invite-form .btn { width: 100%; }
}

/* ---------- Пагинация ---------- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 56px; flex-wrap: wrap; }
.pg {
  min-width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(23,20,15,.15); font-weight: 600; font-size: .9rem; transition: all .2s;
  padding: 0 8px;
}
.pg:hover { border-color: var(--gold); color: var(--gold); }
.pg.current { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ---------- Подвал ---------- */
.site-footer { background: var(--ink); color: rgba(250,247,241,.85); padding: 70px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px;
}
.footer-brand p { margin-top: 14px; font-size: .9rem; opacity: .7; }
.footer-col h4 {
  font-size: .74rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 18px;
}
.footer-col a, .footer-col span { display: block; padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  padding-top: 22px; padding-bottom: 22px;
  border-top: 1px solid rgba(250,247,241,.12);
  font-size: .82rem; opacity: .65;
}
.admin-link:hover { color: var(--gold-light); }

/* ---------- Лайтбокс ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  background: rgba(12, 10, 7, .94);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; object-fit: contain; box-shadow: 0 0 80px rgba(0,0,0,.6); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: none; border: none; color: #fff;
  font-size: 2.6rem; cursor: pointer; opacity: .7; transition: opacity .2s; line-height: 1;
  padding: 12px;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { opacity: 1; }
.lb-close { top: 18px; right: 26px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); font-size: 3.4rem; }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); font-size: 3.4rem; }

/* ---------- Адаптив ---------- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .models-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .model-layout { grid-template-columns: 1fr; gap: 36px; }
  .model-main-photo { max-width: 460px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .main-nav {
    position: fixed; inset: 0; background: var(--ink); color: var(--white);
    flex-direction: column; align-items: center; justify-content: center; gap: 30px;
    transform: translateX(100%); transition: transform .35s ease; z-index: 90; margin: 0;
  }
  .main-nav.open { transform: none; }
  .main-nav a { font-size: 1.1rem; }
  .header-cta { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px; margin-left: auto;
    background: none; border: none; cursor: pointer; z-index: 95; padding: 8px;
  }
  .nav-toggle span { width: 26px; height: 2px; background: currentColor; transition: all .3s; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #fff; }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #fff; }
  .contacts-layout { grid-template-columns: 1fr; gap: 40px; }
  .contacts-form { padding: 28px 22px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .page-head { padding-top: 130px; }
  .model-page, .article-page { padding-top: 110px; }
}
@media (max-width: 520px) {
  .models-grid, .blog-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions .btn { width: 100%; text-align: center; }
}
