/* --- Hero --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8)), 
                url('assets/photo-1724582586529-62622e50c0b3.jpg') center/cover;
    display: flex; align-items: center; padding: 0 10%;
}
.hero-title { font-size: 5.5rem; line-height: 1; font-family: var(--font-heading); }
.hero-subtitle { color: var(--text-muted); max-width: 500px; margin: 25px 0 40px; }
.gold-text { color: var(--accent-gold); font-size: inherit; line-height: 1; font-family: var(--font-heading); }

.btn-primary {
    display: inline-block; padding: 16px 45px;
    text-decoration: none; font-size: 0.8rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    transition: var(--transition-premium);
}
.gold-btn { border: 1px solid var(--accent-gold); color: var(--accent-gold); }
.gold-btn:hover { background: var(--accent-gold); color: black; }
.btn-text { color: white; text-decoration: none; margin-left: 30px; font-size: 0.8rem; }

/* --- Trust Bar --- */
.trust-bar {
    background: var(--bg-light); padding: 20px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden; white-space: nowrap;
}
.marquee { display: inline-block; animation: marquee 35s linear infinite; }
.marquee span { color: var(--accent-gold); font-size: 0.7rem; letter-spacing: 3px; padding-right: 60px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Section 2 --- */
.section-2 {
  margin: 0; padding: 0; box-sizing: border-box;
  display: flex;
  background-color: #0a0a0a; 
  min-height: 80vh; 
  width: 100%;
  position: relative;
  overflow: hidden;
}

.section-2 .left-content {
  width: 50%;
  padding: 8% 5% 8% 8%;
  display: flex; flex-direction: column; justify-content: center;
  z-index: 2;
}

.section-2 .title {
  color: #ffffff;
  font-size: 1.5rem; font-weight: 400; letter-spacing: 1px;
  margin-bottom: 2.5rem; text-transform: uppercase;
}

.section-2 .description {
  color: #a0a0a0; font-size: 1rem; line-height: 1.6;
  margin-bottom: 3.5rem; max-width: 80%;
}

.section-2 .view-btn {
  display: inline-block; background: transparent;
  color: #D4AF37; border: 1px solid #D4AF37;
  padding: 12px 30px; font-size: 0.85rem;
  text-decoration: none; letter-spacing: 1px;
  text-transform: uppercase; width: max-content;
  transition: all 0.3s ease;
}

.section-2 .view-btn:hover { background-color: #D4AF37; color: #0a0a0a; }

.section-2 .right-content { width: 50%; position: relative; display: flex; }
.section-2 .large-bg-img { width: 100%; height: 100%; object-fit: cover; }

.section-2 .small-img-wrapper {
  position: absolute; top: 50%; left: -25%; 
  transform: translateY(-50%); width: 85%; z-index: 3;
}

.section-2 .small-overlay-img {
  width: 100%; height: auto; display: block;
  box-shadow: -15px 15px 30px rgba(0, 0, 0, 0.6); 
  border: 2px solid #222; 
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}

.section-2 .small-overlay-img:hover { transform: scale(1.06); cursor: pointer; }

/* --- Section 3 --- */
.section-3 {
  padding: 80px 0 0 0; 
  background-color: #0a0a0a; color: #ffffff; width: 100%;
}

.section-3 .section-header { text-align: center; margin-bottom: 60px; padding: 0 20px; }

.section-3 .section-header h2 {
  font-size: 2rem; font-weight: 300; letter-spacing: 2px;
  margin-bottom: 15px; text-transform: uppercase;
}

.section-3 .section-header p {
  color: #888888; font-size: 0.95rem; line-height: 1.6;
  max-width: 600px; margin: 0 auto;
}

.section-3 .cards-container {
  display: grid; grid-template-columns: repeat(4, 1fr);
  width: 90%; margin: 0 auto; height: 60vh; min-height: 500px;
}

.section-3 .card {
  position: relative; overflow: hidden; cursor: pointer;
  background-color: #111; border-right: 1px solid #1a1a1a; 
}
.section-3 .card:last-child { border-right: none; }

.section-3 .card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}

.section-3 .card-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75); display: flex; flex-direction: column;
  justify-content: flex-end; padding: 40px 30px; opacity: 0; 
  transition: opacity 0.5s ease;
}

.section-3 .overlay-content {
  transform: translateY(30px); 
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-3 .overlay-content h3 {
  font-size: 1.1rem; font-weight: 400; letter-spacing: 1px;
  margin-bottom: 15px; display: flex; justify-content: space-between;
  align-items: center; padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
}

.section-3 .overlay-content .arrow { font-weight: 300; font-size: 1.2rem; transition: transform 0.3s ease; }
.section-3 .overlay-content p { font-size: 0.85rem; color: #aaaaaa; line-height: 1.5; margin: 0; }

.section-3 .card:hover img { transform: scale(1.08); }
.section-3 .card:hover .card-overlay { opacity: 1; }
.section-3 .card:hover .overlay-content { transform: translateY(0); }
.section-3 .card:hover .arrow { transform: translateX(5px); }

/* --- Instagram Section --- */
.section-instagram { background-color: #0a0a0a; padding: 100px 5%; color: #fff; }
.insta-header { text-align: center; margin-bottom: 60px; }
.insta-header .subtitle { color: #888; font-size: 0.8rem; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 10px; }
.insta-header .insta-title { font-size: 2.2rem; font-weight: 300; letter-spacing: 2px; }

.insta-gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px; gap: 20px; max-width: 1400px; margin: 0 auto;
}

.insta-item { position: relative; overflow: hidden; display: block; background-color: #111; }
.insta-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1); 
}

.item-large { grid-column: span 2; grid-row: span 2; }
.item-tall { grid-row: span 2; }
.item-wide { grid-column: span 2; }

.insta-item:hover img { transform: scale(1.12); }

.insta-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4); display: flex; align-items: center;
  justify-content: center; opacity: 0; transition: opacity 0.4s ease;
}

.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay .icon { font-size: 2rem; color: white; transform: translateY(20px); transition: transform 0.4s ease; }
.insta-item:hover .insta-overlay .icon { transform: translateY(0); }

/* --- Index Responsive Tweaks --- */
@media (max-width: 1200px) {
  .hero-title { font-size: 4.5rem; }
}

@media (max-width: 992px) {
  /* Hero */
  .hero { padding: 0 5%; text-align: center; justify-content: center; }
  .hero-title { font-size: 3.8rem; }
  .hero-subtitle { margin: 25px auto 40px; }
  
  /* Section 2 */
  .section-2 { flex-direction: column; }
  .section-2 .left-content { width: 100%; padding: 10% 5%; align-items: center; text-align: center; }
  .section-2 .description { max-width: 100%; }
  .section-2 .right-content { width: 100%; min-height: 400px; }
  .section-2 .small-img-wrapper { left: 50%; transform: translate(-50%, -50%); width: 70%; }
  
  /* Section 3 */
  .section-3 .cards-container { grid-template-columns: repeat(2, 1fr); height: auto; }
  .section-3 .card { height: 400px; border-bottom: 1px solid #1a1a1a; }
  
  /* Insta */
  .insta-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 300px; }
  .item-large, .item-tall, .item-wide { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 3rem; }
  .hero-btns { display: flex; flex-direction: column; gap: 20px; align-items: center; }
  .btn-text { margin-left: 0; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.5rem; }
  .section-3 .cards-container { grid-template-columns: 1fr; }
  .insta-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 400px; gap: 15px; }
  .section-2 .small-img-wrapper { width: 90%; }
}