/* --- Сброс и Базовые стили --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Bellota Text', sans-serif;
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.4;
    background-color: #000;
    font-size: 16pt;
}
main {
    background-color: #fff;
}

img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1560px; width: 100%; margin: 0 auto; padding: 0 20px !important; position: relative; }
h1, h2 { font-size: 73pt; font-weight: 300; line-height: 1.1; margin-bottom: 50px; text-transform: lowercase; }
h3 { font-size: 30pt; font-weight: 300; margin-bottom: 20px; }
p { font-size: 16pt; font-weight: 300; margin-bottom: 20px; }
.full-width-black { background-color: #000; width: 100%; }
.full-width-red { background-color: #a81c1c; width: 100%; }

/* --- МОБИЛЬНАЯ ПОЛОСКА --- */
.mobile-top-strip { display: none; background-color: #000; width: 100%; padding: 15px 20px; justify-content: space-between; align-items: center; position: relative; z-index: 1002; }

.mobile-top-strip .burger-btn { 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    background-color: rgba(0, 0, 0, 0.3); 
    backdrop-filter: blur(5px); 
    border-radius: 8px; 
    padding: 8px; 
    width: 46px; 
    height: 38px; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    box-sizing: border-box;
}
.mobile-top-strip .burger-btn { order: 1; }
.mobile-top-strip .top-phone-link { order: 2; font-size: 14pt !important; }

/* --- ШАПКА --- */
.full-width-black-header-wrapper { background-color: #000; width: 100%; display: flex; flex-direction: column; }

/* --- ГЛАВНАЯ СТРАНИЦА --- */
.hero-wrapper-index {
    position: relative;
    max-width: 1700px;
    width: 100%;
    margin: 0 auto;
    background-color: #000;
    line-height: 0;
}
.hero-video-bg {
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
}

/* --- ВНУТРЕННИЕ СТРАНИЦЫ --- */
.hero-wrapper-inner {
    position: relative !important; 
    max-width: 1700px;
    width: 100%;
    margin: 0 auto;
    background-color: #000;
    line-height: 0;
}
.inner-hero-img {
    width: 100%;      
    height: auto;     
    display: block;
    z-index: 1;
}

/* Общий оверлей */
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding: 30px 0; line-height: normal; font-size: 16pt; z-index: 2; }
.header-top-row { display: flex; align-items: center; justify-content: space-between; pointer-events: auto; }

.header-logo-img { width: 100px; }

/* Бургер */
.burger-btn { display: none; width: 30px; height: 20px; background: transparent; border: none; cursor: pointer; flex-direction: column; justify-content: space-between; padding: 0; z-index: 1001; }
.burger-btn span { width: 100%; height: 2px; background-color: #fff; display: block; transition: all 0.3s ease; }

/* Мобильное меню */
.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: rgba(0, 0, 0, 0.92); background-image: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('/images/Background-01.png'); background-repeat: no-repeat; background-position: center center; background-size: contain; z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s ease; }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu-list { list-style: none; text-align: center; position: relative; z-index: 2; }
.mobile-menu-list li { margin: 20px 0; opacity: 0; transform: translateY(20px); transition: all 0.4s ease; }
.mobile-menu-overlay.active .mobile-menu-list li { opacity: 1; transform: translateY(0); }

/* ИЗМЕНЕНИЕ ЗДЕСЬ: Убрали uppercase */
.mobile-menu-list a { color: #fff; font-size: 24pt; text-decoration: none; text-transform: none; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }

/* Телефон */
a.top-phone-link { color: #ffffff !important; text-decoration: none !important; font-size: 16pt !important; font-weight: 400; pointer-events: auto; line-height: 1.4; background-color: rgba(0, 0, 0, 0.25); padding: 8px 20px; border-radius: 50px; backdrop-filter: blur(5px); border: 1px solid rgba(255, 255, 255, 0.1); transition: background-color 0.3s; }
a.top-phone-link:hover { background-color: rgba(0, 0, 0, 0.5); }

/* Меню */
nav.main-nav { pointer-events: auto; margin-bottom: 0; background-color: rgba(0, 0, 0, 0.25); padding: 10px 30px; border-radius: 50px; backdrop-filter: blur(5px); border: 1px solid rgba(255, 255, 255, 0.1); width: auto; margin-left: auto; margin-right: auto; transition: background-color 0.3s; }
nav.main-nav:hover { background-color: rgba(0, 0, 0, 0.4); }
nav.main-nav ul { list-style: none; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
nav.main-nav a { color: #ffffff !important; text-decoration: none !important; font-size: 14pt; text-shadow: 0 1px 3px rgba(0,0,0,0.8); position: relative; padding-bottom: 5px; transition: all 0.3s ease; }
nav.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 1px; background-color: #fff; transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); transform: translateX(-50%); opacity: 0.7; }
nav.main-nav a:hover { text-shadow: 0 0 10px rgba(255,255,255,0.5), 0 1px 3px rgba(0,0,0,0.8); }
nav.main-nav a:hover::after { width: 100%; opacity: 1; }

/* --- СПЕЦ. СТИЛИ ДЛЯ ВНУТРЕННИХ СТРАНИЦ --- */
.inner-phone-link { background-color: #000 !important; border-color: #000 !important; opacity: 1 !important; backdrop-filter: none !important; }
.inner-nav-bar { position: absolute !important; bottom: 0 !important; left: 0 !important; width: 100% !important; max-width: none !important; border-radius: 0 !important; margin-bottom: 0 !important; background-color: rgba(0, 0, 0, 0.85) !important; opacity: 1 !important; backdrop-filter: none !important; padding: 12px 0 !important; }
.inner-nav-bar:hover { background-color: rgba(0, 0, 0, 0.85) !important; }
.inner-nav-bar a { font-size: 14pt !important; }

.brand-strip-black { padding: 80px 0; text-align: center; background-color: transparent; }
.full-width-black-header-wrapper .brand-strip-black img { width: 100%; height: auto; margin: 20px 0; }
.section-intro, .section-steps, .section-services, .section-emotions, .section-author-new, .section-method-intro, .section-about, .section-portfolio-content, .section-contacts { padding-top: 25px !important; padding-bottom: 25px !important; }
.intro-rows-layout { display: flex; flex-direction: column; gap: 30px; }
.intro-row { display: flex; justify-content: space-between; gap: 30px; }
.intro-col-33 { width: 32%; display: flex; flex-direction: column; justify-content: space-between; }
.intro-text-block { position: relative; padding: 10px 0; }
.intro-text-block h3 { font-size: 24pt; line-height: 1.2; margin-bottom: 20px; font-weight: 400; }
.intro-text-content { position: relative; z-index: 2; }
.bg-blob-1 { position: absolute; top: -20px; left: -30px; width: 300px; max-width: none; z-index: 1; opacity: 0.8; }
.bg-blob-2 { position: absolute; top: 50%; right: -20px; left: auto; transform: translateY(-50%); width: auto; max-width: 100%; z-index: 1; opacity: 0.8; }
.intro-hint-row { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 40px; }
.intro-icon-left { width: 50px; }
.intro-hint-text { text-align: right; font-size: 20pt; color: #555; line-height: 1.3; display: inline-block; }
.hint-highlight { font-style: italic; border-bottom: 1px dashed #999; cursor: default; }
.intro-list-title { font-weight: 600; margin-top: 20px; margin-bottom: 10px; display: block; }
.intro-list { list-style: none; color: #555; font-size: 14pt; margin-bottom: 30px; }
.intro-list li { margin-bottom: 5px; }
.intro-icon-right { width: 40px; margin: 30px 0; }
.img-hover-wrap { position: relative; width: 100%; height: 100%; overflow: hidden; cursor: pointer; background-color: #000; }
.img-front { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 10; }
.reveal-decor { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #d23c32; z-index: 15; pointer-events: none; clip-path: circle(0% at 50% 50%); transition: clip-path 0.7s cubic-bezier(0.65, 0, 0.35, 1); }
.img-back { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 20; clip-path: circle(0% at 50% 50%); transition: clip-path 0.7s cubic-bezier(0.65, 0, 0.35, 1) 0.1s; filter: contrast(1.1); }
.img-hover-wrap:hover .reveal-decor, .img-hover-wrap.tap-active .reveal-decor { clip-path: circle(150% at 50% 50%); }
.img-hover-wrap:hover .img-back, .img-hover-wrap.tap-active .img-back { clip-path: circle(150% at 50% 50%); }
.mobile-swipe-hand { display: none; position: absolute; top: 20px; left: 20px; width: 80px; height: 80px; background: rgba(0,0,0,0.6); border-radius: 50%; z-index: 100; align-items: center; justify-content: center; pointer-events: none; animation: sway-horizontal 2s infinite ease-in-out; }
.mobile-swipe-hand svg { width: 40px; height: 40px; fill: #fff; }
@keyframes sway-horizontal { 0% { transform: translateX(0); } 25% { transform: translateX(-10px); } 75% { transform: translateX(10px); } 100% { transform: translateX(0); } }
.intro-img-tall, .intro-img-stack { height: 100%; }
.intro-img-tall .img-hover-wrap { min-height: 500px; }
.intro-img-stack { display: flex; flex-direction: column; justify-content: space-between; gap: 30px; }
.intro-img-stack .img-hover-wrap { height: 48%; }
.full-width-red-wrapper { background-color: #000000; width: 100%; margin-top: 60px; display: flex; flex-direction: column; }
.section-banner-red { width: 100%; position: relative; min-height: 600px; overflow: hidden; }
.banner-bg { width: 100%; height: 100%; position: absolute; top: 0; right: 0; object-fit: cover; object-position: right center; z-index: 1; }
.banner-overlay { position: relative; z-index: 2; max-width: 1560px; margin: 0 auto; height: 600px; display: flex; align-items: center; padding-left: 20px; }
.banner-text-box { color: #fff; max-width: 55%; padding-right: 20px; }
.banner-text-box h2 { color: #fff; font-size: 60pt; line-height: 1; margin-bottom: 10px; font-weight: 300; }
.banner-subtitle { font-size: 12pt; text-transform: uppercase; letter-spacing: 2px; opacity: 0.6; margin-bottom: 40px; }
.banner-desc { color: #fff; font-size: 14pt; line-height: 1.5; margin-bottom: 20px; opacity: 0.9; font-weight: 300; }
.brand-strip-red { background-color: transparent; padding: 30px 0; text-align: center; }
.brand-strip-red img { margin: 20px auto; display: block; }
.section-method-intro h2 { margin-bottom: 30px; }
.section-method-intro .subtitle { font-size: 18pt; color: #555; margin-bottom: 60px; display: block; }
.method-grid { display: flex; justify-content: space-between; gap: 60px; position: relative; }
.method-text-col { width: 45%; position: relative; }
.method-images-col { width: 50%; display: flex; justify-content: space-between; gap: 20px; height: 600px; }
.method-img-tall-col { width: 48%; height: 100%; }
.method-img-stack-col { width: 48%; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.method-img-stack-col .img-hover-wrap { height: 48%; }
.method-bg-blob { position: absolute !important; top: 0; left: -50px; width: 400px; z-index: 0; opacity: 0.6; pointer-events: none; max-width: none !important; }
.method-text-content { position: relative; z-index: 2; }
.method-text-content p { font-size: 14pt; margin-bottom: 20px; }
.method-text-content ul { list-style: disc; padding-left: 20px; margin-bottom: 30px; font-size: 14pt; }
.method-text-content li { margin-bottom: 15px; }
.signs-section { padding-bottom: 80px; }
.signs-grid { display: flex; justify-content: space-between; gap: 40px; margin-top: 60px; align-items: flex-start; }
.sign-item { width: 32%; }
.sign-number-img { height: 80px; margin-bottom: 20px; display: block; }
.sign-item h3 { font-size: 18pt; font-weight: 600; line-height: 1.3; margin-bottom: 15px; }
.sign-item p { font-size: 12pt; color: #555; line-height: 1.5; }
.section-about { display: flex; justify-content: space-between; gap: 50px; position: relative;}
.about-text-side { width: 48%; }
.about-image-side { width: 48%; }
.about-image-side img { width: 100%; height: auto; display: block; }
.about-intro-wrapper { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.about-icon { width: 40px; flex-shrink: 0; margin-top: 5px; }
.about-intro-text { font-size: 18pt; color: #333; line-height: 1.3; }
.about-content-text p { font-size: 14pt; margin-bottom: 20px; color: #555; line-height: 1.6; }
.about-img-mobile { display: none; width: 100%; margin-bottom: 30px; margin-top: 10px; }
.section-author-new { display: flex; }
.author-text-side { width: 50%; display: flex; flex-direction: column; }
.author-red-box { background-color: #d23c32; padding: 60px; color: #fff; flex: 0 0 auto; }
.author-red-box p { color: #fff; margin-bottom: 20px; font-size: 16pt; }
.author-green-box { background-color: #4ba895; padding: 60px; color: #fff; flex: 1 1 auto; display: flex; flex-direction: column; justify-content: space-between; position: relative; }
.author-green-box p { color: #fff; margin-bottom: 20px; font-size: 14pt; line-height: 1.4; }
.author-green-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; }
.author-icon-footer { width: 30px; }
.btn-black-small { background: #000; color: #fff; padding: 10px 30px; border-radius: 30px; text-decoration: none; font-size: 12pt; }
.author-image-side { width: 50%; }
.author-image-side img { width: 100%; height: 100%; object-fit: cover; display: block; }
.author-img-mobile-inter { display: none; width: 100%; height: auto; }
.services-grid { display: flex; justify-content: center; align-items: stretch; margin-top: 50px; gap: 40px; }
.service-item { width: 32%; display: flex; flex-direction: column; text-align: left; background-color: #fff; border: 1px solid #e5e5e5; border-radius: 20px; padding: 40px; transition: all 0.3s ease; }
.service-item:hover { border-color: #000; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transform: translateY(-10px); }
.service-icon { height: 80px; margin-bottom: 30px; }
.service-icon img { height: 100%; width: auto; display: block; }
.service-item h3 { font-size: 28pt; font-weight: 300; margin-bottom: 20px; line-height: 1.1; }
.service-desc { font-size: 14pt; color: #555; margin-bottom: 30px; line-height: 1.3; }
.service-price { font-size: 22pt; font-weight: 400; margin-bottom: 30px; color: #000; display: inline-block; background-color: #ffe066; padding: 5px 15px; border-radius: 2px; transform: rotate(-2deg); }
.service-list { list-style-type: disc; padding-left: 20px; margin-bottom: 40px; font-size: 13pt; color: #333; line-height: 1.5; }
.service-list li { margin-bottom: 10px; }
.service-list li::before { content: none; }
.btn-black-pill { background: #000; color: #fff; padding: 15px 50px; border-radius: 50px; text-decoration: none; text-align: center; align-self: center; margin-top: auto; font-size: 14pt; border: none; cursor: pointer; }
.steps-flex { display: flex; justify-content: space-between; align-items: flex-start; margin-top: 60px; }
.step-item { width: 20%; text-align: left; }
.step-icon { height: 80px; margin-bottom: 20px; }
.step-separator { margin-top: 100px; width: 50px; }
.steps-footer { text-align: center; position: relative; margin-top: 50px; }
.btn-black-rounded { background: #000; color: #fff; padding: 15px 40px; border-radius: 50px; text-decoration: none; display: inline-block; font-size: 14pt; }
.arrow-separator-big { display: block; margin: 40px auto; width: auto; max-width: 100%; }
.emotions-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.emotions-count { text-align: right; font-size: 16pt; color: #777; line-height: 1.2; }
.emotions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.emotion-card { position: relative; cursor: zoom-in; }
.emotion-card img { width: 100%; height: 100%; object-fit: cover; display: block; } 
.emotion-marker { display: none !important; }
.lightbox-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.95); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease; }
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90%; max-height: 85%; object-fit: contain; user-select: none; }
.lightbox-close { position: absolute; top: 20px; right: 20px; color: #fff; font-size: 40px; cursor: pointer; z-index: 10000; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 60px; height: 60px; cursor: pointer; z-index: 10000; opacity: 0.6; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; }
.lightbox-nav svg { width: 40px; height: 40px; stroke: #fff; stroke-width: 2; fill: none; }
.lightbox-nav:hover { opacity: 1; transform: translateY(-50%) scale(1.1); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.blog-post-container { max-width: 800px; margin: 0 auto; padding: 60px 20px; }
.blog-post-container h1 { font-size: 40pt; line-height: 1.1; margin-bottom: 40px; }
.blog-post-container h2 { font-size: 28pt; margin-top: 60px; margin-bottom: 30px; font-weight: 400; }
.blog-post-container p { font-size: 12pt; line-height: 1.5; margin-bottom: 20px; color: #333; }
.blog-post-container blockquote { font-size: 16pt; font-style: italic; border-left: 4px solid #d23c32; padding-left: 20px; margin: 40px 0; color: #555; }
.blog-post-container .btn-black-cta { display: inline-block; background-color: #000; color: #fff; padding: 15px 40px; text-decoration: none; border-radius: 50px; font-weight: 400; margin-top: 15px; transition: all 0.3s ease; }
.blog-post-container .btn-black-cta:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.contact-page-grid { display: flex; justify-content: space-between; gap: 60px; align-items: flex-start; }
.contact-info-col { width: 45%; }
.contact-form-col { width: 50%; }
.contact-block { margin-bottom: 40px; }
.contact-label { font-size: 12pt; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }
.contact-value { font-size: 24pt; color: #000; text-decoration: none; display: block; font-weight: 300; }
.social-links-big { display: flex; gap: 20px; margin-top: 20px; }
.social-links-big a { font-size: 16pt; color: #000; text-decoration: none; border-bottom: 1px solid #ddd; padding-bottom: 5px; transition: all 0.3s; }
.social-links-big a:hover { border-color: #000; }
.booking-form-style { background: #f9f9f9; padding: 40px; border-radius: 20px; }
.booking-form-style h3 { font-size: 24pt; margin-bottom: 10px; }
.booking-form-style p { font-size: 12pt; color: #777; margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-input { width: 100%; padding: 15px; border: 1px solid #ddd; background: #fff; border-radius: 10px; font-size: 14pt; font-family: inherit; font-weight: 300; transition: border-color 0.3s; }
.form-input:focus { outline: none; border-color: #000; }
.form-textarea { min-height: 120px; resize: vertical; }
.btn-submit { width: 100%; background: #000; color: #fff; padding: 15px; border: none; border-radius: 50px; font-size: 16pt; cursor: pointer; transition: all 0.3s; font-family: inherit; }
.btn-submit:hover { background: #333; transform: translateY(-2px); }
.form-result { margin-top: 20px; text-align: center; display: none; }
.form-result.success { color: #155724; background-color: #d4edda; border: 1px solid #c3e6cb; padding: 20px; border-radius: 8px; font-size: 16pt; font-weight: 600; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.form-result.error { color: red; }
.site-version-footer { font-size: 0.8em; opacity: 0.4; margin-left: 10px; font-weight: 300; }
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 2000; display: none; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s; }
.modal-overlay.active { display: flex; opacity: 1; }
.modal-box { background: #fff; padding: 40px; width: 500px; max-width: 90%; border-radius: 20px; position: relative; transform: translateY(20px); transition: transform 0.3s; }
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-close { position: absolute; top: 15px; right: 20px; font-size: 30px; cursor: pointer; color: #999; }
.modal-close:hover { color: #000; }
.portfolio-hero { width: 100%; background: #000; line-height: 0; position: relative; overflow: hidden; }
.portfolio-hero img { width: calc(100% + 2px); margin-left: -1px; height: auto; display: block; }
.portfolio-grid-wrapper { text-align: center; }
.portfolio-hidden { display: none; }
.btn-load-more { cursor: pointer; border: none; background: #000; color: #fff; padding: 15px 50px; border-radius: 50px; font-size: 14pt; font-family: inherit; transition: all 0.3s; margin-top: 40px; display: inline-block; }
.btn-load-more:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
footer.main-footer { background-color: #000; color: #fff; padding: 60px 0 30px; width: 100%; }
.footer-wrapper { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; padding-bottom: 40px; margin-bottom: 20px; gap: 20px; }
.footer-left, .footer-right { display: flex; gap: 15px; }
.footer-left { flex-direction: column; align-items: flex-start; }
.footer-center { flex: 1; display: flex; justify-content: center; }
.footer-right ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 25px; justify-content: flex-end; }
.footer-left a, .footer-right a { color: #ffffff !important; text-decoration: none; font-size: 12pt; }
.footer-bottom { display: flex; justify-content: space-between; font-size: 10pt; color: #999; }
.admin-container { max-width: 1000px; margin: 50px auto; padding: 20px; font-family: sans-serif; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.btn-admin { padding: 10px 20px; background: #000; color: #fff; text-decoration: none; border-radius: 5px; border: none; cursor: pointer; font-size: 14px; }
.btn-admin-danger { background: #d23c32; }
.btn-admin-edit { background: #4ba895; }
.admin-list-item { display: flex; align-items: center; border: 1px solid #ddd; padding: 15px; margin-bottom: 10px; background: #f9f9f9; border-radius: 8px; }
.admin-list-img { width: 80px; height: 80px; object-fit: cover; border-radius: 4px; margin-right: 20px; }
.admin-list-info { flex: 1; }
.admin-list-actions { display: flex; gap: 10px; }
.admin-form-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 2000; display: none; justify-content: center; align-items: center; }
.admin-form-overlay.active { display: flex; }
.admin-form-box { background: #fff; padding: 30px; border-radius: 10px; width: 500px; max-width: 90%; max-height: 90vh; overflow-y: auto; position: relative; }
.admin-form-group { margin-bottom: 15px; }
.admin-form-group label { display: block; margin-bottom: 5px; font-weight: bold; font-size: 14px; }
.admin-form-group input[type="text"], .admin-form-group input[type="number"] { width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 4px; }
.close-admin-form { position: absolute; top: 15px; right: 15px; cursor: pointer; font-size: 24px; }

/* --- MEDIA QUERIES --- */
@media (max-width: 1200px) {
    h1, h2 { font-size: 40pt; }
    .intro-row { flex-direction: column; }
    .intro-col-33 { width: 100%; }
    .intro-img-stack img { height: auto; } 
    .banner-text-box h2 { font-size: 40pt; }
    .emotions-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { flex-wrap: wrap; }
    .service-item { width: 100%; margin-bottom: 60px; }
    .section-author-new { flex-direction: column; }
    .author-text-side, .author-image-side { width: 100%; }
    .method-grid { flex-direction: column; }
    .method-text-col, .method-images-col { width: 100%; }
    .signs-grid { flex-wrap: wrap; }
    .sign-item { width: 100%; margin-bottom: 40px; }
    .section-about { flex-direction: column; }
    .about-text-side, .about-image-side { width: 100%; }
    .inner-header-grid { padding: 0 20px; }
    .contact-page-grid { flex-direction: column; gap: 40px; }
    .contact-info-col, .contact-form-col { width: 100%; }
}

@media (max-width: 768px) {
    .mobile-top-strip { display: flex; } 
    .header-top-row { display: none !important; } 
    .inner-header-left, .inner-header-right { display: none !important; } 
    .inner-header-center { width: 100%; } 
    .burger-btn { display: flex; }
    nav.main-nav { display: none; } 
    .hero-wrapper-index .hero-image { height: 150px !important; object-fit: cover; }
    .hero-overlay { padding: 15px; }
    .brand-strip-black, .brand-strip-red { padding: 30px 0; }
    .section-banner-red { height: auto; min-height: auto; display: flex; flex-direction: column; }
    .banner-bg { position: relative; height: 450px; width: 100%; object-position: 70% center; order: 1; }
    .banner-overlay { position: absolute; top: auto; bottom: 0; left: 0; width: 100%; height: auto; background: transparent; padding: 0; z-index: 5; display: block; order: 2; }
    .banner-text-box { max-width: 100%; padding-right: 0; background: transparent !important; padding: 40px 20px 20px 20px; }
    .banner-text-box h2 { font-size: 30pt; margin-bottom: 5px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
    .banner-subtitle { text-shadow: 0 1px 2px rgba(0,0,0,0.5); margin-bottom: 0; }
    .banner-desc { display: block; }
    .steps-flex { flex-direction: column; align-items: center; }
    .step-item { width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .step-separator { transform: rotate(90deg); margin: 20px auto; }
    .service-item { align-items: center; text-align: center; margin-bottom: 20px; padding: 25px 20px !important; }
    .service-icon { margin-bottom: 15px !important; height: 60px; }
    .service-desc { margin-bottom: 15px !important; }
    .service-price { margin-bottom: 15px !important; }
    .btn-black-pill { margin-top: 10px !important; padding: 12px 40px; }
    .service-list { display: inline-block; text-align: left; margin-bottom: 20px; }
    .footer-wrapper { flex-direction: column; gap: 30px; }
    .footer-center { order: 1; } 
    .footer-left { order: 2; align-items: center; } 
    .footer-right { order: 3; } 
    .footer-right ul { justify-content: center; } 
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .author-red-box, .author-green-box { padding: 30px; }
    .mobile-banner-desc-block { background-color: #9d1b1b; padding: 30px 20px; color: #fff; font-size: 14pt; line-height: 1.5; font-weight: 300; display: block !important; }
    .banner-text-box .banner-desc { display: none; }
    .about-image-side { display: none; } 
    .about-img-mobile { display: block; } 
    .about-intro-wrapper { flex-direction: row; align-items: flex-start; } 
    .method-images-col { height: auto; flex-direction: column; gap: 20px; }
    .method-img-tall-col, .method-img-stack-col { width: 100%; height: auto; }
    .method-img-stack-col { gap: 20px; }
    .intro-img-tall .img-hover-wrap { min-height: 350px; } 
    .mobile-swipe-hand { display: flex; }
    .author-image-side { display: none; } 
    .author-img-mobile-inter { display: block; } 
    .blog-post-container { padding: 30px 20px; }
    .blog-post-container h1 { font-size: 28pt; margin-bottom: 20px; }
    .blog-post-container h2 { font-size: 22pt; margin-top: 40px; }
    .blog-post-container p { font-size: 12pt; line-height: 1.5; margin-bottom: 20px; }
    .blog-post-container blockquote { margin: 20px 0; padding-left: 15px; font-size: 14pt; }
    .modal-box { padding: 30px 20px; }
}
@media (min-width: 769px) { .mobile-banner-desc-block { display: none !important; } }
