/*
Theme Name: Cyganfilmuje
Theme URI: https://cyganfilmuje.pl
Author: Mariusz Cygan
Author URI: https://cyganfilmuje.pl
Description: Profesjonalny motyw WordPress dla fotografa - Mariusz Cygan. Dedykowany motyw prezentujący portfolio fotograficzne, usługi i możliwość kontaktu.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cyganfilmuje
Tags: photography, portfolio, one-page, custom-menu, featured-images, threaded-comments, translation-ready

Cyganfilmuje Theme, Copyright 2025 Mariusz Cygan
Cyganfilmuje is distributed under the terms of the GNU GPL
*/

@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #0A0A0A;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lora", serif;
  font-weight: 400;
  line-height: 1.2;
  color: #0A0A0A;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 3rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
  color: #6B6B6B;
  line-height: 1.8;
}
p:last-child {
  margin-bottom: 0;
}

strong, b {
  font-weight: 600;
  color: #0A0A0A;
}

em, i {
  font-style: italic;
}

a {
  color: #0A0A0A;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}
a:focus {
  outline: 2px solid #0A0A0A;
  outline-offset: 4px;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
button:focus {
  outline: 2px solid #0A0A0A;
  outline-offset: 4px;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: #0A0A0A;
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  padding: 12px 16px;
  transition: all 0.3s ease;
  width: 100%;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #0A0A0A;
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #999999;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #999999;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

::-moz-selection {
  background-color: #0A0A0A;
  color: #FFFFFF;
}

::selection {
  background-color: #0A0A0A;
  color: #FFFFFF;
}

::-moz-selection {
  background-color: #0A0A0A;
  color: #FFFFFF;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  background: #E5E5E5;
}
::-webkit-scrollbar-thumb:hover {
  background: #CCCCCC;
}

.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: #0A0A0A;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  z-index: 9999;
  transition: top 0.15s ease;
}
.skip-to-content:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 992px) {
  .container {
    padding: 0 3rem;
  }
}

section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  section {
    padding: 100px 0;
  }
}
@media (min-width: 992px) {
  section {
    padding: 140px 0;
  }
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.text-gradient {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 1s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-down {
  animation: fadeInDown 1s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-in-left {
  animation: slideInLeft 0.8s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-in-right {
  animation: slideInRight 0.8s ease;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.scale-in {
  animation: scaleIn 0.6s ease;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.bounce {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.rotate {
  animation: rotate 2s linear infinite;
}

@keyframes cameraFlash {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.camera-flash {
  animation: cameraFlash 0.3s ease;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
.blink {
  animation: blink 1s step-end infinite;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}
.shake {
  animation: shake 0.5s ease;
}

@keyframes arrowPulse {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.5;
  }
  50% {
    transform: translateX(8px);
    opacity: 1;
  }
}
.arrow-pulse {
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.gradient-shift {
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

.delay-6 {
  animation-delay: 0.6s;
}

.delay-7 {
  animation-delay: 0.7s;
}

.delay-8 {
  animation-delay: 0.8s;
}

.delay-9 {
  animation-delay: 0.9s;
}

.delay-10 {
  animation-delay: 1s;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated-fast {
  animation-duration: 0.5s;
}

.animated-slow {
  animation-duration: 2s;
}

.animation-pause {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0A0A0A;
  background-color: transparent;
  border: 1px solid #E5E5E5;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0A0A0A;
  transition: width 0.3s ease;
}
.btn:hover {
  background-color: #0A0A0A;
  color: #FFFFFF;
  border-color: #0A0A0A;
}
.btn:hover::after {
  width: 100%;
}
.btn:hover i {
  transform: translateX(3px);
}
.btn:focus:focus {
  outline: 2px solid #0A0A0A;
  outline-offset: 4px;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--primary {
  background-color: #0A0A0A;
  color: #FFFFFF;
  border-color: #0A0A0A;
}
.btn--primary:hover {
  background-color: #2A2A2A;
  border-color: #2A2A2A;
  transform: translateY(-2px);
  box-shadow: 12px 12px 30px rgba(10, 10, 10, 0.15);
}
.btn--secondary {
  background-color: transparent;
  color: #0A0A0A;
  border-color: #CCCCCC;
}
.btn--secondary:hover {
  background-color: #FAFAFA;
  border-color: #0A0A0A;
  color: #0A0A0A;
}
.btn--ghost {
  background-color: transparent;
  color: #6B6B6B;
  border-color: transparent;
  padding: 14px 0;
}
.btn--ghost::after {
  bottom: 12px;
  height: 1px;
}
.btn--ghost:hover {
  color: #0A0A0A;
  background-color: transparent;
}
.btn--ghost:hover::after {
  width: 100%;
}
.btn--instagram {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  color: #FFFFFF;
  border: none;
}
.btn--instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 133, 41, 0.3);
  filter: brightness(1.1);
}
.btn--instagram::after {
  display: none;
}
.btn--large {
  padding: 18px 48px;
  font-size: 1rem;
}
.btn--large i {
  font-size: 18px;
}
.btn--small {
  padding: 10px 24px;
  font-size: 12px;
}
.btn--small i {
  font-size: 14px;
}
.btn--block {
  width: 100%;
}
.btn--icon {
  padding: 1rem;
  aspect-ratio: 1;
}
.btn--icon span {
  display: none;
}
.btn--link {
  padding: 0;
  border: none;
  background: none;
  color: #0A0A0A;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  position: relative;
}
.btn--link::after {
  bottom: -2px;
  height: 1px;
}
.btn--link:hover {
  background: none;
  color: #0A0A0A;
}
.btn--link:hover::after {
  width: 100%;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-group--center {
  justify-content: center;
}
.btn-group--vertical {
  flex-direction: column;
}
.btn-group--vertical .btn {
  width: 100%;
}

.error-404 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background: #FFFFFF;
  overflow: hidden;
}
@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
    min-height: auto;
  }
}
.error-404__wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.error-404__visual {
  position: relative;
  margin-bottom: 48px;
}
.error-404__number {
  font-family: "Lora", serif;
  font-size: clamp(120px, 20vw, 200px);
  font-weight: 900;
  line-height: 1;
  color: #FAFAFA;
  text-shadow: 3px 3px 0 #E5E5E5, 6px 6px 0 rgba(10, 10, 10, 0.1);
  margin-bottom: -40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .error-404__number {
    margin-bottom: -30px;
  }
}
.error-404__icon {
  position: relative;
  z-index: 2;
}
.error-404__icon i {
  font-size: 80px;
  color: #0A0A0A;
  animation: iconFloat 3s ease-in-out infinite;
}
@media (max-width: 768px) {
  .error-404__icon i {
    font-size: 60px;
  }
}
.error-404__content {
  position: relative;
  z-index: 2;
}
.error-404__title {
  font-family: "Lora", serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #0A0A0A;
}
@media (max-width: 768px) {
  .error-404__title {
    font-size: 1.5rem;
  }
}
.error-404__description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #6B6B6B;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .error-404__description {
    font-size: 1rem;
    margin-bottom: 32px;
  }
}
.error-404__search {
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .error-404__search {
    margin-bottom: 32px;
  }
}
.error-404 .search-form {
  max-width: 600px;
  margin: 0 auto;
}
.error-404 .search-form__wrapper {
  display: flex;
  gap: 0;
  border: 2px solid #E5E5E5;
  background: #FFFFFF;
  transition: all 0.3s ease;
}
.error-404 .search-form__wrapper:focus-within {
  border-color: #0A0A0A;
  box-shadow: 0 4px 12px rgba(10, 10, 10, 0.1);
}
.error-404 .search-form__input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: #0A0A0A;
}
.error-404 .search-form__input::-moz-placeholder {
  color: #999999;
}
.error-404 .search-form__input::placeholder {
  color: #999999;
}
.error-404 .search-form__input:focus {
  outline: none;
}
.error-404 .search-form__button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #0A0A0A;
  border: none;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .error-404 .search-form__button {
    padding: 16px 24px;
  }
  .error-404 .search-form__button span {
    display: none;
  }
}
.error-404 .search-form__button:hover {
  background: rgb(35.5, 35.5, 35.5);
}
.error-404 .search-form__button i {
  font-size: 16px;
}
.error-404__links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .error-404__links {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .error-404__links .btn {
    padding: 12px 24px;
    font-size: 0.875rem;
  }
}
.error-404__suggestions {
  padding: 40px;
  background: #FAFAFA;
  border: 2px solid #E5E5E5;
}
@media (max-width: 768px) {
  .error-404__suggestions {
    padding: 32px 24px;
  }
}
.error-404__suggestions-title {
  font-family: "Lora", serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #0A0A0A;
}
.error-404__suggestions-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .error-404__suggestions-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.error-404__suggestions-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  color: #0A0A0A;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.error-404__suggestions-list li a:hover {
  border-color: #0A0A0A;
  transform: translateX(4px);
}
.error-404__suggestions-list li a:hover i {
  color: #0A0A0A;
}
.error-404__suggestions-list li a i {
  font-size: 16px;
  color: #6B6B6B;
  transition: color 0.3s ease;
}
.error-404__decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.error-404__decoration .camera-icon {
  position: absolute;
  opacity: 0.05;
}
.error-404__decoration .camera-icon i {
  font-size: 120px;
  color: #0A0A0A;
}
.error-404__decoration .camera-icon--1 {
  top: 10%;
  left: 10%;
  animation: float 8s ease-in-out infinite;
}
.error-404__decoration .camera-icon--2 {
  top: 60%;
  right: 15%;
  animation: float 10s ease-in-out infinite 1s;
}
.error-404__decoration .camera-icon--3 {
  bottom: 15%;
  left: 20%;
  animation: float 12s ease-in-out infinite 2s;
}
.error-404__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.error-404__shape {
  position: absolute;
  opacity: 0.02;
}
.error-404__shape--1 {
  top: 15%;
  left: 5%;
  width: 250px;
  height: 250px;
  border: 3px solid #0A0A0A;
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}
.error-404__shape--2 {
  bottom: 20%;
  right: 8%;
  width: 180px;
  height: 180px;
  border: 3px solid #0A0A0A;
  transform: rotate(45deg);
  animation: rotate 25s linear infinite reverse;
}
.error-404__shape--3 {
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  border: 3px solid #0A0A0A;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-10px) rotate(5deg);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.02;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.04;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom-color: #E5E5E5;
  box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.1);
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 2rem;
}
@media (min-width: 992px) {
  .header__wrapper {
    padding: 2rem 0;
  }
}
.header__logo {
  flex-shrink: 0;
  z-index: 1041;
}
.header__logo .logo {
  display: inline-block;
  font-family: "Lora", serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #0A0A0A;
  transition: opacity 0.3s ease;
}
.header__logo .logo:hover {
  opacity: 0.7;
}
.header__logo .logo__text {
  display: inline-block;
}
.header__logo .logo__dot {
  color: #2A2A2A;
  display: inline-block;
}
.header__nav {
  display: none;
  flex: 1;
}
@media (min-width: 992px) {
  .header__nav {
    display: block;
  }
}
.header__nav .nav--desktop {
  display: flex;
  justify-content: center;
}
.header .main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.header .main-nav .nav-link {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6B6B6B;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}
.header .main-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #0A0A0A;
  transition: width 0.3s ease;
}
.header .main-nav .nav-link:hover, .header .main-nav .nav-link.active {
  color: #0A0A0A;
}
.header .main-nav .nav-link:hover::after, .header .main-nav .nav-link.active::after {
  width: 100%;
}
.header__cta {
  display: none;
}
@media (min-width: 992px) {
  .header__cta {
    display: block;
  }
}
.header__cta .btn {
  padding: 12px 28px;
  font-size: 12px;
}
.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1041;
}
@media (min-width: 992px) {
  .header__toggle {
    display: none;
  }
}
.header__toggle .hamburger {
  position: relative;
  width: 24px;
  height: 16px;
}
.header__toggle .hamburger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0A0A0A;
  transition: all 0.3s ease;
}
.header__toggle .hamburger__line:nth-child(1) {
  top: 0;
}
.header__toggle .hamburger__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
}
.header__toggle .hamburger__line:nth-child(3) {
  bottom: 0;
}
.header__toggle:hover .hamburger__line:nth-child(2) {
  width: 100%;
}
.header__toggle[aria-expanded=true] .hamburger__line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__toggle[aria-expanded=true] .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.header__toggle[aria-expanded=true] .hamburger__line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.header .mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #FFFFFF;
  border-left: 1px solid #E5E5E5;
  overflow-y: auto;
  transition: right 0.3s ease;
  z-index: 1040;
}
@media (min-width: 992px) {
  .header .mobile-menu {
    display: none;
  }
}
.header .mobile-menu.active {
  right: 0;
}
.header .mobile-menu__wrapper {
  padding: 120px 2rem 4rem;
}
.header .mobile-menu .nav--mobile {
  margin-bottom: 4rem;
}
.header .mobile-menu .nav--mobile .nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.header .mobile-menu .nav--mobile .nav-link {
  display: block;
  padding: 1.5rem 0;
  font-size: 1.125rem;
  font-weight: 400;
  color: #6B6B6B;
  border-bottom: 1px solid #F0F0F0;
  transition: all 0.3s ease;
}
.header .mobile-menu .nav--mobile .nav-link:hover, .header .mobile-menu .nav--mobile .nav-link.active {
  color: #0A0A0A;
  padding-left: 1rem;
}
.header .mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}
.header .mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: #6B6B6B;
  transition: all 0.3s ease;
}
.header .mobile-menu__link i {
  width: 20px;
  color: #0A0A0A;
  font-size: 16px;
}
.header .mobile-menu__link:hover {
  color: #0A0A0A;
}
.header .mobile-menu__social .social-links--mobile {
  display: flex;
  gap: 1rem;
}
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(10, 10, 10, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1039;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.header__overlay.active {
  opacity: 1;
  visibility: visible;
}

.social-links {
  display: flex;
  gap: 0.5rem;
}
.social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #6B6B6B;
  border: 1px solid #E5E5E5;
  background-color: transparent;
  transition: all 0.3s ease;
}
.social-links .social-link i {
  font-size: 16px;
}
.social-links .social-link:hover {
  color: #0A0A0A;
  border-color: #0A0A0A;
  background-color: #FAFAFA;
}
.social-links .social-link--instagram:hover {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  border-color: transparent;
  color: #FFFFFF;
}
.social-links .social-link--facebook:hover {
  background: linear-gradient(135deg, #0866FF 0%, #1877F2 50%, #4267B2 100%);
  border-color: transparent;
  color: #FFFFFF;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  overflow: hidden;
}
.hero__shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero__shapes .shape {
  position: absolute;
  opacity: 0.05;
  border-color: #0A0A0A;
}
.hero__shapes .shape--1 {
  top: 10%;
  right: 10%;
  width: 250px;
  height: 250px;
  border: 3px solid currentColor;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.hero__shapes .shape--2 {
  top: 60%;
  left: 5%;
  width: 180px;
  height: 180px;
  border: 3px solid currentColor;
  transform: rotate(45deg);
  animation: float 10s ease-in-out infinite reverse;
}
.hero__shapes .shape--3 {
  top: 20%;
  left: 15%;
  width: 0;
  height: 0;
  border-left: 90px solid transparent;
  border-right: 90px solid transparent;
  border-bottom: 160px solid rgba(10, 10, 10, 0.15);
  animation: float 12s ease-in-out infinite;
  animation-delay: 2s;
}
.hero__shapes .shape--4 {
  top: 40%;
  right: 25%;
  width: 250px;
  height: 3px;
  background: currentColor;
  transform: rotate(-45deg);
  animation: float 9s ease-in-out infinite;
  animation-delay: 1s;
}
.hero__shapes .shape--5 {
  bottom: 15%;
  right: 15%;
  width: 120px;
  height: 120px;
  border: 3px solid currentColor;
  border-radius: 50%;
  animation: float 7s ease-in-out infinite reverse;
  animation-delay: 3s;
}
.hero__shapes .shape--6 {
  bottom: 20%;
  left: 20%;
  width: 200px;
  height: 120px;
  border: 3px solid currentColor;
  animation: float 11s ease-in-out infinite;
  animation-delay: 1.5s;
}
.hero__shapes .shape--7 {
  top: 35%;
  left: 45%;
  width: 100px;
  height: 100px;
  border: 2px solid currentColor;
  transform: rotate(15deg);
  animation: float 8.5s ease-in-out infinite;
  animation-delay: 2.5s;
}
.hero__shapes .shape--8 {
  top: 50%;
  left: 8%;
  width: 140px;
  height: 140px;
  border: 2px solid currentColor;
  border-radius: 50%;
  animation: float 9.5s ease-in-out infinite reverse;
  animation-delay: 4s;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 992px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.hero__text {
  max-width: 600px;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #FAFAFA;
  border: 1px solid #E5E5E5;
  color: #0A0A0A;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero__label i {
  font-size: 16px;
}
.hero__heading {
  font-family: "Lora", serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #0A0A0A;
}
@media (max-width: 768px) {
  .hero__heading {
    font-size: 2rem;
  }
}
.hero__description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #6B6B6B;
  margin-bottom: 40px;
}
.hero__cta {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid #E5E5E5;
}
@media (max-width: 576px) {
  .hero__stats {
    gap: 24px;
    flex-wrap: wrap;
  }
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stat-number {
  font-family: "Lora", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #0A0A0A;
}
.hero__stat-label {
  font-size: 0.875rem;
  color: #6B6B6B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero__image {
  position: relative;
}
.hero__image-wrapper {
  position: relative;
  animation: float 6s ease-in-out infinite;
}
.hero__image-card {
  background: #FFFFFF;
  border: 16px solid #FFFFFF;
  border-bottom-width: 48px;
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.1);
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
.hero__image-card::after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  height: 1px;
  background: #F0F0F0;
}
.hero__image-card img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.1) 100%);
  pointer-events: none;
}
.hero__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #FFFFFF;
  border: 2px solid #0A0A0A;
  box-shadow: 8px 8px 0 rgba(10, 10, 10, 0.1);
  z-index: 3;
}
@media (max-width: 768px) {
  .hero__badge {
    bottom: -10px;
    right: -10px;
    padding: 12px 16px;
  }
}
.hero__badge-icon {
  font-size: 32px;
  color: #0A0A0A;
}
@media (max-width: 768px) {
  .hero__badge-icon {
    font-size: 24px;
  }
}
.hero__badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__badge-text strong {
  font-family: "Lora", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0A0A0A;
}
.hero__badge-text span {
  font-size: 0.875rem;
  color: #6B6B6B;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #6B6B6B;
  text-decoration: none;
  transition: all 0.3s ease;
}
.scroll-indicator:hover {
  color: #0A0A0A;
}
.scroll-indicator:hover .scroll-indicator__icon {
  transform: translateY(4px);
}
.scroll-indicator__text {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.scroll-indicator__icon {
  font-size: 20px;
  animation: bounce 2s ease-in-out infinite;
  transition: transform 0.3s ease;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.quote-section {
  position: relative;
  padding: 60px 0;
  background: #FAFAFA;
  overflow: hidden;
}
.quote-section__wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.quote-section__icon {
  font-size: 48px;
  color: #999999;
  margin-bottom: 32px;
  opacity: 0.3;
}
.quote-section__decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.quote-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.quote-section__bg .bg-shape {
  position: absolute;
  opacity: 0.03;
}
.quote-section__bg .bg-shape--1 {
  top: 20%;
  left: 10%;
  width: 150px;
  height: 150px;
  border: 2px solid #0A0A0A;
  border-radius: 50%;
}
.quote-section__bg .bg-shape--2 {
  bottom: 20%;
  right: 10%;
  width: 120px;
  height: 120px;
  border: 2px solid #0A0A0A;
  transform: rotate(45deg);
}

.quote {
  position: relative;
  z-index: 1;
}
.quote__text {
  font-family: "Lora", serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
  color: #0A0A0A;
  margin-bottom: 24px;
  font-style: italic;
}
.quote__text::after {
  content: "|";
  display: inline-block;
  margin-left: 4px;
  animation: blink 1s step-end infinite;
}
@media (max-width: 768px) {
  .quote__text {
    font-size: 1.25rem;
  }
}
.quote__author {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #6B6B6B;
  font-style: normal;
}
.quote__author::before {
  content: "— ";
}

.decoration-line {
  width: 60px;
  height: 1px;
  background: #E5E5E5;
}

.decoration-dot {
  width: 8px;
  height: 8px;
  background: #999999;
  border-radius: 50%;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
.about {
  position: relative;
  padding: 120px 0;
  background-color: #FAFAFA;
}
@media (min-width: 992px) {
  .about {
    padding: 160px 0;
  }
}
.about__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
  align-items: center;
}
@media (min-width: 992px) {
  .about__content {
    grid-template-columns: 5fr 6fr;
    gap: 8rem;
  }
}
.about__image {
  position: relative;
  order: 2;
  min-height: 500px;
}
@media (min-width: 992px) {
  .about__image {
    order: 1;
    min-height: 600px;
  }
}
.about__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.about__image-main {
  background: #FFFFFF;
  border: 16px solid #FFFFFF;
  border-bottom-width: 48px;
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.1);
  position: relative;
  position: relative;
  width: 85%;
  aspect-ratio: 3/4;
  margin: 0 auto;
  transform: rotate(-3deg);
  transition: all 0.5s ease;
  animation: float 5s ease-in-out infinite;
}
.about__image-main::after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  height: 1px;
  background: #F0F0F0;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@media (min-width: 992px) {
  .about__image-main {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-3deg);
    margin: 0;
  }
}
.about__image-main:hover {
  transform: rotate(0deg) translateY(-10px);
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.15);
}
@media (min-width: 992px) {
  .about__image-main:hover {
    transform: translateY(-60%) rotate(0deg);
  }
}
.about__image-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.about__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}
.about__badge {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}
.about__badge-number {
  font-family: "Lora", serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #0A0A0A;
  line-height: 1;
  margin-bottom: 4px;
}
.about__badge-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B6B6B;
  line-height: 1.2;
}
.about__image-small {
  background: #FFFFFF;
  border: 16px solid #FFFFFF;
  border-bottom-width: 48px;
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.1);
  position: relative;
  position: absolute;
  display: none;
  width: 45%;
  aspect-ratio: 4/5;
  bottom: 10%;
  right: 5%;
  transform: rotate(8deg);
  animation: float 7s ease-in-out infinite;
  animation-delay: -2s;
}
.about__image-small::after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  height: 1px;
  background: #F0F0F0;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@media (min-width: 992px) {
  .about__image-small {
    display: block;
  }
}
.about__image-small:hover {
  transform: rotate(4deg) translateY(-10px);
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.15);
}
.about__image-small img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__text {
  order: 1;
}
@media (min-width: 992px) {
  .about__text {
    order: 2;
  }
}
.about .section-title {
  margin-bottom: 3rem;
}
.about .section-title__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B6B6B;
  margin-bottom: 1rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid #0A0A0A;
}
.about .section-title__heading {
  font-family: "Lora", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: #0A0A0A;
  margin: 0;
}
.about .section-title__heading .text-gradient {
  font-weight: 500;
}
.about__description {
  margin-bottom: 3rem;
}
.about__description p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #6B6B6B;
  margin-bottom: 1.5rem;
}
.about__description p:last-child {
  margin-bottom: 0;
}
.about__description p strong {
  color: #0A0A0A;
  font-weight: 600;
}
.about__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 576px) {
  .about__features {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background-color: #FAFAFA;
  border: 1px solid #F0F0F0;
  transition: all 0.3s ease;
}
.about .feature-item:hover {
  background-color: #FFFFFF;
  border-color: #CCCCCC;
  transform: translateX(5px);
}
.about .feature-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0A0A;
  font-size: 18px;
  border: 1px solid #E5E5E5;
  background-color: #FFFFFF;
}
.about .feature-item__content {
  flex: 1;
}
.about .feature-item__content h4 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0A0A0A;
  margin-bottom: 0.25rem;
}
.about .feature-item__content p {
  font-size: 0.875rem;
  color: #999999;
  margin: 0;
}
.about__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 576px) {
  .about__cta {
    flex-direction: row;
  }
}
.about__bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.about .decoration-circle {
  position: absolute;
  border: 1px solid #F0F0F0;
  border-radius: 50%;
  opacity: 0.5;
}
.about .decoration-circle--1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}
.about .decoration-circle--2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
}
.about__content {
  position: relative;
  z-index: 1;
}

