.hero {
   position: relative;
   min-height: 100vh;
   display: flex;
   align-items: center;
   background:
      url('../images/textureGaneshJi.jpg') center/cover no-repeat;
   overflow: hidden;
   will-change: transform;
   transform: translateZ(0);
   transition:
      transform 0.15s linear;
}

.hero-overlay {
   position: absolute;
   inset: 0;
   background:
      linear-gradient(to right,
         rgba(0, 0, 0, 0.88),
         rgba(0, 0, 0, 0.45));
}

.hero-content {
   position: relative;
   z-index: 2;
   max-width: 760px;
}

.hero-subtitle {
   letter-spacing: 4px;
   font-size: 14px;
   color: #c9a66b;
   margin-bottom: 22px;
   font-weight: 600;
}

.hero h1 {
   font-family: 'Playfair Display', serif;
   font-size: 82px;
   line-height: 1.05;
   margin-bottom: 28px;
   font-weight: 700;
}

.hero-description {
   font-size: 20px;
   line-height: 1.9;
   color: #ddd;
   max-width: 650px;
   margin-bottom: 40px;
}

.hero-buttons {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
}

.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 16px 34px;
   background: #c9a66b;
   color: #111;
   border-radius: 50px;
   font-weight: 600;
   will-change: transform;
   transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      background 0.25s ease;
}

.btn:hover {
   transform: translateY(-4px);
   box-shadow:
      0 15px 35px rgba(201, 166, 107, 0.22);
}

.btn-outline {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 16px 34px;
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-radius: 50px;
   color: #fff;
   transition: 0.3s;
}

.btn-outline:hover {
   background: #fff;
   color: #111;
}

section {
   padding:
      clamp(90px, 10vw, 140px) 0;
}

.section-title {
   font-family: 'Playfair Display', serif;
   font-size: 48px;
   margin-bottom: 50px;
   text-align: center;
}

.about img {
   border-radius: 20px;
}

.about {
   display: grid;
   grid-template-columns: 420px 1fr;
   gap: 70px;
   align-items: start;
}

.about-image {
   position: sticky;
   top: 120px;
}

.about-image img {
   width: 100%;
   height: auto;
   border-radius: 24px;
   object-fit: cover;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.about-text h3 {
   font-size: 36px;
   margin-bottom: 25px;
   font-family: 'Playfair Display', serif;
   color: #c9a66b;
}

.about-text h4 {
   margin-top: 35px;
   margin-bottom: 18px;
   font-size: 24px;
   color: #fff;
   font-family: 'Playfair Display', serif;
}

.about-text p {
   margin-bottom: 20px;
   color: #ddd;
   font-size: 16px;
   line-height: 1.9;
}

.about-list {
   padding-left: 20px;
   margin-bottom: 25px;
}

.about-list li {
   margin-bottom: 10px;
   color: #ccc;
}

.about-section {
   position: relative;
}

.about-wrapper {
   display: grid;
   grid-template-columns: 420px 1fr;
   gap: 90px;
   align-items: start;
}

.about-content {
   max-width: 760px;
}

.about-label {
   letter-spacing: 4px;
   font-size: 13px;
   color: #c9a66b;
   margin-bottom: 18px;
   font-weight: 600;
}

.about-content h2 {
   font-family: 'Playfair Display', serif;
   font-size: 54px;
   line-height: 1.15;
   margin-bottom: 30px;
}

.about-intro {
   font-size: 20px;
   line-height: 1.9;
   color: #ddd;
   margin-bottom: 40px;
}

.about-highlights {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
   gap: 20px;
   margin-bottom: 45px;
}

.highlight-card {
   background: #1b1b1b;
   padding: 28px;
   border-radius: 22px;
}

.highlight-card h3 {
   color: #c9a66b;
   margin-bottom: 10px;
   font-size: 26px;
}

.highlight-card p {
   color: #ccc;
   font-size: 15px;
   line-height: 1.7;
}

.about-description p {
   margin-bottom: 24px;
   color: #ddd;
   line-height: 1.9;
   font-size: 16px;
}

.gallery-grid {
   margin-top: 50px;
   position: relative;
   z-index: 2;
}

.category-menu {
   display: flex;
   flex-wrap: wrap;
   gap: 15px;
   justify-content: center;
   margin: 70px 0;
}

.category-menu a {
   padding: 12px 22px;
   border: 1px solid #333;
   border-radius: 40px;
   background: #1b1b1b;
   transition: 0.3s;
   font-size: 15px;
}

.category-menu a:hover {
   background: #c9a66b;
   color: #111;
}

.category-section {
   margin-top: 100px;
}

.category-title {
   font-family: 'Playfair Display', serif;
   font-size: 36px;
   margin-bottom: 35px;
}

.commission-modal {
   display: none;
   position: fixed;
   inset: 0;
   z-index: 6000;
   background: rgba(0, 0, 0, 0.92);
   overflow-y: auto;
   -webkit-overflow-scrolling: touch;
   padding: 40px 20px;
}

.commission-modal-box {
   width: min(100%, 760px);
   margin: 40px auto;
   background: #161616;
   max-height: none;
   border-radius: 28px;
   padding: 70px 50px 50px;
   position: relative;
   box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.45);
}

