/**
 * Old Gold Garage - Main Stylesheet
 * Modern Minimal Design
 * Created by CtrlZ Studio
 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #1A1A1A;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1A1A1A;
  margin-bottom: 32px;
}

h1 {
  font-size: 72px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 48px;
}
@media (max-width: 768px) {
  h2 {
    font-size: 36px;
  }
}

h3 {
  font-size: 32px;
}
@media (max-width: 768px) {
  h3 {
    font-size: 28px;
  }
}

p {
  margin-bottom: 32px;
  color: #666666;
}

a {
  color: #D4AF37;
  text-decoration: none;
  transition: 0.3s ease;
}
a:hover {
  color: #7A1A1A;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section-header {
  margin-bottom: 96px;
}
.section-header--center {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section-header__subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #D4AF37;
  margin-bottom: 16px;
}
.section-header__title {
  font-size: 48px;
  color: #1A1A1A;
  margin-bottom: 32px;
}
.section-header__description {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 32px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: #1A1A1A;
  color: #FFFFFF;
}
.btn--primary:hover {
  background: #7A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 26, 26, 0.2);
  color: #FFFFFF;
}
.btn--secondary {
  background: transparent;
  color: #1A1A1A;
  border: 2px solid #1A1A1A;
}
.btn--secondary:hover {
  background: #1A1A1A;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.btn--full {
  width: 100%;
}

.main {
  overflow-x: hidden;
}

section {
  padding: 128px 0;
  position: relative;
}
@media (max-width: 768px) {
  section {
    padding: 96px 0;
  }
}
section:nth-child(even) {
  background: #FAFAFA;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: all 0.3s ease;
}
.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(26, 26, 26, 0.05);
  opacity: 0;
  transition: 0.3s ease;
}
.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}
.header--scrolled::after {
  opacity: 1;
}
.header__main {
  padding: 32px 0;
  transition: 0.3s ease;
}
.header--scrolled .header__main {
  padding: 16px 0;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: 0.3s ease;
}
.header__logo-link:hover {
  opacity: 0.8;
}
.header__logo-text {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 1px;
  line-height: 1;
}
@media (max-width: 768px) {
  .header__logo-text {
    font-size: 24px;
  }
}
.header__logo-subtext {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #D4AF37;
  letter-spacing: 4px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .header__logo-subtext {
    font-size: 9px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
}
.header__nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (max-width: 768px) {
  .header__nav-toggle {
    display: flex;
  }
}
.header__nav-toggle span {
  width: 24px;
  height: 2px;
  background: #1A1A1A;
  transition: 0.3s ease;
  border-radius: 2px;
}
.header__nav-toggle:hover span {
  background: #D4AF37;
}
.header__nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.header__nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header__nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.header__menu {
  display: flex;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .header__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #FFFFFF;
    flex-direction: column;
    padding: 96px 48px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    justify-content: flex-start;
    gap: 32px;
  }
  .header__menu.active {
    right: 0;
  }
}
.header__menu li {
  position: relative;
}
.header__menu a {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1A1A1A;
  letter-spacing: 0.5px;
  padding: 8px 0;
  transition: 0.3s ease;
  position: relative;
}
.header__menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4AF37;
  transition: 0.3s ease;
}
.header__menu a:hover {
  color: #D4AF37;
}
.header__menu a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .header__menu a {
    display: block;
    width: 100%;
    padding: 16px 0;
    font-size: 16px;
  }
}

body {
  padding-top: 92px;
}
@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  overflow: hidden;
  padding: 96px 0;
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 96px 0;
  }
}
.hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: 10%;
  left: -100px;
  animation: float 20s ease-in-out infinite;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(122, 26, 26, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  bottom: 15%;
  right: -50px;
  animation: float 25s ease-in-out infinite reverse;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
@media (max-width: 1024px) {
  .hero__text {
    text-align: center;
  }
}
.hero__subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #D4AF37;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}
.hero__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 48px;
}
.hero__title span {
  display: block;
  opacity: 0;
}
.hero__title-line {
  animation: fadeInUp 1s ease-out forwards;
}
.hero__title-line:nth-child(1) {
  animation-delay: 0.4s;
}
.hero__title-line:nth-child(2) {
  animation-delay: 0.6s;
}
.hero__title-line:nth-child(3) {
  animation-delay: 0.8s;
}
.hero__title-line--gold {
  color: #D4AF37;
  position: relative;
  padding-left: 20px;
}
.hero__title-line--gold::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: #D4AF37;
}
.hero__description {
  font-size: 18px;
  line-height: 1.8;
  color: #666666;
  max-width: 500px;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 1s forwards;
}
@media (max-width: 1024px) {
  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }
}
.hero__buttons {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1.4s ease-out 1.2s forwards;
}
@media (max-width: 1024px) {
  .hero__buttons {
    justify-content: center;
  }
}
.hero__image {
  position: relative;
  height: 600px;
  border-radius: 24px;
  overflow: visible;
  opacity: 0;
  animation: fadeIn 1.4s ease-out 0.6s forwards;
}
@media (max-width: 1024px) {
  .hero__image {
    height: 500px;
    order: -1;
  }
}
@media (max-width: 768px) {
  .hero__image {
    height: 400px;
  }
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}
.hero__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(122, 26, 26, 0.1) 0%, transparent 50%);
  border-radius: 24px;
  pointer-events: none;
}
.hero__shape {
  position: absolute;
  z-index: -1;
}
.hero__shape--1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  top: -30px;
  right: -30px;
  animation: float 12s ease-in-out infinite, morph 8s ease-in-out infinite;
}
.hero__shape--2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(122, 26, 26, 0.12), rgba(122, 26, 26, 0.04));
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  bottom: 50px;
  right: -40px;
  animation: float 15s ease-in-out infinite, morph 10s ease-in-out infinite;
  animation-delay: 2s;
}
.hero__shape--3 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.08));
  border-radius: 40% 60% 60% 40%/60% 30% 70% 40%;
  top: 40%;
  left: -40px;
  animation: float 18s ease-in-out infinite, morph 12s ease-in-out infinite;
  animation-delay: 4s;
}
.hero__scroll {
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s ease-out 2s forwards;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero__scroll {
    display: none;
  }
}
.hero__scroll span {
  display: block;
  font-size: 11px;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #D4AF37, transparent);
  margin: 0 auto;
  position: relative;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #D4AF37;
  border-radius: 50%;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scrollDown {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(20px);
    opacity: 0;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(0) translateX(20px);
  }
  75% {
    transform: translateY(20px) translateX(10px);
  }
}
@keyframes morph {
  0%, 100% {
    border-radius: 40% 60% 60% 40%/60% 30% 70% 40%;
  }
  25% {
    border-radius: 60% 40% 30% 70%/50% 60% 40% 50%;
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
  75% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
}
.cars {
  background: #FFFFFF;
}
.cars__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media (max-width: 768px) {
  .cars__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.car-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(26, 26, 26, 0.06);
}
.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(212, 175, 55, 0.2);
}
.car-card:hover .car-card__image img {
  transform: scale(1.05);
}
.car-card:hover .car-card__badge {
  transform: scale(1.1);
}
.car-card__image {
  position: relative;
  overflow: hidden;
  height: 320px;
  background: #F5F5F5;
}
.car-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.car-card__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 26, 0.4) 100%);
}
.car-card__badge {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: 0.3s ease;
}
.car-card__badge i {
  font-size: 20px;
  color: #D4AF37;
}
.car-card__content {
  padding: 48px;
}
.car-card__year {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.1);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.car-card__name {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #1A1A1A;
  margin-bottom: 16px;
  line-height: 1.2;
}
.car-card__description {
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.car-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  padding: 32px 0;
  border-top: 1px solid rgba(26, 26, 26, 0.06);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}
.car-card__specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666666;
  font-weight: 500;
}
.car-card__specs li i {
  color: #D4AF37;
  font-size: 14px;
}
.car-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 32px;
  background: #1A1A1A;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: 0.3s ease;
}
.car-card__button i {
  transition: 0.3s ease;
}
.car-card__button:hover {
  background: #7A1A1A;
  transform: translateX(0);
  color: rgba(255, 255, 255, 0.95);
}
.car-card__button:hover i {
  transform: translateX(4px);
}

.about {
  background: #FFFFFF;
}
.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 1024px) {
  .about__content {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
.about__image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.about__image img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .about__image img {
    height: 400px;
  }
}
.about__image:hover img {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .about__text {
    order: -1;
  }
}
.about__description {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 32px;
}
.about__description:last-of-type {
  margin-bottom: 64px;
}
.about__features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about__feature {
  display: flex;
  gap: 32px;
  padding: 32px;
  background: #FAFAFA;
  border-radius: 8px;
  transition: 0.3s ease;
}
.about__feature:hover {
  background: #F5F5F5;
  transform: translateX(8px);
}
.about__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__feature-icon i {
  font-size: 20px;
  color: #D4AF37;
}
.about__feature-content h4 {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: #1A1A1A;
  margin-bottom: 4px;
}
.about__feature-content p {
  font-size: 14px;
  color: #666666;
  margin: 0;
  line-height: 1.5;
}

.why-us {
  background: #FAFAFA;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
}
@media (max-width: 768px) {
  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.why-us__item {
  text-align: center;
  padding: 64px 48px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(26, 26, 26, 0.06);
  transition: all 0.3s ease;
}
.why-us__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(212, 175, 55, 0.2);
}
.why-us__item:hover .why-us__icon {
  transform: scale(1.1);
  background: #D4AF37;
}
.why-us__item:hover .why-us__icon i {
  color: #FFFFFF;
}
.why-us__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 48px;
  background: #FAFAFA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.why-us__icon i {
  font-size: 32px;
  color: #D4AF37;
  transition: 0.3s ease;
}
.why-us__title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #1A1A1A;
  margin-bottom: 16px;
}
.why-us__description {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}

.gallery {
  position: relative;
  padding: 120px 0;
  background: #FFFFFF;
  overflow: hidden;
}
.gallery__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.gallery__background-pattern {
  position: absolute;
  opacity: 0.08;
}
.gallery__background-pattern--1 {
  top: 10%;
  right: 8%;
  width: 350px;
  height: 350px;
  border: 3px solid #D4AF37;
  animation: floatRotate 20s ease-in-out infinite;
}
.gallery__background-pattern--2 {
  bottom: 15%;
  left: 5%;
  width: 250px;
  height: 250px;
  border: 3px solid #7A1A1A;
  border-radius: 50%;
  animation: floatRotateReverse 25s ease-in-out infinite;
}
.gallery__background-pattern--3 {
  top: 50%;
  right: 15%;
  width: 180px;
  height: 180px;
  border: 2px solid #D4AF37;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: floatRotate 18s ease-in-out infinite;
  animation-delay: 2s;
}
.gallery__background-pattern--4 {
  top: 25%;
  left: 12%;
  width: 200px;
  height: 200px;
  border: 2px solid #7A1A1A;
  animation: floatRotateReverse 22s ease-in-out infinite;
  animation-delay: 4s;
}
.gallery__background-pattern--5 {
  bottom: 30%;
  right: 25%;
  width: 150px;
  height: 150px;
  border: 2px solid #D4AF37;
  border-radius: 50%;
  animation: floatRotate 28s ease-in-out infinite;
  animation-delay: 3s;
}
.gallery__background-pattern--6 {
  top: 70%;
  left: 20%;
  width: 220px;
  height: 220px;
  border: 3px solid #7A1A1A;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  animation: floatRotateReverse 24s ease-in-out infinite;
  animation-delay: 5s;
}
@keyframes floatRotate {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(0, -60px) rotate(180deg);
  }
  75% {
    transform: translate(-20px, -30px) rotate(270deg);
  }
}
@keyframes floatRotateReverse {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-20px, -30px) rotate(-90deg);
  }
  50% {
    transform: translate(0, -60px) rotate(-180deg);
  }
  75% {
    transform: translate(20px, -30px) rotate(-270deg);
  }
}
.gallery .container {
  position: relative;
  z-index: 1;
}
.gallery__header {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .gallery__header {
    margin-bottom: 60px;
  }
}
.gallery__title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: #7A1A1A;
  margin-bottom: 16px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .gallery__title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .gallery__title {
    font-size: 32px;
  }
}
.gallery__subtitle {
  font-size: 18px;
  color: #666666;
  font-weight: 300;
}
@media (max-width: 480px) {
  .gallery__subtitle {
    font-size: 16px;
  }
}
.gallery__carousel {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  margin: 0 -20px;
}
@media (max-width: 768px) {
  .gallery__carousel {
    margin: 0 -10px;
  }
}
.gallery__track {
  display: flex;
  gap: 24px;
  will-change: transform;
}
@media (max-width: 768px) {
  .gallery__track {
    gap: 16px;
  }
}
.gallery__slide {
  flex: 0 0 calc(40% - 12px);
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery__slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
@media (max-width: 768px) {
  .gallery__slide {
    flex: 0 0 calc(50% - 8px);
    border-radius: 8px;
  }
}
@media (max-width: 480px) {
  .gallery__slide {
    flex: 0 0 calc(85% - 8px);
  }
}
.gallery__slide img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: sepia(0.08) contrast(1.03) brightness(1.02);
}
@media (max-width: 768px) {
  .gallery__slide img {
    height: 400px;
  }
}
@media (max-width: 480px) {
  .gallery__slide img {
    height: 350px;
  }
}

.services {
  background: #FFFFFF;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.service-card {
  background: #FAFAFA;
  padding: 64px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.service-card:hover {
  background: #FFFFFF;
  transform: translateY(-8px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(212, 175, 55, 0.2);
}
.service-card:hover .service-card__icon {
  background: #D4AF37;
}
.service-card:hover .service-card__icon i {
  color: #FFFFFF;
}
.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 48px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.service-card__icon i {
  font-size: 28px;
  color: #D4AF37;
  transition: 0.3s ease;
}
.service-card__title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #1A1A1A;
  margin-bottom: 32px;
}
.service-card__description {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}

.faq {
  position: relative;
  padding: 120px 0;
  background: #FFFFFF;
  overflow: hidden;
}
.faq__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.faq__background-pattern {
  position: absolute;
  opacity: 0.06;
}
.faq__background-pattern--1 {
  top: 15%;
  left: 5%;
  width: 300px;
  height: 300px;
  border: 3px solid #D4AF37;
  border-radius: 50%;
  animation: floatSlow 25s ease-in-out infinite;
}
.faq__background-pattern--2 {
  top: 50%;
  right: 8%;
  width: 250px;
  height: 250px;
  border: 3px solid #7A1A1A;
  transform: rotate(45deg);
  animation: floatSlow 30s ease-in-out infinite reverse;
}
.faq__background-pattern--3 {
  bottom: 20%;
  left: 15%;
  width: 200px;
  height: 200px;
  border: 2px solid #D4AF37;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: floatSlow 22s ease-in-out infinite;
  animation-delay: 3s;
}
.faq__background-pattern--4 {
  bottom: 10%;
  right: 20%;
  width: 180px;
  height: 180px;
  border: 2px solid #7A1A1A;
  border-radius: 50%;
  animation: floatSlow 28s ease-in-out infinite;
  animation-delay: 5s;
}
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
  }
}
.faq .container {
  position: relative;
  z-index: 1;
}
.faq__header {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .faq__header {
    margin-bottom: 60px;
  }
}
.faq__title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: #7A1A1A;
  margin-bottom: 16px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .faq__title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .faq__title {
    font-size: 32px;
  }
}
.faq__subtitle {
  font-size: 18px;
  color: #666666;
  font-weight: 300;
}
@media (max-width: 480px) {
  .faq__subtitle {
    font-size: 16px;
  }
}
.faq__accordion {
  max-width: 900px;
  margin: 0 auto;
}
.faq__item {
  margin-bottom: 20px;
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__item:hover {
  border-color: #7A1A1A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.faq__item.active {
  border-color: #D4AF37;
}
.faq__item.active .faq__question {
  color: #D4AF37;
}
.faq__item.active .faq__question::before {
  opacity: 1;
}
.faq__item.active .faq__icon svg {
  transform: rotate(45deg);
}
.faq__item.active .faq__icon svg path {
  stroke: #D4AF37;
}
.faq__item.active .faq__answer {
  max-height: 500px;
  padding: 0 32px 32px;
}
@media (max-width: 480px) {
  .faq__item.active .faq__answer {
    padding: 0 24px 24px;
  }
}
@media (max-width: 480px) {
  .faq__item {
    margin-bottom: 16px;
  }
}
.faq__question {
  width: 100%;
  padding: 28px 32px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #D4AF37;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 480px) {
  .faq__question {
    padding: 20px 24px;
    gap: 16px;
  }
}
.faq__question-text {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  color: #333333;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .faq__question-text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .faq__question-text {
    font-size: 16px;
  }
}
.faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__icon svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__icon svg path {
  stroke: #7A1A1A;
  transition: stroke 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 480px) {
  .faq__icon {
    width: 28px;
    height: 28px;
  }
  .faq__icon svg {
    width: 20px;
    height: 20px;
  }
}
.faq__answer {
  max-height: 0;
  padding: 0 32px;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  will-change: max-height;
}
@media (max-width: 480px) {
  .faq__answer {
    padding: 0 24px;
  }
}
.faq__answer-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  margin: 0;
}
@media (max-width: 480px) {
  .faq__answer-content p {
    font-size: 15px;
  }
}
.faq__cta {
  margin-top: 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .faq__cta {
    margin-top: 60px;
  }
}
.faq__cta-text {
  font-size: 20px;
  color: #333333;
  margin-bottom: 24px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .faq__cta-text {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.testimonials {
  background: #FAFAFA;
  position: relative;
}
.testimonials .container {
  max-width: 1280px;
}
.testimonials__wrapper {
  overflow: hidden;
  position: relative;
  padding: 48px 0;
  max-width: 1280px;
  margin: 0 auto;
}
.testimonials__slider {
  display: flex;
  gap: 48px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonials__controls {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 64px;
}
@media (max-width: 768px) {
  .testimonials__controls {
    margin-top: 48px;
  }
}
.testimonials__control {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #D4AF37;
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}
.testimonials__control:hover {
  background: #D4AF37;
  color: #FFFFFF;
  transform: scale(1.1);
}
.testimonials__control:active {
  transform: scale(0.95);
}
.testimonials__control i {
  font-size: 16px;
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 2);
  background: #FFFFFF;
  padding: 64px;
  border-radius: 16px;
  border: 1px solid rgba(26, 26, 26, 0.06);
  position: relative;
  transition: 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(212, 175, 55, 0.2);
}
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 48px);
    padding: 48px;
  }
}
.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
}
.testimonial-card__stars i {
  color: #D4AF37;
  font-size: 16px;
}
.testimonial-card__text {
  font-size: 15px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 48px;
  font-style: italic;
  min-height: 100px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(26, 26, 26, 0.06);
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  background: #FAFAFA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card__avatar i {
  font-size: 20px;
  color: #D4AF37;
}
.testimonial-card__info {
  flex: 1;
}
.testimonial-card__name {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: #1A1A1A;
  margin-bottom: 4px;
}
.testimonial-card__role {
  font-size: 13px;
  color: #999999;
  font-weight: 500;
}

.contact {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  padding: 96px 0;
}
@media (max-width: 768px) {
  .contact {
    padding: 64px 0;
  }
}
@media (max-width: 480px) {
  .contact {
    padding: 48px 0;
  }
}
.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 1024px) {
  .contact__wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.contact__image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  max-height: 700px;
  height: 100%;
}
@media (max-width: 1024px) {
  .contact__image {
    height: 400px;
    max-height: 400px;
  }
}
@media (max-width: 480px) {
  .contact__image {
    height: 300px;
    max-height: 300px;
    border-radius: 8px;
  }
}
.contact__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.contact__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.3) 0%, rgba(122, 26, 26, 0.4) 100%);
  z-index: 1;
}
.contact__content {
  display: flex;
  align-items: center;
}
.contact__inner {
  width: 100%;
}
.contact__description {
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 48px;
}
@media (max-width: 480px) {
  .contact__description {
    font-size: 15px;
    margin-bottom: 32px;
  }
}
.contact__cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 480px) {
  .contact__cta {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
}
.contact__cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 16px;
  background: #D4AF37;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  text-align: center;
}
@media (max-width: 480px) {
  .contact__cta-btn {
    padding: 32px 16px;
  }
}
.contact__cta-btn i {
  font-size: 32px;
  flex-shrink: 0;
  color: #FFFFFF;
}
@media (max-width: 480px) {
  .contact__cta-btn i {
    font-size: 28px;
  }
}
.contact__cta-btn--primary {
  background: #D4AF37;
}
.contact__cta-btn--primary:hover {
  background: rgb(186.1728395062, 151.7308641975, 40.0271604938);
  transform: translateY(-4px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  color: #FFFFFF;
}
.contact__cta-btn--primary:hover i {
  color: #FFFFFF;
}
.contact__cta-btn--secondary {
  background: #7A1A1A;
}
.contact__cta-btn--secondary:hover {
  background: rgb(155.6324324324, 33.1675675676, 33.1675675676);
  transform: translateY(-4px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  color: #FFFFFF;
}
.contact__cta-btn--secondary:hover i {
  color: #FFFFFF;
}
.contact__cta-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  color: #FFFFFF;
}
.contact__cta-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
  margin-bottom: 6px;
  color: #FFFFFF;
}
@media (max-width: 480px) {
  .contact__cta-label {
    font-size: 10px;
  }
}
.contact__cta-number {
  font-size: 18px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #FFFFFF;
}
@media (max-width: 480px) {
  .contact__cta-number {
    font-size: 16px;
  }
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 480px) {
  .contact__details {
    margin-bottom: 16px;
  }
}
.contact__detail {
  display: flex;
  gap: 16px;
  padding: 32px;
  background: #FAFAFA;
  border-radius: 8px;
  transition: 0.3s ease;
}
@media (max-width: 480px) {
  .contact__detail {
    padding: 16px;
  }
}
.contact__detail:hover {
  background: #F5F5F5;
  transform: translateX(4px);
}
.contact__detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .contact__detail-icon {
    width: 36px;
    height: 36px;
  }
}
.contact__detail-icon i {
  font-size: 16px;
  color: #D4AF37;
}
@media (max-width: 480px) {
  .contact__detail-icon i {
    font-size: 14px;
  }
}
.contact__detail-content {
  flex: 1;
}
.contact__detail-content h4 {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  color: #1A1A1A;
  margin-bottom: 4px;
}
@media (max-width: 480px) {
  .contact__detail-content h4 {
    font-size: 13px;
  }
}
.contact__detail-content p {
  font-size: 13px;
  color: #666666;
  margin: 0;
}
@media (max-width: 480px) {
  .contact__detail-content p {
    font-size: 12px;
  }
}
.contact__social {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}
@media (max-width: 480px) {
  .contact__social {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 16px;
  }
}
.contact__social-label {
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
  letter-spacing: 0.5px;
}
@media (max-width: 480px) {
  .contact__social-label {
    font-size: 12px;
  }
}
.contact__social-links {
  display: flex;
  gap: 16px;
}
.contact__social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAFA;
  color: #1A1A1A;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s ease;
}
@media (max-width: 480px) {
  .contact__social-link {
    width: 40px;
    height: 40px;
  }
}
.contact__social-link i {
  font-size: 18px;
}
@media (max-width: 480px) {
  .contact__social-link i {
    font-size: 16px;
  }
}
.contact__social-link:hover {
  background: #D4AF37;
  color: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.section-header__subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #D4AF37;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .section-header__subtitle {
    font-size: 12px;
  }
}
.section-header__title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .section-header__title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .section-header__title {
    font-size: 28px;
    margin-bottom: 16px;
  }
}

.footer {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 96px 0 0;
  position: relative;
}
.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {
  .footer__content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 1024px) {
  .footer__column--about {
    grid-column: 1/-1;
  }
}
.footer__title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 32px;
}
.footer__title--gold {
  color: #D4AF37;
}
.footer__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: 0.3s ease;
}
.footer__social a:hover {
  background: #D4AF37;
  transform: translateY(-4px);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: 0.3s ease;
}
.footer__links a:hover {
  color: #D4AF37;
  transform: translateX(4px);
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__contact li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.footer__contact i {
  color: #D4AF37;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer__contact div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__contact a, .footer__contact span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: 0.3s ease;
}
.footer__contact a:hover, .footer__contact span:hover {
  color: #D4AF37;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 48px 0;
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.footer__bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.footer__bottom a {
  color: #D4AF37;
  font-weight: 600;
}
.footer__bottom a:hover {
  color: #FFFFFF;
}

.scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #D4AF37;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: 0.3s ease;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
@media (max-width: 480px) {
  .scroll-to-top {
    width: 48px;
    height: 48px;
    bottom: 24px;
    right: 24px;
  }
}
.scroll-to-top i {
  font-size: 20px;
  color: #FFFFFF;
  transition: 0.3s ease;
}
@media (max-width: 480px) {
  .scroll-to-top i {
    font-size: 18px;
  }
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  background: #7A1A1A;
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}
.scroll-to-top:hover i {
  transform: translateY(-2px);
}
.scroll-to-top:active {
  transform: translateY(-2px);
}

.error-404 {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 96px 0;
  background: #FFFFFF;
  overflow: hidden;
}
@media (max-width: 768px) {
  .error-404 {
    padding: 64px 0;
    min-height: 70vh;
  }
}
@media (max-width: 480px) {
  .error-404 {
    padding: 48px 0;
    min-height: 60vh;
  }
}
.error-404 .container {
  position: relative;
  z-index: 2;
}
.error-404__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.error-404__number {
  font-family: "Playfair Display", serif;
  font-size: 180px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #D4AF37 0%, #7A1A1A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .error-404__number {
    font-size: 140px;
  }
}
@media (max-width: 480px) {
  .error-404__number {
    font-size: 100px;
    margin-bottom: 16px;
  }
}
.error-404__title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .error-404__title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .error-404__title {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
.error-404__description {
  font-size: 18px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 64px;
}
@media (max-width: 480px) {
  .error-404__description {
    font-size: 16px;
    margin-bottom: 48px;
  }
}
.error-404__actions {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 64px;
}
@media (max-width: 480px) {
  .error-404__actions {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
  }
}
.error-404__actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 32px 48px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}
@media (max-width: 480px) {
  .error-404__actions .btn {
    justify-content: center;
    width: 100%;
  }
}
.error-404__actions .btn i {
  font-size: 18px;
}
.error-404__actions .btn--primary {
  background: #D4AF37;
  color: #FFFFFF;
}
.error-404__actions .btn--primary:hover {
  background: rgb(186.1728395062, 151.7308641975, 40.0271604938);
  transform: translateY(-4px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.error-404__actions .btn--secondary {
  background: #7A1A1A;
  color: #FFFFFF;
}
.error-404__actions .btn--secondary:hover {
  background: rgb(155.6324324324, 33.1675675676, 33.1675675676);
  transform: translateY(-4px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.error-404__search {
  max-width: 500px;
  margin: 0 auto 64px;
}
@media (max-width: 480px) {
  .error-404__search {
    margin-bottom: 48px;
  }
}
.error-404__search h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #1A1A1A;
  margin-bottom: 32px;
}
@media (max-width: 480px) {
  .error-404__search h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.error-404__search .search-form {
  display: flex;
  gap: 16px;
}
@media (max-width: 480px) {
  .error-404__search .search-form {
    flex-direction: column;
  }
}
.error-404__search .search-form .search-field {
  flex: 1;
  padding: 32px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #1A1A1A;
  background: #FAFAFA;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  transition: 0.3s ease;
}
.error-404__search .search-form .search-field:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.error-404__search .search-form .search-field::-moz-placeholder {
  color: #999999;
}
.error-404__search .search-form .search-field::placeholder {
  color: #999999;
}
.error-404__search .search-form .search-submit {
  padding: 32px 48px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  background: #D4AF37;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}
@media (max-width: 480px) {
  .error-404__search .search-form .search-submit {
    width: 100%;
  }
}
.error-404__search .search-form .search-submit:hover {
  background: rgb(186.1728395062, 151.7308641975, 40.0271604938);
  transform: translateY(-2px);
}
.error-404__links {
  max-width: 500px;
  margin: 0 auto;
  padding: 48px;
  background: #FAFAFA;
  border-radius: 8px;
}
@media (max-width: 480px) {
  .error-404__links {
    padding: 32px;
  }
}
.error-404__links h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #1A1A1A;
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 480px) {
  .error-404__links h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.error-404__links ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 480px) {
  .error-404__links ul {
    grid-template-columns: 1fr;
  }
}
.error-404__links ul li {
  margin: 0;
}
.error-404__links ul li a {
  display: block;
  padding: 16px 32px;
  font-size: 15px;
  color: #666666;
  text-decoration: none;
  background: #FFFFFF;
  border-radius: 8px;
  transition: 0.3s ease;
}
.error-404__links ul li a:hover {
  color: #D4AF37;
  background: #F5F5F5;
  transform: translateX(4px);
}
.error-404__decoration {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 400px;
  color: rgba(212, 175, 55, 0.05);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .error-404__decoration {
    font-size: 300px;
    right: -80px;
  }
}
@media (max-width: 768px) {
  .error-404__decoration {
    display: none;
  }
}

[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos=fade-up] {
  transform: translateY(40px);
}
[data-aos=fade-up].aos-animate {
  transform: translateY(0);
}

[data-aos=fade-left] {
  transform: translateX(-40px);
}
[data-aos=fade-left].aos-animate {
  transform: translateX(0);
}

[data-aos=fade-right] {
  transform: translateX(40px);
}
[data-aos=fade-right].aos-animate {
  transform: translateX(0);
}

[data-aos=zoom-in] {
  transform: scale(0.95);
}
[data-aos=zoom-in].aos-animate {
  transform: scale(1);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #D4AF37;
  z-index: 9999;
  transition: width 0.1s ease;
}

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

@media print {
  .header,
  .footer,
  .btn {
    display: none;
  }
  section {
    page-break-inside: avoid;
  }
}/*# sourceMappingURL=main.css.map */