.stats {
  position: relative;
  padding: 100px 0;
  background: #FAFAFA;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/stats-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}
.stats__wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
@media (max-width: 768px) {
  .stats__wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.stats__pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.stats__pattern .pattern-svg {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.stat-card {
  position: relative;
  padding: 48px 32px;
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}
.stat-card:hover {
  border-color: #0A0A0A;
  transform: translateY(-12px);
  box-shadow: 16px 16px 0 rgba(10, 10, 10, 0.1);
}
.stat-card:hover .stat-card__icon {
  background: #0A0A0A;
  border-color: #0A0A0A;
  transform: scale(1.1) rotate(360deg);
}
.stat-card:hover .stat-card__icon i {
  color: #FFFFFF;
}
.stat-card:hover .stat-card__glow {
  opacity: 1;
}
.stat-card__icon {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: #FAFAFA;
  border: 2px solid #E5E5E5;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.stat-card__icon i {
  font-size: 36px;
  color: #0A0A0A;
  transition: all 0.3s ease;
}
.stat-card__icon-bg {
  position: absolute;
  inset: -8px;
  border: 1px solid #E5E5E5;
  z-index: 1;
  transition: all 0.3s ease;
}
.stat-card:hover .stat-card__icon-bg {
  transform: rotate(45deg);
  border-color: #0A0A0A;
}
.stat-card__content {
  position: relative;
  z-index: 2;
}
.stat-card__number {
  font-family: "Lora", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #0A0A0A;
  margin-bottom: 8px;
  line-height: 1;
  display: block;
}
@media (max-width: 768px) {
  .stat-card__number {
    font-size: 2rem;
  }
}
.stat-card__label {
  font-size: 1rem;
  color: #6B6B6B;
  line-height: 1.4;
  display: block;
}
.stat-card__glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, transparent 0%, rgba(10, 10, 10, 0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.why-me {
  position: relative;
  padding: 100px 0;
  background: #FAFAFA;
  overflow: hidden;
}
.why-me .section-title {
  margin-bottom: 60px;
}
.why-me__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .why-me__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.why-me__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
}
@media (max-width: 768px) {
  .why-me__cta {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}
.why-me__cta-content {
  flex: 1;
}
.why-me__cta-content h3 {
  font-family: "Lora", serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #0A0A0A;
}
.why-me__cta-content p {
  font-size: 1rem;
  color: #6B6B6B;
  line-height: 1.6;
}
.why-me__cta-buttons {
  flex-shrink: 0;
}
.why-me__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.why-me__bg .bg-gradient {
  position: absolute;
  opacity: 0.03;
}
.why-me__bg .bg-gradient--1 {
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle at center, #0A0A0A 0%, transparent 70%);
}
.why-me__bg .bg-gradient--2 {
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle at center, #0A0A0A 0%, transparent 70%);
}

.why-card {
  position: relative;
  height: 100%;
  perspective: 1000px;
}
.why-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.why-card__front {
  position: relative;
  padding: 40px 32px;
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  backface-visibility: hidden;
}
.why-card:hover .why-card__front {
  border-color: #0A0A0A;
  transform: translateY(-8px);
  box-shadow: 12px 12px 0 rgba(10, 10, 10, 0.1);
}
.why-card__icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}
.why-card__icon {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAFA;
  border: 2px solid #E5E5E5;
  z-index: 2;
  transition: all 0.3s ease;
}
.why-card__icon i {
  font-size: 32px;
  color: #0A0A0A;
  transition: all 0.3s ease;
}
.why-card:hover .why-card__icon {
  background: #0A0A0A;
  border-color: #0A0A0A;
}
.why-card:hover .why-card__icon i {
  color: #FFFFFF;
}
.why-card__icon-ring {
  position: absolute;
  inset: -8px;
  border: 1px solid #E5E5E5;
  z-index: 1;
  transition: all 0.3s ease;
}
.why-card:hover .why-card__icon-ring {
  transform: rotate(45deg);
  border-color: #0A0A0A;
}
.why-card__title {
  font-family: "Lora", serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: #0A0A0A;
  text-align: center;
}
.why-card__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #6B6B6B;
  text-align: center;
  flex: 1;
}
.why-card__number {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAFA;
  border: 1px solid #E5E5E5;
  font-family: "Lora", serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6B6B6B;
  transition: all 0.3s ease;
}
.why-card:hover .why-card__number {
  background: #0A0A0A;
  color: #FFFFFF;
  border-color: #0A0A0A;
}

.services {
  position: relative;
  padding: 100px 0;
  background: #FFFFFF;
  overflow: hidden;
}
.services .section-title {
  margin-bottom: 60px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.services__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.services__shape {
  position: absolute;
  opacity: 0.02;
}
.services__shape--1 {
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  border: 2px solid #0A0A0A;
  border-radius: 50%;
}
.services__shape--2 {
  bottom: 20%;
  right: 10%;
  width: 150px;
  height: 150px;
  border: 2px solid #0A0A0A;
  transform: rotate(45deg);
}
.services__shape--3 {
  top: 50%;
  right: 5%;
  width: 100px;
  height: 100px;
  border: 2px solid #0A0A0A;
}

.service-card {
  position: relative;
  padding: 40px 32px;
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  transition: all 0.3s ease;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image, none);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.service-card:hover {
  border-color: #0A0A0A;
  transform: translateY(-8px);
  box-shadow: 12px 12px 0 rgba(10, 10, 10, 0.1);
}
.service-card:hover::before {
  opacity: 0.1;
}
.service-card:hover .service-card__icon {
  background: #0A0A0A;
  border-color: #0A0A0A;
  transform: scale(1.1) rotate(5deg);
}
.service-card:hover .service-card__icon i {
  color: #FFFFFF;
  transform: scale(1.1);
}
.service-card:hover .service-card__glow {
  opacity: 1;
}
.service-card:hover .service-card__number {
  color: #0A0A0A;
}
.service-card__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.service-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAFA;
  border: 2px solid #E5E5E5;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
}
.service-card__icon i {
  font-size: 32px;
  color: #0A0A0A;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.service-card__icon i::before {
  display: block;
}
.service-card__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover .service-card__icon::after {
  opacity: 1;
}
.service-card__number {
  font-family: "Lora", serif;
  font-size: 2rem;
  font-weight: 300;
  color: #999999;
  transition: color 0.3s ease;
}
.service-card__body {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}
.service-card__title {
  font-family: "Lora", serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: #0A0A0A;
  transition: color 0.3s ease;
}
.service-card:hover .service-card__title {
  color: #0A0A0A;
}
.service-card__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #6B6B6B;
}
.service-card__footer {
  position: relative;
  z-index: 2;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0A0A0A;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.service-card__link:hover {
  gap: 12px;
  color: #0A0A0A;
}
.service-card__link:hover i {
  transform: translateX(4px);
}
.service-card__link i {
  transition: transform 0.3s ease;
  font-size: 14px;
}
.service-card__glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, transparent 0%, rgba(10, 10, 10, 0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.services__process {
  margin-top: 80px;
}

.process {
  padding: 60px;
  background: #FAFAFA;
  border: 2px solid #E5E5E5;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .process {
    padding: 40px 24px;
  }
}
.process__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Lora", serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 48px;
  color: #0A0A0A;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process__title i {
  font-size: 28px;
  animation: iconBounce 2s ease-in-out infinite;
}
.process__steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .process__steps {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .process__steps {
    flex-direction: column;
    align-items: center;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px;
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  min-width: 180px;
  max-width: 200px;
  flex: 1;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1200px) {
  .process-step {
    min-width: 160px;
    max-width: 180px;
  }
}
@media (max-width: 768px) {
  .process-step {
    width: 100%;
    max-width: 320px;
    flex-direction: row;
    text-align: left;
    padding: 24px;
    gap: 16px;
  }
}
.process-step:hover {
  transform: translateY(-12px);
  border-color: #0A0A0A;
  box-shadow: 0 12px 24px rgba(10, 10, 10, 0.15);
  z-index: 10;
}
.process-step:hover .process-step__number {
  background: #0A0A0A;
  color: #FFFFFF;
  border-color: #0A0A0A;
  transform: scale(1.15) rotate(360deg);
}
.process-step:hover .process-step__icon {
  transform: scale(1.1);
  opacity: 1;
}
.process-step.active .process-step__number {
  animation: pulse 2s ease-in-out infinite;
}
.process-step__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAFA;
  border: 3px solid #E5E5E5;
  border-radius: 50%;
  font-family: "Lora", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
@media (max-width: 768px) {
  .process-step__number {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}
.process-step__number::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 10, 10, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.process-step:hover .process-step__number::after {
  opacity: 1;
}
.process-step__content {
  flex: 1;
}
@media (max-width: 768px) {
  .process-step__content {
    text-align: left;
  }
}
.process-step__content h4 {
  font-family: "Lora", serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0A0A0A;
  transition: color 0.3s ease;
}
.process-step__content p {
  font-size: 0.875rem;
  color: #6B6B6B;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.process-step:hover .process-step__content h4 {
  color: #0A0A0A;
}
.process-step:hover .process-step__content p {
  color: #0A0A0A;
}
.process-step__icon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 14px;
  color: #999999;
  opacity: 0.5;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .process-step__icon {
    display: none;
  }
}

@keyframes processGlow {
  0%, 100% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
}
@keyframes lineGlow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(10, 10, 10, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(10, 10, 10, 0);
  }
}
@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
.process-step {
  opacity: 0;
  transform: translateY(30px);
  animation: stepReveal 0.6s ease forwards;
}
.process-step:nth-child(1) {
  animation-delay: 0.15s;
}
.process-step:nth-child(3) {
  animation-delay: 0.3s;
}
.process-step:nth-child(5) {
  animation-delay: 0.45s;
}
.process-step:nth-child(7) {
  animation-delay: 0.6s;
}
.process-step:nth-child(9) {
  animation-delay: 0.75s;
}

@keyframes stepReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.process__steps:hover .process-step:not(:hover) {
  opacity: 0.6;
}

.portfolio {
  position: relative;
  padding: 120px 0 100px;
  background: #FFFFFF;
  overflow: hidden;
}
@media (max-width: 768px) {
  .portfolio {
    padding: 80px 0 60px;
  }
}
.portfolio .section-title {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .portfolio .section-title {
    margin-bottom: 40px;
  }
}
.portfolio-gallery {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .portfolio-gallery {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
@media (max-width: 768px) {
  .portfolio-gallery {
    -moz-column-count: 1;
         column-count: 1;
    -moz-column-gap: 0;
         column-gap: 0;
    margin-bottom: 30px;
  }
}
.portfolio-gallery__empty {
  text-align: center;
  padding: 60px 20px;
  font-size: 1.125rem;
  color: #6B6B6B;
  grid-column: 1/-1;
}
.portfolio-gallery__item {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  page-break-inside: avoid;
  display: inline-block;
  width: 100%;
  padding-bottom: 4px;
  background-clip: content-box;
}
.portfolio-gallery__image-wrapper {
  position: relative;
  overflow: hidden;
  background: #FAFAFA;
  border: 1px solid #E5E5E5;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-gallery__image-wrapper:hover {
  border-color: #0A0A0A;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(10, 10, 10, 0.08);
}
.portfolio-gallery__image-wrapper:hover .portfolio-gallery__image {
  transform: scale(1.03);
}
.portfolio-gallery__image-wrapper:hover .portfolio-gallery__overlay {
  opacity: 0;
}
.portfolio-gallery__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  -o-object-fit: contain;
     object-fit: contain;
}
.portfolio-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.portfolio-gallery__overlay i {
  font-size: 28px;
  color: #FFFFFF;
  animation: zoomPulse 0.6s ease;
}
@media (max-width: 768px) {
  .portfolio-gallery__overlay i {
    font-size: 22px;
  }
}
.portfolio__cta {
  text-align: center;
  padding-top: 20px;
}
.portfolio .btn-portfolio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #0A0A0A;
  border: 2px solid #0A0A0A;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .portfolio .btn-portfolio {
    padding: 12px 28px;
    font-size: 0.875rem;
  }
}
.portfolio .btn-portfolio:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(10, 10, 10, 0.2);
}
.portfolio .btn-portfolio:hover i {
  transform: translateX(5px);
}
.portfolio .btn-portfolio i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

