
    /* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Didot', 'Baskerville', 'Times New Roman', serif;
      color: #1a1a1a;
      background-color: #fff;
      line-height: 1.6;
      overflow-x: hidden;
    }
    
    /* Typography */
    h1, h2, h3, h4 {
      font-weight: 300;
      letter-spacing: 1.5px;
    }
    
    /* Luxury accents */
    .gold-text {
      color: #c8a165;
    }
    
    /* Layout */
    .container {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
      box-sizing: border-box;
    }
    
    .section-padding {
      padding: 80px 0;
    }
    
    .section-title {
      font-size: 36px;
      margin-bottom: 15px;
      font-weight: 300;
      text-align: center;
      letter-spacing: 2px;
    }
    
    .section-subtitle {
      font-size: 16px;
      color: #777;
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px;
      line-height: 1.8;
    }
    
    /* Flexbox and Grid layouts */
    .flex-row {
      display: flex;
      flex-wrap: wrap;
    }
    
    .flex-center {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .flex-between {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    /* Responsive image */
    .responsive-img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    
    /* Hide on mobile */
    .hide-on-mobile {
      display: block;
    }
    
    /* Hide on desktop */
    .hide-on-desktop {
      display: none;
    }
    
    /* Navigation */
    .top-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 60px;
      border-bottom: 1px solid #f0f0f0;
      background-color: #fff;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: all 0.4s ease;
    }
    
    .nav-scrolled {
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      padding: 15px 60px;
    }
    
    .logo {
      font-size: 28px;
      text-transform: uppercase;
      letter-spacing: 6px;
      color: #000;
      text-decoration: none;
      font-weight: 300;
      transition: color 0.3s ease;
    }
    
    .logo:hover {
      color: #c8a165;
    }
    
    .nav-links {
      display: flex;
      gap: 40px;
    }
    
    .nav-links a {
      text-decoration: none;
      color: #333;
      text-transform: uppercase;
      font-size: 14px;
      letter-spacing: 2px;
      transition: all 0.3s;
      position: relative;
      padding: 5px 0;
    }
    
    .nav-links a:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background-color: #c8a165;
      transition: width 0.3s ease;
    }
    
    .nav-links a:hover {
      color: #c8a165;
    }
    
    .nav-links a:hover:after {
      width: 100%;
    }
    
    
    /* Mobile menu */
    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      color: #333;
      cursor: pointer;
      transition: color 0.3s ease;
      z-index: 1002;
    }
    
    .mobile-menu-toggle:hover {
      color: #c8a165;
    }
    
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #fff;
      z-index: 1001;
      padding: 60px 40px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
      overflow-y: auto;
    }
    
    .mobile-menu.active {
      transform: translateX(0);
    }
    
    .mobile-menu-close {
      position: absolute;
      top: 30px;
      right: 30px;
      background: none;
      border: none;
      font-size: 24px;
      color: #333;
      cursor: pointer;
      transition: color 0.3s ease;
    }
    
    .mobile-menu-close:hover {
      color: #c8a165;
    }
    
    .mobile-menu-links {
      display: flex;
      flex-direction: column;
      gap: 30px;
      text-align: center;
      width: 100%;
    }
    
    .mobile-menu-links a {
      text-decoration: none;
      color: #333;
      text-transform: uppercase;
      font-size: 18px;
      letter-spacing: 2px;
      transition: color 0.3s, transform 0.3s;
      padding: 10px 0;
      position: relative;
    }
    
    .mobile-menu-links a:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 1px;
      background-color: #c8a165;
      transition: width 0.3s ease;
    }
    
    .mobile-menu-links a:hover {
      color: #c8a165;
      transform: translateY(-3px);
    }
    
    .mobile-menu-links a:hover:after {
      width: 30%;
    }
    
    .mobile-menu-footer {
      margin-top: 40px;
      text-align: center;
    }
    
    .mobile-social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }
    
    .mobile-social-links a {
      color: #333;
      font-size: 20px;
      transition: color 0.3s, transform 0.3s;
    }
    
    .mobile-social-links a:hover {
      color: #c8a165;
      transform: translateY(-3px);
    }
    
    body.menu-open {
      overflow: hidden;
    }
    
    /* Page content container */
    #page-content {
      margin-top: 80px;
      min-height: calc(100vh - 80px - 400px); /* Accounting for nav and footer */
      opacity: 1;
      transition: opacity 0.4s ease;
    }
    
    .page-transition {
      opacity: 0;
    }
    
    /* Hero section */
    .hero {
      height: 85vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      background-color: #f8f8f8;
      position: relative;
      overflow: hidden;
      margin-bottom: 60px;
    }
    
    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      background-color: rgba(0, 0, 0, 0.2);
    }
    
    .hero-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.05);
      transition: transform 10s ease;
    }
    
    .hero:hover .hero-img {
      transform: scale(1);
    }
    
    .hero-content {
      max-width: 800px;
      padding: 0 20px;
      position: relative;
      z-index: 2;
      color: #fff;
    }
    
    .hero h1, .hero h2 {
      font-size: 54px;
      margin-bottom: 30px;
      letter-spacing: 3px;
      line-height: 1.2;
    }
    
    .hero p {
      font-size: 18px;
      margin-bottom: 50px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.8;
    }
    
    .cta-button {
      display: inline-block;
      padding: 16px 40px;
      background-color: transparent;
      color: #fff;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 3px;
      font-size: 14px;
      transition: all 0.3s;
      border: 1px solid #fff;
      position: relative;
      overflow: hidden;
    }
    
    .cta-button:hover {
      background-color: #fff;
      color: #000;
    }
    
    .cta-button.dark {
      color: #000;
      border: 1px solid #000;
    }
    
    .cta-button.dark:hover {
      background-color: #000;
      color: #fff;
    }
    
    .cta-button.gold {
      color: #c8a165;
      border: 1px solid #c8a165;
    }
    
    .cta-button.gold:hover {
      background-color: #c8a165;
      color: #fff;
    }
    
    /* Collections section */
    .collections {
      padding: 60px 0;
      text-align: center;
    }
    
    .collection-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      margin-bottom: 50px;
    }
    
    /* Make collection items clickable */
    .collection-item {
      position: relative;
      overflow: hidden;
      height: 450px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    
    .collection-item:hover {
      transform: translateY(-5px);
    }
    
    .collection-item img, .collection-item svg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }
    
    .collection-item:hover img, .collection-item:hover svg {
      transform: scale(1.08);
    }
    
    .collection-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 30px 20px;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
      color: #fff;
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.5s ease;
    }
    
    .collection-item:hover .collection-overlay {
      transform: translateY(0);
      opacity: 1;
    }
    
    /* Make collection descriptions always visible on mobile */
    @media (max-width: 992px) {
      .collection-overlay {
        transform: translateY(0);
        opacity: 1;
        padding: 20px 15px;
      }
      
      .collection-title {
        font-size: 20px;
        margin-bottom: 8px;
      }
      
      .collection-desc {
        font-size: 13px;
        margin-bottom: 10px;
      }
      
      .collection-item {
        position: relative;
      }
      
      .collection-item:active {
        transform: scale(0.98);
      }
      
      .collection-item::after {
        content: '';
        position: absolute;
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        background-color: rgba(255,255,255,0.2);
        border-radius: 50%;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 16px 16px;
        transition: all 0.3s ease;
      }
      
      .collection-item:active::after {
        background-color: rgba(255,255,255,0.4);
      }
    }
    
    .collection-title {
      font-size: 24px;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }
    
    .collection-desc {
      font-size: 14px;
      letter-spacing: 1px;
      margin-bottom: 15px;
    }
    
    .collection-link {
      color: #c8a165;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-decoration: none;
      position: relative;
      padding-bottom: 2px;
    }
    
    .collection-link:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: #c8a165;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.3s ease;
    }
    
    .collection-link:hover:after {
      transform: scaleX(1);
      transform-origin: left;
    }
    
    /* Craftsmanship section */
    .craftsmanship {
      display: flex;
      padding: 70px 0;
      background-color: #f9f9f9;
    }
    
    .craft-content {
      flex: 1;
      padding: 0 70px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .craft-image {
      flex: 1;
      height: 600px;
      position: relative;
      overflow: hidden;
    }
    
    .craft-image img, .craft-image svg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }
    
    .craft-image:hover img, .craft-image:hover svg {
      transform: scale(1.05);
    }
    
    .craft-content h2 {
      font-size: 36px;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 20px;
    }
    
    .craft-content h2:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 1px;
      background-color: #c8a165;
    }
    
    .craft-content p {
      margin-bottom: 30px;
      font-size: 16px;
      line-height: 1.9;
      color: #333;
    }
    
    /* Responsive adjustments for craftsmanship section */
    @media (max-width: 992px) {
      .craftsmanship {
        flex-direction: column-reverse;
      }
      
      .craft-content {
        padding: 50px 40px;
      }
      
      .craft-image {
        width: 100%;
        height: 450px;
      }
    }
    
    @media (max-width: 768px) {
      .craft-content {
        padding: 40px 20px;
      }
      
      .craft-image {
        height: 350px;
      }
      
      .craft-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
      }
    }
    
    @media (max-width: 480px) {
      .craft-content {
        padding: 30px 20px;
      }
      
      .craft-image {
        height: 280px;
      }
    }
    
    /* Materials section */
    .materials {
      padding: 70px 0;
      text-align: center;
    }
    
    .materials-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      margin-top: 40px;
    }
    
    .material-item {
      text-align: center;
      padding: 30px 15px;
      transition: all 0.3s ease;
    }
    
    .material-item:hover {
      transform: translateY(-10px);
    }
    
    .material-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      background-color: #f5f5f5;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #c8a165;
      font-size: 32px;
    }
    
    .material-title {
      font-size: 18px;
      margin-bottom: 15px;
      letter-spacing: 1px;
    }
    
    .material-desc {
      font-size: 14px;
      color: #666;
      line-height: 1.7;
    }
    
    /* Responsive adjustments for materials grid */
    @media (max-width: 1200px) {
      .materials-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 576px) {
      .materials-grid {
        grid-template-columns: 1fr;
      }
    }
    
    /* Projects section */
    .projects {
      padding: 120px 0;
      background-color: #f9f9f9;
    }
    
    .project-slider {
      margin-top: 60px;
      position: relative;
      height: 600px;
      overflow: hidden;
    }
    
    .project-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.8s ease;
      display: flex;
    }
    
    .project-slide.active {
      opacity: 1;
    }
    
    .project-image {
      flex: 1.5;
      height: 100%;
      overflow: hidden;
    }
    
    .project-image img, .project-image svg {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .project-info {
      flex: 1;
      padding: 60px;
      background-color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .project-title {
      font-size: 32px;
      margin-bottom: 20px;
    }
    
    .project-location {
      font-size: 16px;
      color: #c8a165;
      margin-bottom: 30px;
      letter-spacing: 1px;
    }
    
    .project-desc {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 40px;
      color: #333;
    }
    
    .project-nav {
      display: flex;
      justify-content: space-between;
      margin-top: 30px;
    }
    
    .project-nav-btn {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #333;
      transition: color 0.3s ease;
    }
    
    .project-nav-btn:hover {
      color: #c8a165;
    }
    
    /* Testimonials section */
    .testimonials {
      padding: 80px 0;
      text-align: center;
      background-color: #f9f9f9;
      overflow: visible;
    }
    
    /* Testimonial craftsmanship layout (only on home page) */
    .testimonial-craftsmanship {
      display: flex;
      max-width: 1400px;
      margin: 30px 0 0 auto;
      text-align: left;
      position: relative;
    }
    
    .testimonial-image {
      width: 50vw;
      height: 500px;
      position: relative;
      overflow: hidden;
      padding: 0;
      margin: 0;
      border-radius: 0;
      margin-left: calc(-1 * ((100vw - 1400px) / 2));
    }
    
    .testimonial-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease, opacity 0.5s ease;
    }
    
    .testimonial-content-area {
      flex: 1;
      padding: 0 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 700px;
    }
    
    /* Original testimonial slider */
    .testimonial-slider {
      position: relative;
      margin: 40px auto 0;
    }
    
    .testimonial-slide {
      padding: 20px;
      display: none;
    }
    
    .testimonial-slide.active {
      display: block;
    }
    
    .testimonial-content {
      font-size: 18px;
      line-height: 1.8;
      font-style: italic;
      margin-bottom: 20px;
    }
    
    .testimonial-author {
      font-size: 16px;
      color: #c8a165;
    }
    
    .testimonial-nav {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 30px;
    }
    
    .testimonial-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #ddd;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    
    .testimonial-dot.active {
      background-color: #c8a165;
    }
    
    /* Responsive adjustments for testimonial-craftsmanship */
    @media (max-width: 1400px) {
      .testimonial-image {
        margin-left: 0;
      }
      
      .testimonial-craftsmanship {
        margin-left: 0;
      }
    }
    
    @media (max-width: 992px) {
      .testimonial-craftsmanship {
        flex-direction: column;
        margin: 30px auto 0;
        gap: 0;
      }
      
      .testimonial-image {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        height: 400px;
      }
      
      .testimonial-content-area {
        padding: 30px 20px 0;
        max-width: 100%;
        margin: 0 auto;
      }
    }
    
    /* Keeping original split layout for future use if needed */
    .testimonial-split-layout {
      display: flex;
      gap: 50px;
      max-width: 1200px;
      margin: 60px auto 0;
      text-align: left;
    }
    
    /* Contact section */
    .contact {
      padding: 120px 0;
      text-align: center;
    }
    
    .contact-form {
      max-width: 800px;
      margin: 60px auto 0;
      text-align: left;
    }
    
    .form-group {
      margin-bottom: 30px;
    }
    
    .form-label {
      display: block;
      margin-bottom: 10px;
      font-size: 14px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    
    .form-input, .form-textarea {
      width: 100%;
      padding: 15px;
      font-family: inherit;
      font-size: 16px;
      border: none;
      border-bottom: 1px solid #ddd;
      background-color: transparent;
      transition: border-color 0.3s;
    }
    
    .form-input:focus, .form-textarea:focus {
      outline: none;
      border-color: #c8a165;
    }
    
    .form-textarea {
      height: 150px;
      resize: none;
    }
    
    .form-submit {
      display: inline-block;
      padding: 16px 40px;
      background-color: transparent;
      color: #000;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 3px;
      font-size: 14px;
      transition: all 0.3s;
      border: 1px solid #000;
      cursor: pointer;
      font-family: inherit;
      margin-top: 20px;
    }
    
    .form-submit:hover {
      background-color: #000;
      color: #fff;
    }
    
    /* Footer */
    .footer {
      padding: 100px 60px 40px;
      background-color: #111;
      color: #fff;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 60px;
      margin-bottom: 80px;
    }
    
    .footer-column h3 {
      font-size: 16px;
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #c8a165;
      position: relative;
      padding-bottom: 15px;
    }
    
    .footer-column h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 30px;
      height: 1px;
      background-color: #c8a165;
    }
    
    .footer-column ul {
      list-style: none;
    }
    
    .footer-column ul li {
      margin-bottom: 15px;
    }
    
    .footer-column a {
      color: #aaa;
      text-decoration: none;
      transition: color 0.3s;
      font-size: 14px;
    }
    
    .footer-column a:hover {
      color: #fff;
    }
    
    .footer-logo {
      width: 100%;
      max-width: 100px;
      display: block;
      margin-bottom: 15px;
    }
    
    .footer-logo svg {
      width: 100%;
      height: auto;
    }
    
    .footer-address {
      font-style: normal;
      margin-bottom: 30px;
      line-height: 1.8;
      color: #aaa;
      font-size: 14px;
      display: block;
    }
    
    /* Create a container for logo and address */
    .logo-address-container {
      display: block;
      margin-bottom: 20px;
    }
    
    .social-links {
      display: flex;
      gap: 20px;
    }
    
    .social-links a {
      color: #aaa;
      transition: color 0.3s;
    }
    
    .social-links a:hover {
      color: #c8a165;
    }
    
    .copyright {
      text-align: center;
      padding-top: 40px;
      border-top: 1px solid #333;
      color: #aaa;
      font-size: 12px;
      letter-spacing: 1px;
    }
    
    /* Pages */
    .page {
      display: none;
    }
    
    .page.active {
      display: block;
    }
    
    /* Animation classes */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    
    @media (max-width: 768px) {
      .custom-cursor {
        display: none;
      }
    }
    
    /* New gallery section */
    .gallery {
      padding: 80px 0;
      background-color: #fff;
    }
    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    
    .gallery-item {
      position: relative;
      overflow: hidden;
      height: 300px;
      cursor: pointer;
      border-radius: 4px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    
    .gallery-item:hover img {
      transform: scale(1.1);
    }
    
    /* Aspect ratio containers for responsive elements */
    .aspect-ratio-container {
      position: relative;
      width: 100%;
      height: 0;
      overflow: hidden;
    }
    
    .aspect-ratio-16-9 {
      padding-top: 56.25%; /* 16:9 Aspect Ratio */
    }
    
    .aspect-ratio-4-3 {
      padding-top: 75%; /* 4:3 Aspect Ratio */
    }
    
    .aspect-ratio-1-1 {
      padding-top: 100%; /* 1:1 Aspect Ratio (Square) */
    }
    
    .aspect-ratio-content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    /* Collection Grid */
    .collection-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      margin-bottom: 50px;
    }
    
    .collection-item {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background-color: #fff;
    }
    
    .collection-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    }
    
    .collection-image {
      position: relative;
      height: 0;
      padding-top: 75%; /* 4:3 Aspect Ratio */
      overflow: hidden;
    }
    
    .collection-image img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    
    .collection-item:hover .collection-image img {
      transform: scale(1.1);
    }
    
    .collection-info {
      padding: 25px;
    }
    
    .collection-title {
      font-size: 20px;
      margin-bottom: 10px;
      font-weight: 400;
      letter-spacing: 1px;
    }
    
    .collection-description {
      font-size: 14px;
      color: #666;
      margin-bottom: 20px;
      line-height: 1.6;
    }
    
    /* Lightbox */
    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    
    .lightbox.active {
      opacity: 1;
      pointer-events: auto;
    }
    
    .lightbox-content {
      position: relative;
      max-width: 90%;
      max-height: 90vh;
    }
    
    .lightbox-img {
      max-width: 100%;
      max-height: 90vh;
      object-fit: contain;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }
    
    .lightbox-close {
      position: absolute;
      top: -40px;
      right: 0;
      font-size: 28px;
      color: #fff;
      background: none;
      border: none;
      cursor: pointer;
      transition: color 0.3s;
    }
    
    .lightbox-close:hover {
      color: #c8a165;
    }
    
    .lightbox-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 20px;
    }
    
    .lightbox-btn {
      background: none;
      border: none;
      font-size: 30px;
      color: #fff;
      cursor: pointer;
      transition: color 0.3s;
      opacity: 0.7;
    }
    
    .lightbox-btn:hover {
      color: #c8a165;
      opacity: 1;
    }
    
    /* Newsletter section */
    .newsletter {
      padding: 80px 0;
      background-color: #f5f5f5;
      text-align: center;
    }
    
    .newsletter-form {
      max-width: 600px;
      margin: 40px auto 0;
      display: flex;
    }
    
    .newsletter-input {
      flex: 1;
      padding: 15px;
      font-family: inherit;
      font-size: 16px;
      border: 1px solid #ddd;
      border-right: none;
    }
    
    .newsletter-input:focus {
      outline: none;
      border-color: #c8a165;
    }
    
    .newsletter-submit {
      padding: 15px 30px;
      background-color: #c8a165;
      color: #fff;
      border: 1px solid #c8a165;
      font-family: inherit;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      cursor: pointer;
      transition: all 0.3s;
    }
    
    .newsletter-submit:hover {
      background-color: #b89154;
    }
    
    /* Mobile responsiveness */
    @media (max-width: 1200px) {
      .collection-grid, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .container {
        padding: 0 30px;
      }
      
      .hero h1, .hero h2 {
        font-size: 48px;
      }
      
      /* Tablet footer adjustments */
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
      }
    }
    
    @media (max-width: 992px) {
      .top-nav {
        padding: 20px 30px;
      }
      
      .nav-scrolled {
        padding: 15px 30px;
      }
      
      .project-slide {
        flex-direction: column;
      }
      
      .project-image, .project-info {
        width: 100%;
      }
      
      .project-info {
        padding: 40px;
      }
      
      .testimonial-content {
        padding: 40px;
      }
      
      .product-detail-header {
        height: 350px;
      }
    }
    
    @media (max-width: 768px) {
      .top-nav {
        padding: 20px;
      }
      
      .nav-scrolled {
        padding: 15px;
      }
      
      .nav-links {
        display: none !important;
      }
    
      .mobile-menu-toggle {
        display: block;
      }
    
      .mobile-menu {
        display: flex;
      }
      
      .hero h1, .hero h2 {
        font-size: 36px;
      }
    
      .hero p {
        font-size: 16px;
        max-width: 100%;
      }
      
      /* Only apply 1 column to collection grid and gallery grid, not materials grid */
      [style*="grid-template-columns"]:not(.materials-grid), .collection-grid, .gallery-grid {
        grid-template-columns: repeat(1, 1fr) !important;
      }
      
      .project-info {
        padding: 30px;
      }
      
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }
      
      .footer-column h3:after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .social-links {
        justify-content: center;
      }
      
      .social-links a {
        font-size: 18px;
        padding: 8px;
      }
      
      .footer-address {
        margin-left: 0;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
      }
      
      .footer {
        padding: 60px 20px 30px;
      }
      
      .copyright {
        padding-top: 30px;
        margin-top: 30px;
      }
    
      .newsletter-form {
        flex-direction: column;
      }
    
      .newsletter-input {
        border-right: 1px solid #ddd;
        border-bottom: none;
        margin-bottom: 10px;
      }
      
      .product-detail-body {
        grid-template-columns: 1fr;
        padding: 30px;
      }
      
      .product-detail-header-content {
        padding: 30px;
      }
      
      .product-detail-title {
        font-size: 28px;
      }
      
      .product-detail-specs {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 30px;
      }
      
      .section-title {
        font-size: 28px;
      }
      
      .section-subtitle {
        font-size: 14px;
      }
      
      .gallery-item {
        height: 250px;
      }
      
      .feature-box {
        padding: 30px;
      }
      
      .logo-address-container {
        text-align: center;
      }
      
      .footer-logo {
        margin-left: auto;
        margin-right: auto;
      }
    }
    
    @media (max-width: 480px) {
      .container {
        padding: 0 20px;
      }
      
      .hero h1, .hero h2 {
        font-size: 30px;
      }
      
      .hero-content {
        padding: 60px 0;
      }
      
      .section-padding {
        padding: 60px 0;
      }
      
      .gallery-item {
        height: 200px;
      }
      
      .product-detail-header {
        height: 250px;
      }
      
      .product-detail-header-content {
        padding: 20px;
      }
      
      .product-detail-title {
        font-size: 24px;
      }
      
      .product-detail-body {
        padding: 20px;
      }
      
      .product-detail-gallery {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .btn {
        padding: 12px 20px;
        font-size: 13px;
      }
      
      .mobile-menu-links a {
        font-size: 18px;
        margin-bottom: 20px;
      }
      
      /* Footer responsive design for very small screens */
      .footer {
        padding: 50px 15px 20px;
      }
      
      .footer-column ul li {
        margin-bottom: 12px;
      }
      
      .footer-grid {
        gap: 30px;
        margin-bottom: 40px;
      }
      
      .footer-column h3 {
        margin-bottom: 20px;
      }
      
      .copyright p {
        font-size: 11px;
      }
    }
    
    /* Product Detail Popup */
    .product-detail {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2000;
      background-color: rgba(0, 0, 0, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    
    .product-detail.active {
      opacity: 1;
      pointer-events: auto;
    }
    
    .product-detail-content {
      background-color: #fff;
      width: 90%;
      max-width: 1200px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      display: flex;
      flex-direction: column;
    }
    
    .product-detail-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      color: #333;
      font-size: 24px;
      cursor: pointer;
      z-index: 10;
    }
    
    .product-detail-header {
      position: relative;
      height: 400px;
      overflow: hidden;
    }
    
    .product-detail-header img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .product-detail-header-content {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 40px;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
      color: #fff;
    }
    
    .product-detail-title {
      font-size: 36px;
      margin-bottom: 10px;
    }
    
    .product-detail-subtitle {
      font-size: 18px;
      color: #c8a165;
    }
    
    .product-detail-body {
      padding: 40px;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
    }
    
    .product-detail-description {
      font-size: 16px;
      line-height: 1.8;
      color: #333;
    }
    
    .product-detail-description p {
      margin-bottom: 20px;
    }
    
    .product-detail-specs {
      border-left: 1px solid #eee;
      padding-left: 40px;
    }
    
    .product-detail-spec-item {
      margin-bottom: 30px;
    }
    
    .product-detail-spec-title {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 10px;
      color: #c8a165;
    }
    
    .product-detail-spec-value {
      font-size: 15px;
      color: #666;
    }
    
    .product-detail-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
      margin-top: 30px;
    }
    
    .product-detail-gallery-item {
      height: 150px;
      overflow: hidden;
    }
    
    .product-detail-gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    
    .product-detail-gallery-item:hover img {
      transform: scale(1.05);
    }
    
    .product-detail-cta {
      margin-top: 40px;
      text-align: center;
    }
    
    @media (max-width: 768px) {
      
      .product-detail-body {
        grid-template-columns: 1fr;
      }
      
      .product-detail-specs {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 30px;
      }
    }
    
    /* Blog styles */
    .blog {
      padding: 80px 0;
      background-color: #fff;
    }
    
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
      margin-top: 60px;
    }
    
    .blog-post {
      margin-bottom: 40px;
    }
    
    .blog-post-image {
      height: 300px;
      overflow: hidden;
      margin-bottom: 20px;
    }
    
    .blog-post-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .blog-post:hover .blog-post-image img {
      transform: scale(1.05);
    }
    
    .blog-post-title {
      font-size: 24px;
      margin-bottom: 10px;
    }
    
    .blog-post-meta {
      color: #888;
      font-size: 14px;
      margin-bottom: 15px;
    }
    
    .blog-post-excerpt {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 20px;
      color: #333;
    }
    
    .blog-sidebar {
      margin-top: 60px;
    }
    
    .blog-sidebar-section {
      margin-bottom: 40px;
    }
    
    .blog-sidebar-title {
      font-size: 20px;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .blog-sidebar-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 2px;
      background-color: #c8a165;
    }
    
    .blog-categories,
    .blog-archive {
      list-style: none;
    }
    
    .blog-categories li,
    .blog-archive li {
      margin-bottom: 10px;
    }
    
    .blog-categories a,
    .blog-archive a {
      text-decoration: none;
      color: #333;
      transition: color 0.3s;
    }
    
    .blog-categories a:hover,
    .blog-archive a:hover {
      color: #c8a165;
    }
    
    @media (max-width: 768px) {
      .blog-grid {
        grid-template-columns: 1fr;
      }
    }
    
    /* Parallax caption */
    .parallax-caption {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      transform: translateY(-50%);
      text-align: center;
      color: #fff;
    }
    
    /* FAQ Styles */
    .faq-section {
      padding: 80px 0;
      background-color: #fff;
    }
    
    .faq-container {
      margin-top: 50px;
    }
    
    .faq-item {
      border-bottom: 1px solid #e5e5e5;
      margin-bottom: 20px;
    }
    
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .faq-question h3 {
      font-size: 18px;
      font-weight: 400;
      letter-spacing: 1px;
      margin: 0;
      transition: color 0.3s ease;
    }
    
    .faq-question:hover h3 {
      color: #c8a165;
    }
    
    .faq-icon {
      color: #c8a165;
      font-size: 16px;
      transition: transform 0.3s ease;
    }
    
    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }
    
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease, padding 0.5s ease;
      padding: 0 0 0 0;
    }
    
    .faq-item.active .faq-answer {
      max-height: 1000px;
      padding: 0 0 20px 0;
    }
    
    .faq-answer p {
      color: #666;
      line-height: 1.8;
      margin: 0;
    }
    
    .cta-section {
      margin-top: 60px;
      text-align: center;
      padding: 40px;
      background-color: #f9f9f9;
      border-radius: 4px;
    }
    
    .cta-section h3 {
      font-size: 24px;
      margin-bottom: 15px;
      color: #333;
    }
    
    .cta-section p {
      margin-bottom: 25px;
      color: #666;
    }
    
    @media (max-width: 768px) {
      .faq-question h3 {
        font-size: 16px;
      }
      
      .faq-section {
        padding: 50px 0;
      }
      
      .cta-section {
        padding: 30px 20px;
      }
    }
