/* Base font size for rem scaling */
html {
  font-size: 16px;
}

@media (max-width: 1200px) {
  html { font-size: 15px; }
}

@media (max-width: 900px) {
  html { font-size: 14px; }
}

@media (max-width: 600px) {
  html { font-size: 13px; }
}

.nav {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 1000;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(66, 66, 66);
}

.nav-block {
  max-width: 1200px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 24px;
  padding-bottom: 20px;
  padding-left: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-link {
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.nav-block-2 {
  width: 50px;
  height: 50px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(192, 192, 192);
  border-right-color: rgb(192, 192, 192);
  border-bottom-color: rgb(192, 192, 192);
  border-left-color: rgb(192, 192, 192);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-inline {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: rgb(255, 255, 255);
  letter-spacing: 2px;
}

.nav-block-3 {
  display: flex;
  row-gap: 32px;
  column-gap: 32px;
  align-items: center;
}

.nav-link-2 {
  color: rgb(255, 255, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 0.8125rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-link-3 {
  color: rgb(160, 160, 160);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 0.8125rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-link-4 {
  color: rgb(18, 18, 18);
  background-color: #C0C0C0;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 0.8125rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
}

.nav-link-4:hover {
  background-color: #FFFFFF;
}

.section {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: hidden;
  z-index: 1;
}

.hero-block {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%) brightness(0.4);
}

@media (max-width: 900px) {
  .hero-image {
    object-position: left center;
  }
}

@media (max-width: 600px) {
  .hero-image {
    object-position: 20% center;
  }
}

.hero-block-2 {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}

.hero-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.875rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgb(192, 192, 192);
  margin-bottom: 24px;
}

.hero-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 300;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 24px;
  margin-left: 0px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-text-2 {
  font-size: 1.125rem;
  color: rgb(192, 192, 192);
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-link {
  display: inline-block;
  background-color: #C0C0C0;
  color: rgb(18, 18, 18);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  padding-top: 16px;
  padding-right: 48px;
  padding-bottom: 16px;
  padding-left: 48px;
  font-size: 0.8125rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  transition: background-color 0.3s ease;
}

.hero-link:hover {
  background-color: #FFFFFF;
}

.block {
  height: 100vh;
}

.main {
  position: relative;
  z-index: 2;
  background-color: rgb(18, 18, 18);
}

.shared-section {
  padding-top: 120px;
  padding-right: 24px;
  padding-bottom: 120px;
  padding-left: 24px;
  background-color: rgb(18, 18, 18);
}

.block-2 {
  max-width: 1100px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 16px;
  column-gap: 16px;
}

.block-3 {
  position: relative;
  height: 100%;
}

.shared-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.block-4 {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  line-height: 1.2;
}

.text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: rgb(255, 255, 255);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 2px;
  margin-left: 0px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.shared-text {
  font-size: 0.625rem;
  color: rgb(160, 160, 160);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  letter-spacing: 1px;
}

.block-5 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  row-gap: 16px;
  column-gap: 16px;
}

.shared-block {
  position: relative;
}

.shared-block-2 {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  line-height: 1.2;
}

.shared-text-2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: rgb(255, 255, 255);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 2px;
  margin-left: 0px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-2 {
  padding-top: 80px;
  padding-right: 0px;
  padding-bottom: 80px;
  padding-left: 0px;
  background-color: rgb(33, 33, 33);
  text-align: center;
  overflow-x: hidden;
  overflow-y: hidden;
}

.block-6 {
  max-width: 700px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 0px;
  padding-right: 24px;
  padding-bottom: 0px;
  padding-left: 24px;
}

.subheading {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 24px;
  margin-left: 0px;
}

.text-2 {
  color: rgb(160, 160, 160);
  font-size: 1rem;
  margin-bottom: 48px;
}

.block-7 {
  display: flex;
  width: max-content;
  animation-duration: 60s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: scroll;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.gallery-block {
  display: flex;
  row-gap: 16px;
  column-gap: 16px;
  padding-right: 16px;
}

.gallery-image {
  height: 320px;
  width: auto;
  object-fit: cover;
  filter: grayscale(100%);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.block-8 {
  max-width: 1100px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}

.block-9 {
  text-align: center;
  margin-bottom: 80px;
}

.shared-text-3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.875rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgb(112, 112, 112);
  margin-bottom: 16px;
}

.subheading-2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.625rem;
  font-weight: 300;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.block-10 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 48px;
  column-gap: 48px;
}

.shared-block-3 {
  text-align: center;
}

.shared-block-4 {
  width: 60px;
  height: 60px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(66, 66, 66);
  border-right-color: rgb(66, 66, 66);
  border-bottom-color: rgb(66, 66, 66);
  border-left-color: rgb(66, 66, 66);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
}

.shared-inline {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: rgb(192, 192, 192);
}

.shared-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 16px;
  margin-left: 0px;
}

.shared-text-4 {
  color: rgb(160, 160, 160);
  font-size: 0.9375rem;
}

.section-3 {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.block-11 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 4px;
  column-gap: 4px;
}

.shared-image-2 {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(100%);
}

.section-4 {
  padding-top: 120px;
  padding-right: 24px;
  padding-bottom: 120px;
  padding-left: 24px;
  background-color: rgb(33, 33, 33);
}

.block-12 {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  text-align: center;
}

.subheading-3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.625rem;
  font-weight: 300;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 24px;
  margin-left: 0px;
}

.text-3 {
  color: rgb(160, 160, 160);
  font-size: 1rem;
  max-width: 600px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 48px;
  margin-left: auto;
}

.link {
  display: inline-block;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 255, 255);
  border-right-color: rgb(255, 255, 255);
  border-bottom-color: rgb(255, 255, 255);
  border-left-color: rgb(255, 255, 255);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  color: rgb(255, 255, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  padding-top: 16px;
  padding-right: 48px;
  padding-bottom: 16px;
  padding-left: 48px;
  font-size: 0.8125rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.block-13 {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 64px;
  column-gap: 64px;
  align-items: center;
}

.image {
  width: 100%;
  filter: grayscale(100%);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.subheading-4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  font-weight: 300;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 24px;
  margin-left: 0px;
  line-height: 1.2;
}

.text-4 {
  color: rgb(160, 160, 160);
  margin-bottom: 24px;
}

.text-5 {
  color: rgb(160, 160, 160);
  margin-bottom: 32px;
}

.link-2 {
  color: rgb(255, 255, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 0.8125rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(255, 255, 255);
  padding-bottom: 4px;
}

.section-5 {
  padding-top: 120px;
  padding-right: 24px;
  padding-bottom: 120px;
  padding-left: 24px;
  background-color: rgb(18, 18, 18);
  text-align: center;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

.hero-image-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.3);
}

.block-14 {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}

.subheading-5 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 24px;
  margin-left: 0px;
  line-height: 1.2;
}

.text-6 {
  color: rgb(192, 192, 192);
  font-size: 1rem;
  margin-bottom: 48px;
}

.footer {
  padding-top: 48px;
  padding-right: 24px;
  padding-bottom: 48px;
  padding-left: 24px;
  background-color: rgb(18, 18, 18);
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(66, 66, 66);
  position: relative;
  z-index: 2;
}

.footer-block {
  max-width: 1200px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-block-2 {
  display: flex;
  align-items: center;
  row-gap: 16px;
  column-gap: 16px;
}

.footer-block-3 {
  width: 40px;
  height: 40px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(66, 66, 66);
  border-right-color: rgb(66, 66, 66);
  border-bottom-color: rgb(66, 66, 66);
  border-left-color: rgb(66, 66, 66);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-inline {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 300;
  color: rgb(160, 160, 160);
}

.footer-inline-2 {
  color: rgb(112, 112, 112);
  font-size: 0.8125rem;
}

.footer-text {
  color: rgb(112, 112, 112);
  font-size: 0.75rem;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}
</style></head>
    <style>
        /* ========================================
           HERO FADE-IN ANIMATIONS
           ======================================== */
        .hero-fade {
            opacity: 0;
            transform: translateY(30px);
            animation: heroFadeIn 1s ease forwards;
        }
        .hero-fade-1 { animation-delay: 0.2s; }
        .hero-fade-2 { animation-delay: 0.5s; }
        .hero-fade-3 { animation-delay: 0.8s; }
        .hero-fade-4 { animation-delay: 1.1s; }

        @keyframes heroFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========================================
           SCROLL REVEAL ANIMATIONS
           ======================================== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.15s; }
        .reveal-delay-2 { transition-delay: 0.3s; }
        .reveal-delay-3 { transition-delay: 0.45s; }

        /* ========================================
           NAVIGATION HOVER EFFECTS
           ======================================== */
        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: #C0C0C0;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .nav-link:hover {
            color: #FFFFFF !important;
        }
        .nav-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        .nav-link.active::after {
            transform: scaleX(1);
        }

        /* ========================================
           BUTTON HOVER EFFECTS
           ======================================== */
        .btn {
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Primary button (filled white) */
        .btn-primary {
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
            background-color: #FFFFFF !important;
        }
        .btn-primary:active {
            transform: translateY(0);
        }

        /* Outline button */
        .btn-outline {
            background-color: transparent;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .btn-outline:hover {
            background-color: #FFFFFF !important;
            color: #121212 !important;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
        }
        .btn-outline:active {
            transform: translateY(0);
        }

        /* Text link with underline */
        .link-underline {
            position: relative;
            transition: all 0.3s ease;
        }
        .link-underline:hover {
            color: #C0C0C0 !important;
            border-bottom-color: #C0C0C0 !important;
        }

        /* ========================================
           SCROLLING GALLERY
           ======================================== */
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .scroll-gallery:hover {
            animation-play-state: paused;
        }

        /* ========================================
           FIXED HERO / PARALLAX REVEAL
           ======================================== */
        .main-content {
            box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5);
        }
        .main-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #424242, transparent);
        }

        /* ========================================
           LOGO HOVER
           ======================================== */
        nav a > div {
            transition: border-color 0.3s ease, transform 0.3s ease;
        }
        nav a:hover > div {
            border-color: #FFFFFF;
            transform: scale(1.05);
        }

        /* ========================================
           RESPONSIVE
           ======================================== */
        @media (max-width: 900px) {
            section > div[style*="max-width: 1100px"][style*="grid-template-columns: 1fr 1fr"] {
                grid-template-columns: 1fr !important;
            }
            section > div[style*="max-width: 1100px"] > div:first-child {
                height: 400px !important;
            }
        }
        @media (max-width: 768px) {
            nav > div { flex-direction: column; gap: 16px; }
            nav > div > div { gap: 16px; flex-wrap: wrap; justify-content: center; }
            section > div[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
            section > div > div[style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }
            section > div[style*="grid-template-columns: repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
            footer > div { flex-direction: column; gap: 24px; text-align: center; }
        }
    

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-block-3 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(18, 18, 18, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav-block-3.active {
    right: 0;
  }

  .nav-block-3 a {
    font-size: 1.25rem;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }
}