@keyframes zoomPulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .portfolio-gallery {
    -moz-column-count: 1;
         column-count: 1;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .portfolio-gallery__image-wrapper {
    border: none;
    box-shadow: none;
  }
  .portfolio-gallery__image {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.testimonials {
  position: relative;
  padding: 100px 0;
  background: #FAFAFA;
  overflow: hidden;
}
@media (max-width: 768px) {
  .testimonials {
    padding: 80px 0;
  }
}
.testimonials__header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.testimonials__header .section-title__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6B6B6B;
  margin-bottom: 16px;
}
.testimonials__header .section-title__heading {
  font-family: "Lora", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #0A0A0A;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .testimonials__header .section-title__heading {
    font-size: 1.5rem;
  }
}
.testimonials__header .section-title__description {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #6B6B6B;
}
.testimonials__slider-wrapper {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 0;
}
.testimonials__slider {
  overflow: hidden;
  padding: 40px 0 60px;
}
@media (max-width: 768px) {
  .testimonials__slider {
    padding: 20px 0 50px;
  }
}
.testimonials .swiper-wrapper {
  display: flex;
  gap: 32px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .testimonials .swiper-wrapper {
    gap: 24px;
  }
}
.testimonials .swiper-slide {
  flex: 0 0 auto;
  width: calc(33.333% - 22px);
}
@media (max-width: 1023px) {
  .testimonials .swiper-slide {
    width: calc(50% - 16px);
  }
}
@media (max-width: 767px) {
  .testimonials .swiper-slide {
    width: 100%;
  }
}
.testimonials__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .testimonials__navigation {
    gap: 20px;
    margin-top: 30px;
  }
}
.testimonials__nav-button {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 768px) {
  .testimonials__nav-button {
    width: 40px;
    height: 40px;
  }
}
.testimonials__nav-button i {
  font-size: 18px;
  color: #0A0A0A;
  transition: all 0.3s ease;
}
.testimonials__nav-button:hover:not(.testimonials__nav-button--disabled) {
  background: #0A0A0A;
  border-color: #0A0A0A;
  transform: translateY(-2px);
}
.testimonials__nav-button:hover:not(.testimonials__nav-button--disabled) i {
  color: #FFFFFF;
}
.testimonials__nav-button--disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.testimonials__nav-button:active:not(.testimonials__nav-button--disabled) {
  transform: translateY(0);
}
.testimonials__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.testimonials__pagination .pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E5E5E5;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.testimonials__pagination .pagination-dot.swiper-pagination-bullet-active {
  background: #0A0A0A;
  width: 32px;
  border-radius: 5px;
}
.testimonials__pagination .pagination-dot:hover {
  background: #6B6B6B;
}
.testimonials__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.testimonials__shape {
  position: absolute;
  opacity: 0.02;
}
.testimonials__shape--1 {
  top: 15%;
  left: 8%;
  width: 150px;
  height: 150px;
  border: 2px solid #0A0A0A;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.testimonials__shape--2 {
  bottom: 20%;
  right: 10%;
  width: 120px;
  height: 120px;
  border: 2px solid #0A0A0A;
  transform: rotate(45deg);
  animation: float 10s ease-in-out infinite reverse;
}

