* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  color: #333333;
  overflow-x: hidden;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  background-color: #ffffff;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  color: #222222;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  color: #555555;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #000000;
  border-bottom: 1px solid #000000;
  padding-bottom: 4px;
}

.hero-slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #111111;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 1.4s cubic-bezier(0.25, 1, 0.5, 1),
              clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  clip-path: inset(0 0 0 0);
}

.slide.slide-out-left {
  clip-path: inset(0 100% 0 0);
  z-index: 3;
}

.slide.slide-out-right {
  clip-path: inset(0 0 0 100%);
  z-index: 3;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #222222;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.prev-btn {
  left: 35px;
}

.next-btn {
  right: 35px;
}

.biography-section {
  padding: 120px 80px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.biography-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.biography-image {
  width: 100%;
  overflow: hidden;
}

.biography-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.biography-image:hover img {
  transform: scale(1.03);
}

.biography-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.biography-content .sub-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #888888;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.biography-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 4px;
  color: #111111;
  margin-bottom: 30px;
}

.biography-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.biography-content p.lead-text {
  font-size: 15px;
  font-weight: 400;
  color: #222222;
}

.bio-btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: 15px;
  padding: 14px 28px;
  border: 1px solid #222222;
  color: #222222;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.bio-btn:hover {
  background-color: #222222;
  color: #ffffff;
}

@media (max-width: 992px) {
  .biography-section {
    padding: 80px 40px;
  }

  .biography-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.products-section {
  padding: 100px 50px;
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 5px;
  color: #111111;
  text-transform: uppercase;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 15px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #333333;
  text-transform: uppercase;
  text-align: center;
  transition: color 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-card:hover .product-title {
  color: #000000;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.464);
}

.modal-content {
  margin: auto;
  display: block;
  width: 90%;
  max-width: 1000px;
  max-height: 70vh;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  animation: zoomIn 0.3s ease;
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #000;
  font-size: 40px;
  font-weight: lighter;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #666;
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.contact-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
  padding: 60px;
  border-radius: 4px;
  gap: 50px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 25px;
  font-size: 22px;
  color: #111;
}

.contact-info p {
  color: #555;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 30px;
}

.contact-info .direct-contact {
  margin-bottom: 25px;
  font-size: 13px;
  letter-spacing: 1px;
}

.contact-info .social-links {
  display: flex;
  gap: 20px;
}

.contact-info .social-links a {
  text-decoration: none;
  color: #111;
  font-size: 12px;
  letter-spacing: 2px;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s ease;
}

.contact-info .social-links a:hover {
  border-bottom: 1px solid #111;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 2px;
  color: #333;
  transition: border-bottom-color 0.3s ease;
  resize: vertical;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  border-bottom-color: #111;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: #999;
}

.submit-btn {
  align-self: flex-start;
  padding: 15px 45px;
  background: transparent;
  border: 1px solid #111;
  color: #111;
  cursor: pointer;
  letter-spacing: 3px;
  font-size: 12px;
  transition: all 0.4s ease;
}

.submit-btn:hover {
  background: #111;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .contact-container {
    padding: 40px 20px;
    gap: 40px;
  }
}