/* 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(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-3 {
      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-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;
    }

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

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

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

    .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 {
      max-width: 700px;
      margin-top: 0px;
      margin-right: auto;
      margin-bottom: 0px;
      margin-left: auto;
    }

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

    .shared-section {
      padding-top: 80px;
      padding-right: 24px;
      padding-bottom: 80px;
      padding-left: 24px;
    }

    .block-2 {
      position: fixed;
      top: 0px;
      right: 0px;
      bottom: 0px;
      left: 0px;
      z-index: 2000;
      background-color: rgba(0, 0, 0, 0.95);
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition-behavior: normal, normal;
      transition-duration: 0.4s, 0.4s;
      transition-timing-function: ease, ease;
      transition-delay: 0s, 0s;
      transition-property: opacity, visibility;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .block-3 {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background-color: rgb(192, 192, 192);
      color: rgb(18, 18, 18);
      padding-top: 6px;
      padding-right: 20px;
      padding-bottom: 6px;
      padding-left: 20px;
      font-size: 0.6875rem;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .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 {
      max-width: 600px;
      margin-top: 0px;
      margin-right: auto;
      margin-bottom: 0px;
      margin-left: auto;
      text-align: center;
    }

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

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

    .block-5 {
      display: flex;
      flex-direction: column;
      row-gap: 16px;
      column-gap: 16px;
    }

    .shared-block {
      background-color: rgb(33, 33, 33);
      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: 4px;
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px;
      border-bottom-left-radius: 4px;
      padding-top: 48px;
      padding-right: 32px;
      padding-bottom: 48px;
      padding-left: 32px;
      display: flex;
      flex-direction: column;
    }

    .shared-block-2 {
      border-top-width: 1px;
      border-top-style: solid;
      border-top-color: rgb(66, 66, 66);
      padding-top: 32px;
      flex-grow: 1;
    }

    .shared-text-2 {
      color: rgb(112, 112, 112);
      font-size: 0.875rem;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 24px;
      margin-left: 0px;
    }

    .section-2 {
      padding-top: 40px;
      padding-right: 24px;
      padding-bottom: 120px;
      padding-left: 24px;
    }

    .block-6 {
      display: flex;
      justify-content: space-between;
      padding-top: 16px;
      padding-right: 0px;
      padding-bottom: 16px;
      padding-left: 0px;
    }

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

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

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

    .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: 3rem;
      font-weight: 300;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 32px;
      margin-left: 0px;
    }

    .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 {
      display: flex;
      justify-content: space-between;
      padding-top: 16px;
      padding-right: 0px;
      padding-bottom: 16px;
      padding-left: 0px;
      border-bottom-width: 1px;
      border-bottom-style: solid;
      border-bottom-color: rgb(66, 66, 66);
    }

    .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 {
      color: rgb(192, 192, 192);
    }

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

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

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

    .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: 80px;
      padding-right: 24px;
      padding-bottom: 80px;
      padding-left: 24px;
      background-color: rgb(18, 18, 18);
      text-align: center;
    }

    .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 {
      font-family: "Cormorant Garamond", serif;
      font-size: 0.875rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgb(112, 112, 112);
      margin-bottom: 16px;
    }

    .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;
    }

    .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 {
      max-width: 90vw;
      max-height: 90vh;
      object-fit: contain;
      filter: grayscale(100%);
      transform: scale(0.95);
      transition-behavior: normal;
      transition-duration: 0.4s;
      transition-timing-function: ease;
      transition-delay: 0s;
      transition-property: transform;
    }

    .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: 48px;
    }

    .text-5 {
      color: rgb(112, 112, 112);
      font-size: 0.8125rem;
      margin-top: 32px;
      font-style: italic;
    }

    .link-2 {
      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;
    }

    .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);
    }

    .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 {
      color: rgb(112, 112, 112);
      font-size: 0.8125rem;
    }

    .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;
    }

    .heading {
      font-family: "Cormorant Garamond", serif;
      font-size: 2.625rem;
      font-weight: 300;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 16px;
      margin-left: 0px;
      line-height: 1.2;
    }

    .shared-list {
      list-style-position: initial;
      list-style-image: initial;
      list-style-type: none;
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }

    .shared-item {
      padding-top: 8px;
      padding-right: 0px;
      padding-bottom: 8px;
      padding-left: 0px;
      display: flex;
      row-gap: 12px;
      column-gap: 12px;
    }

    .shared-item-2 {
      color: rgb(160, 160, 160);
      font-size: 0.875rem;
      padding-top: 12px;
      padding-right: 0px;
      padding-bottom: 12px;
      padding-left: 0px;
      display: flex;
      row-gap: 12px;
      column-gap: 12px;
    }

    .shared-link {
      display: block;
      text-align: center;
      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: 16px;
      padding-bottom: 16px;
      padding-left: 16px;
      font-size: 0.8125rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-top: 32px;
    }

    .shared-inline-2 {
      color: rgb(160, 160, 160);
    }

    .shared-inline-3 {
      color: rgb(255, 255, 255);
    }

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

    .list {
      list-style-position: initial;
      list-style-image: initial;
      list-style-type: none;
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
      color: rgb(160, 160, 160);
    }

    .form {
      display: flex;
      flex-direction: column;
      row-gap: 24px;
      column-gap: 24px;
    }

    .shared-label {
      display: block;
      font-size: 0.75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgb(160, 160, 160);
      margin-bottom: 8px;
    }

    .shared-input {
      width: 100%;
      padding-top: 16px;
      padding-right: 16px;
      padding-bottom: 16px;
      padding-left: 16px;
      background-color: rgb(33, 33, 33);
      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: 4px;
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px;
      border-bottom-left-radius: 4px;
      color: rgb(255, 255, 255);
      font-family: Montserrat, sans-serif;
      font-size: 0.875rem;
      box-sizing: border-box;
    }

    .shared-select {
      width: 100%;
      padding-top: 16px;
      padding-right: 16px;
      padding-bottom: 16px;
      padding-left: 16px;
      background-color: rgb(33, 33, 33);
      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: 4px;
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px;
      border-bottom-left-radius: 4px;
      color: rgb(255, 255, 255);
      font-family: Montserrat, sans-serif;
      font-size: 0.875rem;
      box-sizing: border-box;
      cursor: pointer;
    }

    .textarea {
      width: 100%;
      padding-top: 16px;
      padding-right: 16px;
      padding-bottom: 16px;
      padding-left: 16px;
      background-color: rgb(33, 33, 33);
      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: 4px;
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px;
      border-bottom-left-radius: 4px;
      color: rgb(255, 255, 255);
      font-family: Montserrat, sans-serif;
      font-size: 0.875rem;
      box-sizing: border-box;
      resize: vertical;
    }

    .button {
      position: absolute;
      top: 24px;
      right: 24px;
      background-image: none;
      background-position-x: initial;
      background-position-y: initial;
      background-size: initial;
      background-repeat: initial;
      background-attachment: initial;
      background-origin: initial;
      background-clip: initial;
      background-color: initial;
      border-top-width: initial;
      border-right-width: initial;
      border-bottom-width: initial;
      border-left-width: initial;
      border-top-style: none;
      border-right-style: none;
      border-bottom-style: none;
      border-left-style: none;
      border-top-color: initial;
      border-right-color: initial;
      border-bottom-color: initial;
      border-left-color: initial;
      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);
      font-size: 3rem;
      font-weight: 200;
      cursor: pointer;
      opacity: 0.7;
      transition-behavior: normal;
      transition-duration: 0.3s;
      transition-timing-function: ease;
      transition-delay: 0s;
      transition-property: opacity;
      z-index: 2001;
      line-height: 1;
    }

    .header {
      padding-top: 160px;
      padding-right: 24px;
      padding-bottom: 80px;
      padding-left: 24px;
      text-align: center;
    }

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

    .header-heading {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(36px, 6vw, 56px);
      font-weight: 300;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 24px;
      margin-left: 0px;
      line-height: 1.1;
    }

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

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

    .portfolio-block-2 {
      text-align: center;
      margin-bottom: 48px;
    }

    .portfolio-svg {
      opacity: 0.5;
    }

    .portfolio-subheading {
      font-family: "Cormorant Garamond", serif;
      font-size: 27px;
      font-weight: 300;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 10px;
      margin-left: 0px;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .portfolio-text {
      color: rgb(160, 160, 160);
      font-size: 0.6875rem;
      max-width: 400px;
      margin-top: 0px;
      margin-right: auto;
      margin-bottom: 0px;
      margin-left: auto;
      line-height: 1.7;
    }

    .portfolio-block-3 {
      position: relative;
      overflow-x: hidden;
      overflow-y: hidden;
      border-top-left-radius: 4px;
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px;
      border-bottom-left-radius: 4px;
      cursor: pointer;
      break-inside: avoid;
      margin-bottom: 16px;
    }

    .portfolio-image {
      width: 100%;
      height: auto;
      display: block;
      filter: grayscale(100%);
      transition-behavior: normal;
      transition-duration: 0.8s;
      transition-timing-function: ease;
      transition-delay: 0s;
      transition-property: transform;
    }
  

    /* Hero fade-in animations */
    .hero-fade {
      opacity: 0;
      transform: translateY(20px);
      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;
    }

    @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);
    }

    /* Navigation hover effects */
    .nav-link {
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background-color: #C0C0C0;
      transition: width 0.3s ease;
    }

    .nav-link:hover {
      color: #FFFFFF !important;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .nav-link.active::after {
      width: 100%;
    }

    /* Button hover effects */
    .btn {
      transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
    }

    .btn-primary:hover {
      background-color: #FFFFFF !important;
    }

    /* Masonry grid layout */
    .portfolio-grid {
      columns: 3;
      column-gap: 16px;
    }

    .portfolio-item {
      transition: opacity 0.6s ease, filter 0.6s ease, transform 0.6s ease;
    }

    /* Hover isolation effect */
    .portfolio-grid:hover .portfolio-item:not(:hover) {
      opacity: 0.3;
      filter: blur(2px);
      transform: scale(0.98);
    }

    .portfolio-item:hover {
      z-index: 10;
    }

    .portfolio-item:hover img {
      transform: scale(1.03);
    }

    /* Lightbox states */
    #lightbox.active {
      opacity: 1 !important;
      visibility: visible !important;
    }

    #lightbox.active #lightbox-img {
      transform: scale(1) !important;
    }

    #lightbox-close:hover {
      opacity: 1;
    }

    #lightbox-img {
      pointer-events: none;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .portfolio-grid {
        columns: 2 !important;
      }
    }

    @media (max-width: 600px) {
      .portfolio-grid {
        columns: 1 !important;
      }
    }

    @media (max-width: 768px) {
      nav>div {
        flex-direction: column;
        gap: 16px;
      }

      nav>div>div {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
      }

      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-link-4:hover {
  background-color: #FFFFFF;
}

.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;
  }
}

/* Portfolio Hero Section */
.portfolio-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.portfolio-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 24px;
}

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

@media (max-width: 600px) {
  .portfolio-hero {
    height: 50vh;
    min-height: 350px;
  }
  .portfolio-hero-image {
    object-position: center 40%;
  }
}