.testimonial-card {
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  padding: 40px 32px;
  height: auto;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 32px 24px;
    min-height: 280px;
  }
}
.testimonial-card:hover {
  border-color: #0A0A0A;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(10, 10, 10, 0.1);
}
.testimonial-card:hover .testimonial-card__quote-icon {
  background: #0A0A0A;
  border-color: #0A0A0A;
  transform: scale(1.1) rotate(5deg);
}
.testimonial-card:hover .testimonial-card__quote-icon i {
  color: #FFFFFF;
}
.testimonial-card:hover .testimonial-card__stars i {
  color: #0A0A0A;
}
.testimonial-card__quote-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAFA;
  border: 2px solid #E5E5E5;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}
.testimonial-card__quote-icon i {
  font-size: 20px;
  color: #0A0A0A;
}
.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-card__stars i {
  font-size: 16px;
  color: #999999;
  transition: color 0.3s ease;
}
.testimonial-card__text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.7;
  color: #6B6B6B;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #E5E5E5;
  margin-top: auto;
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAFA;
  border: 2px solid #E5E5E5;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonial-card__avatar i {
  font-size: 20px;
  color: #6B6B6B;
}
.testimonial-card__info {
  flex: 1;
}
.testimonial-card__name {
  font-family: "Lora", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0A0A0A;
  margin-bottom: 4px;
}
.testimonial-card__role {
  font-size: 0.875rem;
  color: #6B6B6B;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.testimonial-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, transparent 50%, #FAFAFA 50%);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.testimonial-card:hover::after {
  opacity: 0.8;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
.instagram {
  padding: 120px 0;
  background-color: #FAFAFA;
  position: relative;
}
@media (min-width: 992px) {
  .instagram {
    padding: 160px 0;
  }
}
.instagram__header {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}
.instagram__header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin-bottom: 2rem;
  font-size: 44px;
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  color: #FFFFFF;
  border: 3px solid #FFFFFF;
  box-shadow: 8px 8px 0 rgba(10, 10, 10, 0.1);
  transition: all 0.3s ease;
  animation: pulse 3s ease-in-out infinite;
}
.instagram__header-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 12px 12px 30px rgba(10, 10, 10, 0.15);
}
.instagram__header-content h2 {
  font-family: "Lora", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: #0A0A0A;
  margin-bottom: 1rem;
}
.instagram__header-content h2 .text-gradient {
  font-weight: 500;
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.instagram__title {
  font-family: "Lora", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
}
.instagram__subtitle {
  font-size: 1.125rem;
  color: #6B6B6B;
  margin-bottom: 1.5rem;
}
.instagram__follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  border: none;
  transition: all 0.3s ease;
}
.instagram__follow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245, 133, 41, 0.4);
  filter: brightness(1.1);
}
.instagram__follow-btn i {
  font-size: 20px;
}
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .instagram__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.instagram__cta {
  display: flex;
  justify-content: center;
}
.instagram__bg-pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.instagram__bg-pattern .pattern-dot {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(245, 133, 41, 0.03) 0%, transparent 70%);
}
.instagram__bg-pattern .pattern-dot:nth-child(1) {
  top: 5%;
  left: 5%;
}
.instagram__bg-pattern .pattern-dot:nth-child(2) {
  top: 15%;
  right: 10%;
}
.instagram__bg-pattern .pattern-dot:nth-child(3) {
  bottom: 20%;
  left: 15%;
}
.instagram__bg-pattern .pattern-dot:nth-child(4) {
  bottom: 10%;
  right: 5%;
}
.instagram__bg-pattern .pattern-dot:nth-child(5) {
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}
.instagram__bg-pattern .pattern-dot:nth-child(6) {
  top: 60%;
  right: 30%;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: #FFFFFF;
  border: 16px solid #FFFFFF;
  box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.instagram-item:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: 12px 12px 30px rgba(10, 10, 10, 0.15);
}
.instagram-item__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.instagram-item__image {
  width: 100%;
  height: 100%;
}
.instagram-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
.instagram-item__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 10, 10, 0);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  opacity: 0;
  transition: all 0.3s ease;
}
.instagram-item__icon {
  color: #FFFFFF;
  font-size: 40px;
  transform: scale(0);
  transition: all 0.3s ease;
}
.instagram-item:hover .instagram-item__image img {
  transform: scale(1.05);
}
.instagram-item:hover .instagram-item__overlay {
  opacity: 0.9;
}
.instagram-item:hover .instagram-item__icon {
  transform: scale(1);
}