.close-commission {
   position: absolute;
   top: 18px;
   right: 18px;
   width: 48px;
   height: 48px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.08);
   font-size: 28px;
   cursor: pointer;
   z-index: 5;
   transition: 0.3s;
}

.commission-header {
   margin-bottom: 35px;
}

.commission-header h2 {
   font-size: 46px;
   line-height: 1.15;
   margin-bottom: 18px;
   padding-right: 70px;
   font-family: 'Playfair Display', serif;
}

.commission-header p {
   font-size: 14px;
   line-height: 1.8;
}

#commission-form {
   display: flex;
   flex-direction: column;
   gap: 18px;
}

#commission-form input,
#commission-form textarea {
   width: 100%;
   display: block;
   background: #1f1f1f;
   border: none;
   border-radius: 16px;
   padding: 18px;
   color: #fff;
   font-size: 15px;
}

#commission-form textarea {
   min-height: 160px;
   resize: vertical;
}

#commission-status {
   margin-top: 20px;
   color: #c9a66b;
}

.upload-label {
   display: block;
   margin-bottom: 10px;
   color: #c9a66b;
   font-size: 14px;
   font-weight: 600;
}

#commission-form input[type="file"] {
   background: #1f1f1f;
   border-radius: 16px;
   padding: 16px;
   color: #bbb;
   cursor: pointer;
}

#commission-form input[type="file"]::file-selector-button {
   background: #c9a66b;
   color: #111;
   border: none;
   padding: 10px 18px;
   border-radius: 30px;
   cursor: pointer;
   margin-right: 14px;
   font-weight: 600;
}

.commission-section {
   position: relative;
   padding: 120px 0;
}

.commission-grid {
   display: grid;
   grid-template-columns:
      repeat(auto-fit, minmax(240px, 1fr));
   gap: 28px;
   margin-top: 70px;
}

.commission-card {
   position: relative;
   background: #161616;
   border-radius: 28px;
   padding: 38px 30px;
   overflow: hidden;
   transition: 0.4s ease;
   z-index: 2;
   border: 1px solid rgba(255, 255, 255, 0.05);
   box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.24);
}

.commission-card:hover {
   transform: translateY(-8px);
   box-shadow:
      0 24px 50px rgba(0, 0, 0, 0.42);
}

.commission-card::after {
   content: '';
   position: absolute;
   top: 72px;
   right: -28px;
   width: 56px;
   height: 1px;
   background:
      linear-gradient(to right,
         rgba(201, 166, 107, 0.45),
         rgba(201, 166, 107, 0));
   z-index: 1;
}

.commission-card:last-child::after {
   display: none;
}

.commission-number {
   font-size: 64px;
   line-height: 1;
   font-weight: 700;
   color: rgba(201, 166, 107, 0.18);
   margin-bottom: 24px;
   font-family: 'Playfair Display', serif;
}

.commission-card h3 {
   font-size: 28px;
   margin-bottom: 18px;
   line-height: 1.3;
   font-family: 'Playfair Display', serif;
}

.commission-card p {
   color: #bbb;
   line-height: 1.9;
   font-size: 15px;
}

.commission-cta {
   text-align: center;
   margin-top: 80px;
}

.commission-cta h3 {
   font-size: 34px;
   margin-bottom: 28px;
   font-family: 'Playfair Display', serif;
}

.contact-box {
   max-width: 700px;
   margin: auto;
   background: #1a1a1a;
   padding: 40px;
   border-radius: 20px;
}

form {
   display: flex;
   flex-direction: column;
   gap: 20px;
}

input,
textarea {
   padding: 15px;
   border: none;
   border-radius: 10px;
   background: #2a2a2a;
   color: white;
   font-size: 16px;
}

textarea {
   min-height: 150px;
   resize: vertical;
}

.collection-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
   margin-top: 60px;
}

