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

body {
  font-family: "DM Sans", sans-serif;
  color: #f8f6f3;
  background: #142f4d;
  overflow-x: hidden;
}

.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.015;
  background-image: linear-gradient(45deg, transparent 48%, #f8f6f3 48%, #f8f6f3 52%, transparent 52%), linear-gradient(-45deg, transparent 48%, #f8f6f3 48%, #f8f6f3 52%, transparent 52%);
  background-size: 60px 60px;
  background-position: center;
  animation: patternShift 60s linear infinite;
}

@keyframes patternShift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}
.gradient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(29, 69, 112, 0.4) 0%, transparent 50%);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 2rem 4rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(20, 47, 77, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideDown 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
nav ul {
  display: flex;
  gap: 3rem;
  list-style: none;
}
nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #d4a574;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
nav a:hover {
  color: #d4a574;
}
nav a:hover::after {
  width: 100%;
}

.logo-container img {
  height: 50px;
  width: auto;
  opacity: 0;
  animation: fadeInLogo 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes fadeInLogo {
  to {
    opacity: 1;
  }
}
main {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
  position: relative;
}

.hero-content {
  max-width: 900px;
  text-align: center;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #f8f6f3;
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.hero p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: transparent;
  color: #f8f6f3;
  text-decoration: none;
  border: 1px solid #d4a574;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
}
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #d4a574;
  transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}
.cta-button:hover {
  color: #142f4d;
  border-color: #d4a574;
}
.cta-button:hover::before {
  left: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards, float 2s ease-in-out infinite 2.5s;
}
.scroll-indicator::before {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, #d4a574);
  margin: 0 auto 10px;
}
.scroll-indicator::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #d4a574;
  border-bottom: 1px solid #d4a574;
  transform: rotate(45deg);
  margin: 0 auto;
}

@keyframes fadeIn {
  to {
    opacity: 0.5;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}
.section {
  padding: 8rem 4rem;
  position: relative;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 4rem;
  text-align: center;
  color: #f8f6f3;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.portfolio-item {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(30px);
}
.portfolio-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #d4a574;
  transform: translateY(-10px);
}
.portfolio-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #d4a574;
}
.portfolio-item p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.value-item.visible {
  opacity: 1;
  transform: scale(1);
}
.value-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #f8f6f3;
}
.value-item p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 0.95rem;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #d4a574;
}

footer {
  background: rgba(20, 47, 77, 0.95);
  padding: 4rem 4rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  height: 60px;
  margin-bottom: 2rem;
}

.footer-contact {
  margin-bottom: 2rem;
}
.footer-contact h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #f8f6f3;
}

.call-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: #f8f6f3;
  text-decoration: none;
  border: 1px solid #d4a574;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.call-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #d4a574;
  transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}
.call-button:hover {
  color: #142f4d;
  border-color: #d4a574;
}
.call-button:hover::before {
  left: 0;
}
.call-button svg {
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: #f8f6f3;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .background-pattern {
    animation: none;
    background-position: 0 0;
  }
  header {
    padding: 1.5rem 2rem;
  }
  nav {
    position: relative;
  }
  nav ul {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #142f4d;
    padding: 1rem 0;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  nav ul.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  nav ul li {
    padding: 0;
  }
  nav a {
    font-size: 0.9rem;
    display: block;
    padding: 1rem 2rem;
  }
  nav a::after {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .logo-container img {
    height: 40px;
  }
  .hero {
    padding: 0 2rem;
  }
  .section {
    padding: 5rem 2rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 3rem 2rem 2rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}/*# sourceMappingURL=styles.css.map */