.footer {
  position: relative;
  background-color: #FAFAFA;
  border-top: 1px solid #E5E5E5;
}
.footer__top {
  padding: 6rem 0 4rem;
}
@media (min-width: 992px) {
  .footer__top {
    padding: 8rem 0 6rem;
  }
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 576px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (min-width: 992px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
  }
}
@media (min-width: 576px) {
  .footer__col--about {
    grid-column: 1/-1;
  }
}
@media (min-width: 992px) {
  .footer__col--about {
    grid-column: auto;
  }
}
.footer__logo {
  margin-bottom: 1.5rem;
}
.footer__logo .logo__text {
  font-family: "Lora", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #0A0A0A;
  letter-spacing: -0.02em;
}
.footer__logo .logo__dot {
  color: #2A2A2A;
}
.footer__description {
  font-size: 1rem;
  line-height: 1.8;
  color: #6B6B6B;
  margin-bottom: 2rem;
  max-width: 400px;
}
.footer__heading {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0A0A0A;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.footer__heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #0A0A0A;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__list li {
  margin-bottom: 0.5rem;
}
.footer__list li:last-child {
  margin-bottom: 0;
}
.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #6B6B6B;
  transition: all 0.3s ease;
  position: relative;
}
.footer__link i {
  font-size: 10px;
  color: #0A0A0A;
  transition: transform 0.3s ease;
}
.footer__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #0A0A0A;
  transition: width 0.3s ease;
}
.footer__link:hover {
  color: #0A0A0A;
}
.footer__link:hover::after {
  width: calc(100% - 15px);
}
.footer__link:hover i {
  transform: translateX(3px);
}
.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__contact li {
  margin-bottom: 1rem;
}
.footer__contact li:last-child {
  margin-bottom: 0;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #6B6B6B;
  transition: all 0.3s ease;
}
.footer__contact-item i {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0A0A;
  font-size: 14px;
  border: 1px solid #E5E5E5;
  background-color: #FFFFFF;
}
.footer__contact-item span {
  flex: 1;
}
.footer__contact-item:hover {
  color: #0A0A0A;
}
.footer__contact-item:hover i {
  border-color: #0A0A0A;
  background-color: #0A0A0A;
  color: #FFFFFF;
}
.footer .social-links--footer {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.footer__bottom {
  padding: 2rem 0;
  border-top: 1px solid #E5E5E5;
}
.footer__bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__copyright {
  font-size: 13px;
  color: #999999;
  margin: 0;
}
.footer__copyright strong {
  color: #0A0A0A;
  font-weight: 600;
}
.footer__credits {
  font-size: 13px;
  color: #999999;
  margin: 0;
}
.footer__credits a {
  color: #0A0A0A;
  font-weight: 500;
  transition: opacity 0.3s ease;
  position: relative;
}
.footer__credits a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #0A0A0A;
  transition: width 0.3s ease;
}
.footer__credits a:hover::after {
  width: 100%;
}
.footer .back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0A0A0A;
  color: #FFFFFF;
  border: 2px solid #0A0A0A;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1039;
}
.footer .back-to-top i {
  font-size: 18px;
}
.footer .back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.footer .back-to-top:hover {
  background-color: #FFFFFF;
  color: #0A0A0A;
  transform: translateY(-5px);
}
.footer .back-to-top:active {
  transform: translateY(-3px);
}
.footer__bg {
  display: none;
}
.footer__shape {
  display: none;
}