.collection-card {
   position: relative;
   overflow: hidden;
   border-radius: 24px;
   background: #1b1b1b;
   transition: 0.4s ease;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.collection-card img {
   height: 320px;
   object-fit: cover;
   transition: 0.5s ease;
}

.collection-card:hover img {
   transform: scale(1.05);
}

.collection-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.collection-content {
   padding: 26px;
}

.collection-content h3 {
   font-size: 28px;
   margin-bottom: 14px;
   font-family: 'Playfair Display', serif;
}

.collection-content p {
   color: #bbb;
   line-height: 1.8;
   margin-bottom: 20px;
   font-size: 15px;
}

.collection-content span {
   color: #c9a66b;
   font-weight: 600;
   font-size: 15px;
}

@media (max-width:768px) {
   .hero {
      padding-top: 120px;
   }

   .hero h1 {
      font-size: 48px;
      line-height: 1.15;
   }

   .hero-description {
      font-size: 16px;
      line-height: 1.8;
   }

   .hero-buttons {
      flex-direction: column;
      align-items: flex-start;
   }

   .hero-subtitle {
      letter-spacing: 2px;
      font-size: 12px;
   }

   .gallery-grid {
      display: flex;
      overflow-x: auto;
      gap: 16px;
      padding:
         10px 8px 20px 4px;
      scroll-snap-type: x proximity;
      -webkit-overflow-scrolling: touch;
   }

   .gallery-grid::-webkit-scrollbar {
      display: none;
   }

   .commission-modal {
      padding: 14px;
   }

   .commission-modal-box {
      width: 100%;
      margin: 0 auto;
      border-radius: 24px;
      padding: 72px 18px 24px;
   }

   .commission-header h2 {
      font-size: 30px;
      line-height: 1.2;
      padding-right: 45px;
   }

   .art-card {
      min-width: 72vw;
      max-width: 72vw;
      flex-shrink: 0;
      scroll-snap-align: start;
   }

   .collection-grid {
      display: flex;
      overflow-x: auto;
      gap: 14px;
      padding:
         10px 8px 20px 0;
      scroll-snap-type: x proximity;
      -webkit-overflow-scrolling: touch;
   }

   .collection-grid::-webkit-scrollbar {
      display: none;
   }

   .collection-card {
      min-width: 68vw;
      max-width: 68vw;
      flex-shrink: 0;
      scroll-snap-align: start;
   }

   .collection-card img {
      height: 200px;
   }

   .collection-content {
      padding: 20px;
   }

   .collection-content h3 {
      font-size: 24px;
   }

   .collection-content p {
      font-size: 14px;
      line-height: 1.7;
   }

   .section-title {
      font-size: 40px;
   }

   .section-description {
      font-size: 15px;
   }

   .art-content h3 {
      font-size: 30px;
      margin-bottom: 14px;
      font-family: 'Playfair Display', serif;
      color: #fff;
   }

   .art-content p {
      color: #bbb;
      line-height: 1.8;
      margin-bottom: 10px;
      font-size: 15px;
   }

   .commission-grid {
      display: flex;
      overflow-x: auto;
      gap: 18px;
      padding:
         10px 8px 20px 4px;
      scroll-snap-type: x proximity;
      -webkit-overflow-scrolling: touch;
   }

   .commission-grid::-webkit-scrollbar {
      display: none;
   }

   .commission-card {
      min-width: 72vw;
      max-width: 72vw;
      flex-shrink: 0;
      scroll-snap-align: start;
      padding: 30px 24px;
   }

   .commission-number {
      font-size: 52px;
      margin-bottom: 18px;
   }

   .commission-card h3 {
      font-size: 24px;
      margin-bottom: 14px;
   }

   .commission-card p {
      font-size: 14px;
      line-height: 1.8;
   }

   .commission-cta {
      margin-top: 60px;
   }

   .commission-cta h3 {
      font-size: 28px;
      line-height: 1.4;
   }

   .section-heading {
      text-align: center;
      max-width: 900px;
      margin: 0 auto 90px;
      position: relative;
      z-index: 5;
   }

   .section-label {
      letter-spacing: 4px;
      font-size: 13px;
      color: #c9a66b;
      margin-bottom: 18px;
      font-weight: 600;
   }

   .section-description {
      max-width: 700px;
      margin: 25px auto 0;
      color: #bbb;
      line-height: 1.9;
      font-size: 17px;
   }

   .about-wrapper {
      grid-template-columns: 1fr;
      gap: 50px;
   }

   .about-image {
      position: relative;
      top: 0;
   }

   .about-image img {
      max-width: 450px;
      margin: auto;
   }

   .about-content h2 {
      font-size: 38px;
   }

   .about-intro {
      font-size: 17px;
   }

   .about-highlights {
      grid-template-columns: 1fr;
   }
}