* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cormorant Garamond", serif;
  color: #ffffff;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.05);
  -o-object-fit: cover;
     object-fit: cover;
}
.video-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(12px) grayscale(30%);
  -webkit-backdrop-filter: blur(12px) grayscale(30%);
}

.content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 800px;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 80vh;
}
.content-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
  margin: 20px;
  z-index: -1;
}

.brand-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  animation: fadeInDown 1.2s ease-out both;
}
.brand-header .brand-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.6em;
  margin: 1.5rem 0 0.5rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.brand-header .sub-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 0.2em;
  color: #d4af37;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.brand-header .top-line, .brand-header .bottom-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.main-message {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0;
  animation: zoomIn 1.5s ease-out both 0.3s;
}
.main-message .pre-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  opacity: 0.6;
}
.main-message .title {
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background: linear-gradient(to right, #fff, #e0e0e0, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .main-message .title {
    font-size: 3.5rem;
  }
}
.main-message .ornament {
  color: #d4af37;
  font-size: 1.5rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.main-message .ornament::before, .main-message .ornament::after {
  content: "";
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}
.main-message .description {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.02em;
  opacity: 0.8;
  max-width: 500px;
  line-height: 1.4;
}

.contact-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  animation: fadeInUp 1.2s ease-out both 0.6s;
}
.contact-footer .divider {
  width: 100%;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin-bottom: 1rem;
}
.contact-footer .contact-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.5;
}
.contact-footer .phone-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
}
.contact-footer .phone-number:hover {
  color: #d4af37;
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.05);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}/*# sourceMappingURL=style.css.map */