.portfolio-hero {
  position: relative;
  padding: 140px 0 80px;
  background: #FFFFFF;
  text-align: center;
}
@media (max-width: 768px) {
  .portfolio-hero {
    padding: 100px 0 60px;
  }
}
.portfolio-hero__label {
  display: inline-block;
  padding: 8px 20px;
  background: #FAFAFA;
  border: 2px solid #0A0A0A;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0A0A0A;
  margin-bottom: 20px;
}
.portfolio-hero__title {
  font-family: "Lora", serif;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0A0A0A;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .portfolio-hero__title {
    font-size: 36px;
  }
}
.portfolio-hero__description {
  font-size: 1.125rem;
  color: #6B6B6B;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .portfolio-hero__description {
    font-size: 1rem;
  }
}

.portfolio-full-gallery {
  position: relative;
  padding: 60px 0 100px;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .portfolio-full-gallery {
    padding: 40px 0 80px;
  }
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .portfolio-filters {
    gap: 8px;
    margin-bottom: 30px;
  }
}

.portfolio-filter-btn {
  position: relative;
  padding: 14px 32px;
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  color: #0A0A0A;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}
@media (max-width: 768px) {
  .portfolio-filter-btn {
    padding: 10px 20px;
    font-size: 0.75rem;
  }
}
.portfolio-filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #0A0A0A;
  transition: left 0.3s ease;
  z-index: 0;
}
.portfolio-filter-btn span {
  position: relative;
  z-index: 1;
}
.portfolio-filter-btn:hover, .portfolio-filter-btn.active {
  border-color: #0A0A0A;
  color: #FFFFFF;
}
.portfolio-filter-btn:hover::before, .portfolio-filter-btn.active::before {
  left: 0;
}
.portfolio-filter-btn.active {
  box-shadow: 0 4px 12px rgba(10, 10, 10, 0.15);
}

.portfolio-grid {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .portfolio-grid {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 768px) {
  .portfolio-grid {
    -moz-column-count: 1;
         column-count: 1;
    -moz-column-gap: 0;
         column-gap: 0;
    margin-bottom: 30px;
  }
}
.portfolio-grid__item {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  page-break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin-bottom: 8px;
  position: relative;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.portfolio-grid__item.filtered-out {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}
.portfolio-grid__image-wrapper {
  position: relative;
  overflow: hidden;
  background: #FAFAFA;
  border: 1px solid #E5E5E5;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-grid__image-wrapper:hover {
  border-color: #0A0A0A;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(10, 10, 10, 0.08);
}
.portfolio-grid__image-wrapper:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}
.portfolio-grid__image-wrapper:hover .portfolio-grid__overlay {
  opacity: 1;
}
.portfolio-grid__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.portfolio-grid__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.portfolio-grid__overlay i {
  font-size: 28px;
  color: #FFFFFF;
  animation: zoomPulse 0.6s ease;
}
@media (max-width: 768px) {
  .portfolio-grid__overlay i {
    font-size: 22px;
  }
}

.portfolio-loading {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 20px;
  font-size: 1.125rem;
  color: #6B6B6B;
}

.portfolio-load-more {
  text-align: center;
  padding-top: 20px;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: #0A0A0A;
  border: 2px solid #0A0A0A;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .btn-load-more {
    padding: 12px 32px;
    font-size: 0.875rem;
  }
}
.btn-load-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(10, 10, 10, 0.2);
}
.btn-load-more:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn-load-more.hidden {
  display: none;
}

.portfolio-lightbox-full {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio-lightbox-full.active {
  display: flex;
  opacity: 1;
}
.portfolio-lightbox-full .lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
@media (max-width: 768px) {
  .portfolio-lightbox-full .lightbox-close {
    width: 40px;
    height: 40px;
    top: 15px;
    right: 15px;
  }
}
.portfolio-lightbox-full .lightbox-close:hover {
  background: #0A0A0A;
  transform: rotate(90deg);
}
.portfolio-lightbox-full .lightbox-close:hover i {
  color: #FFFFFF;
}
.portfolio-lightbox-full .lightbox-close i {
  font-size: 24px;
  color: #0A0A0A;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .portfolio-lightbox-full .lightbox-close i {
    font-size: 20px;
  }
}
.portfolio-lightbox-full .lightbox-prev,
.portfolio-lightbox-full .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
@media (max-width: 768px) {
  .portfolio-lightbox-full .lightbox-prev,
  .portfolio-lightbox-full .lightbox-next {
    width: 40px;
    height: 40px;
  }
}
.portfolio-lightbox-full .lightbox-prev:hover,
.portfolio-lightbox-full .lightbox-next:hover {
  background: #0A0A0A;
}
.portfolio-lightbox-full .lightbox-prev:hover i,
.portfolio-lightbox-full .lightbox-next:hover i {
  color: #FFFFFF;
}
.portfolio-lightbox-full .lightbox-prev i,
.portfolio-lightbox-full .lightbox-next i {
  font-size: 20px;
  color: #0A0A0A;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .portfolio-lightbox-full .lightbox-prev i,
  .portfolio-lightbox-full .lightbox-next i {
    font-size: 16px;
  }
}
.portfolio-lightbox-full .lightbox-prev {
  left: 20px;
}
@media (max-width: 768px) {
  .portfolio-lightbox-full .lightbox-prev {
    left: 15px;
  }
}
.portfolio-lightbox-full .lightbox-next {
  right: 20px;
}
@media (max-width: 768px) {
  .portfolio-lightbox-full .lightbox-next {
    right: 15px;
  }
}
.portfolio-lightbox-full .lightbox-container {
  max-width: 90%;
  max-height: 90vh;
  position: relative;
  animation: zoomIn 0.3s ease;
}
.portfolio-lightbox-full .lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .portfolio-lightbox-full .lightbox-image {
    max-height: 70vh;
  }
}
.portfolio-lightbox-full .lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0A0A0A;
}
@media (max-width: 768px) {
  .portfolio-lightbox-full .lightbox-counter {
    bottom: 15px;
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}

@keyframes zoomPulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.text-gradient {
  background: linear-gradient(135deg, #0A0A0A 0%, #6B6B6B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title__label {
  display: inline-block;
  padding: 6px 16px;
  background: #FAFAFA;
  border: 1px solid #E5E5E5;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6B6B6B;
  margin-bottom: 16px;
}
.section-title__heading {
  font-family: "Lora", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #0A0A0A;
}
@media (max-width: 768px) {
  .section-title__heading {
    font-size: 1.5rem;
  }
}
.section-title__description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #6B6B6B;
}

.skip-to-content {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 12px 24px;
  background: #0A0A0A;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
}
.skip-to-content:focus {
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #0A0A0A;
  background: #FFFFFF;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid #E5E5E5;
  color: #0A0A0A;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-link:hover {
  background: #0A0A0A;
  color: #FFFFFF;
  border-color: #0A0A0A;
  transform: translateY(-2px);
}
.social-link i {
  font-size: 18px;
}

.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A0A0A;
  border: 2px solid #0A0A0A;
  color: #FFFFFF;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #FFFFFF;
  color: #0A0A0A;
  transform: translateY(-4px);
}
.back-to-top i {
  font-size: 20px;
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}/*# sourceMappingURL=main.css.map */