:root {
  --black: #0c0c0b;
  --gold: #D4AF37;
  --gold-soft: #e9cf85;
  --rose: #B76E79;
  --ivory: #FAF8F5;
  --beige: #F3ECE5;
  --charcoal: #2c2826;
  --charcoal-soft: #615a56;
  --glass: rgba(250, 248, 245, 0.85);
  --hair-serif: 'Playfair Display', serif;
  --hair-italic: 'Cormorant Garamond', serif;
  --body: 'Inter', sans-serif;
  --ui: 'Manrope', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--hair-serif); font-weight: 500; letter-spacing: 0.01em; margin: 0; }
.serif-italic { font-family: var(--hair-italic); font-style: italic; font-weight: 400; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
@media(max-width: 768px) { .container { padding: 0 24px; } }

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    font-weight: 600;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%; /* Agar logo circular nahi chahiye to hata do */
    flex-shrink: 0;
}
/* ---------- Custom UI Eyebrow ---------- */
.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.eyebrow span { font-family: var(--ui); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--rose); font-weight: 600; }
.sig-mark { width: 46px; height: 16px; flex-shrink: 0; }
.sig-mark path { stroke: var(--gold); stroke-width: 1.6; fill: none; stroke-dasharray: 120; stroke-dashoffset: 120; animation: draw 1.4s ease forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- 2026 Smooth Scroll Animation Infrastructure ---------- */
.reveal {
  opacity: 0;
  will-change: transform, opacity;
}

/* Custom Animation Classes Configured to Fire via JS Intersection Observer */
.reveal.animate-fade-in.in {
  animation: smoothFadeIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.reveal.animate-slide-up.in {
  animation: smoothSlideUp 1.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.reveal.animate-scale-up.in {
  animation: smoothScaleUp 1.3s cubic-bezier(0.21, 1.02, 0.33, 1) forwards;
}

.reveal-delay-1 { animation-delay: 0.15s !important; }
.reveal-delay-2 { animation-delay: 0.3s !important; }

@keyframes smoothFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes smoothSlideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes smoothScaleUp {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Parallax Frame Logic ---------- */
.parallax-wrapper { overflow: hidden; position: relative; border-radius: 4px; background: #131211; }
.parallax-bg { width: 100%; height: 135%; position: absolute; top: -17.5%; left: 0; object-fit: cover; transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1); filter: brightness(0.92); }

/* ---------- Header Navigation Links ---------- */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 28px 0; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
#nav.solid { background: var(--glass); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); padding: 16px 0; box-shadow: 0 4px 40px rgba(0,0,0,0.02); border-bottom: 1px solid rgba(18,18,18,0.04); }
#nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--hair-serif); font-size: 24px; letter-spacing: 0.08em; color: var(--ivory); transition: color 0.4s; }
.logo .dot { color: var(--gold); }
#nav.solid .logo { color: var(--black); }
.navlink { font-family: var(--ui); font-size: 13px; letter-spacing: 0.08em; color: var(--ivory); text-transform: uppercase; position: relative; padding-bottom: 4px; transition: color 0.4s; }
#nav.solid .navlink { color: var(--charcoal); }
.navlink::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.35s; }
.navlink:hover::after { width: 100%; }
.navlinks { display: flex; gap: 34px; align-items: center; }
@media(max-width: 1120px) { .navlinks { display: none; } }

.btn-nav-book { background: transparent; color: var(--ivory) !important; font-family: var(--ui); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; padding: 12px 28px; border-radius: 999px; border: 1px solid var(--gold); transition: all 0.4s; }
#nav.solid .btn-nav-book { background: var(--black); color: var(--ivory) !important; border-color: var(--black); }
.btn-nav-book:hover { background: var(--gold) !important; color: var(--black) !important; border-color: var(--gold); }

.menu-btn { display: none; background: none; border: none; cursor: pointer; }
@media(max-width: 1120px) { .menu-btn { display: block; } }
.menu-btn span { display: block; width: 26px; height: 1px; background: #fff; margin: 6px 0; transition: background 0.4s; }
#nav.solid .menu-btn span { background: var(--black); }

#mobile-menu { position: fixed; inset: 0; background: var(--black); z-index: 200; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; transform: translateY(-100%); transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1); }
#mobile-menu.open { transform: translateY(0); }
#mobile-menu a { color: var(--ivory); font-family: var(--hair-serif); font-size: 28px; }
#mobile-menu .close-btn { position: absolute; top: 28px; right: 32px; color: var(--ivory); background: none; border: none; font-size: 14px; letter-spacing: 0.2em; cursor: pointer; font-family: var(--ui); }

/* ---------- Hero Landscape Frame ---------- */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: #0c0c0b; }
.hero-bg-carousel { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.carousel-img { position: absolute; inset: 0; width: 100%; height: 100%; background-size: cover; background-position: center 25%; opacity: 0; transition: opacity 1.8s ease-in-out, transform 9s ease-out; transform: scale(1.06); }
.carousel-img.active { opacity: 0.38; transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,12,12,0.85) 0%, rgba(12,12,12,0.4) 60%, #0c0c0b 100%); z-index: 1; }
#hero .grain { position: absolute; inset: 0; opacity: 0.03; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); mix-blend-mode: overlay; z-index: 2; }

.hero-content { position: relative; z-index: 3; padding: 160px 0 100px; width: 100%; }
.hero-eyebrow { font-family: var(--hair-italic); font-style: italic; font-size: 22px; color: var(--gold-soft); margin-bottom: 20px; letter-spacing: 0.04em; }
.hero-title { color: var(--ivory); font-size: clamp(44px, 7.5vw, 92px); line-height: 1.02; letter-spacing: -0.02em; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: inline-block; transform: translateY(110%); animation: riseUp 1.3s cubic-bezier(0.19, 1, 0.22, 1) forwards; }
.hero-title .line:nth-child(1) span { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.25s; }
@keyframes riseUp { to { transform: translateY(0); } }

.hero-sub { color: white; font-weight: 200; font-size: 17px; max-width: 540px; margin-top: 28px; line-height: 1.8; opacity: 0.85; }
.hero-ctas { display: flex; gap: 20px; margin-top: 44px; flex-wrap: wrap; }
.btn-gold { background: var(--gold); color: var(--black); font-family: var(--ui); font-weight: 600; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; padding: 18px 36px; border-radius: 999px; display: inline-flex; align-items: center; gap: 12px; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.btn-gold:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(212,175,55,0.2); }
.btn-outline { border: 1px solid rgba(250,248,245,0.25); color: var(--ivory); font-family: var(--ui); font-weight: 500; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; padding: 18px 32px; border-radius: 999px; transition: all 0.3s; }
.btn-outline:hover { border-color: var(--gold); background: rgba(212,175,55,0.06); }
.arrow { transition: transform 0.3s; }
.btn-gold:hover .arrow { transform: translateX(5px); }

.scroll-cue { position: absolute; bottom: 36px; left: 40px; z-index: 3; display: flex; align-items: center; gap: 12px; color: #9c958f; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-family: var(--ui); }
.scroll-cue .stick { width: 1px; height: 40px; background: linear-gradient(180deg, var(--gold), transparent); animation: stick 2s ease-in-out infinite; }
@keyframes stick { 0%,100% { opacity: 0.2; transform: scaleY(0.8); } 50% { opacity: 1; transform: scaleY(1.2); } }

.hero-stats { position: absolute; right: 40px; bottom: 36px; z-index: 3; display: flex; gap: 48px; }
@media(max-width: 840px) { .hero-stats { display: none; } }
.hero-stat b { display: block; font-family: var(--hair-serif); font-size: 32px; color: var(--gold-soft); }
.hero-stat span { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #9c958f; font-family: var(--ui); }

@media (max-width: 768px) {

  #hero {
    min-height: auto;
    padding: 90px 0 60px;
  }

  .hero-content {
    padding: 40px 20px 50px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-eyebrow {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.15;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.7;
    margin: 20px auto 0;
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
  }

  .btn-gold,
  .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
  }

  .scroll-cue {
    display: none;
  }

  .hero-stats {
    display: none;
  }
}
/* ---------- Global Section Standards ---------- */
section { position: relative; }
.section-pad { padding: 140px 0; }
@media(max-width: 768px) { .section-pad { padding: 90px 0; } }
.bg-beige { background: var(--beige); }
.bg-ivory { background: var(--ivory); }
.bg-black { background: var(--black); color: var(--ivory); }
.section-head { max-width: 700px; margin-bottom: 70px; }
.section-title { font-size: clamp(34px, 4.8vw, 56px); line-height: 1.1; font-weight: 400; color: var(--black); }
.bg-black .section-title { color: var(--ivory); }
.section-body { margin-top: 24px; font-size: 16px; line-height: 1.85; color: var(--charcoal-soft); font-weight: 300; }
.bg-black .section-body { color: #b6b0aa; }

.grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.grid.reversed { grid-template-columns: 0.9fr 1.1fr; }
@media(max-width: 900px) { .grid, .grid.reversed { grid-template-columns: 1fr; gap: 48px; } }

.art-panel { position: relative; overflow: hidden; border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.art-panel img { width: 100%; height: 100%; object-fit: cover; }
.art-panel .tag { position: absolute; left: 24px; bottom: 22px; color: rgba(250,248,245,0.85); font-family: var(--ui); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; z-index: 5; }
.art-panel .mono { position: absolute; right: 24px; top: 22px; color: var(--gold-soft); font-family: var(--hair-italic); font-style: italic; font-size: 15px; z-index: 5; text-shadow: 0 2px 4px rgba(0,0,0,0.4); }
.overlay-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(12,12,12,0) 40%, rgba(12,12,12,0.75) 100%); pointer-events: none; z-index: 2; }

#story .art-panel { height: 580px; box-shadow: 0 30px 60px rgba(0,0,0,0.04); }
@media(max-width: 900px) { #story .art-panel { height: 400px; } }

/* ---------- Lookbook Visual Editorial Grid ---------- */
.lookbook-showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
@media(max-width: 980px) { .lookbook-showcase-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 640px) { .lookbook-showcase-grid { grid-template-columns: 1fr; } }
.lookbook-item { background: transparent; transition: all 0.4s ease; }
.img-frame { width: 100%; aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; background: #181716; box-shadow: 0 20px 45px rgba(0,0,0,0.03); }
.img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.lookbook-item:hover .img-frame img { transform: scale(1.05); }
.lookbook-meta { padding: 24px 4px 0; }
.lookbook-meta .cat { font-family: var(--ui); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); font-weight: 600; display: block; margin-bottom: 8px; }
.lookbook-meta h4 { font-size: 22px; color: var(--black); margin-bottom: 12px; font-weight: 500; }
.lookbook-meta p { font-size: 14.5px; color: var(--charcoal-soft); line-height: 1.7; margin: 0; }

/* ---------- Reversed Manifesto Section ---------- */
#manifesto .art-panel { height: 580px; }
@media(max-width: 900px) { #manifesto .art-panel { height: 400px; } }

/* ---------- Bridal Suit Minimalist Lists ---------- */
#bridal .art-panel { height: 580px; }
@media(max-width: 900px) { #bridal .art-panel { height: 400px; } }
.bridal-manifesto-list { padding-left: 0; margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.bridal-manifesto-list li { list-style: none; font-size: 15.5px; color: var(--charcoal-soft); line-height: 1.7; position: relative; padding-left: 28px; }
.bridal-manifesto-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-weight: 600; }

/* ---------- Custom Horizontal Scroller Track (Crawl Layer) ---------- */
.crawl-container{
    width:100%;
    overflow-x:auto;
    padding:30px 0;
    scrollbar-width:none;
    -ms-overflow-style:none;
    cursor:grab;
}

.crawl-container::-webkit-scrollbar{
    display:none;
}

.crawl-track{
    display:flex;
    gap:30px;
    width:max-content;
    padding:8px;
}

.crawl-card{
    width:340px;
    height:500px;
    flex-shrink:0;
    position:relative;
    overflow:hidden;
    border-radius:18px;

    background:
        linear-gradient(#ffffff,#ffffff) padding-box,
        linear-gradient(135deg,#D4AF37,#FFE8A3,#B8860B,#FFF3C7,#D4AF37) border-box;

    border:4px solid transparent;

    box-shadow:
        0 15px 40px rgba(0,0,0,.12),
        0 0 0 1px rgba(212,175,55,.25);

    padding:12px;
}
.crawl-card img{
    width:100%;
    height:100%;

    object-fit:contain;   /* FULL IMAGE */
    object-position:center;

    border-radius:12px;
    background:#fff;

    transition:.5s;
}

.crawl-card:hover img{
    transform:scale(1.03);
}
.crawl-card::before{
    content:"";
    position:absolute;
    inset:12px;
    border-radius:12px;
    pointer-events:none;

    background-image:
        linear-gradient(rgba(212,175,55,.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,.18) 1px, transparent 1px);

    background-size:28px 28px;

    opacity:.6;
}
.crawl-card::after{
    content:"";
    position:absolute;
    top:-150%;
    left:-50%;
    width:60%;
    height:400%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:rotate(25deg);
    transition:1s;
}

.crawl-card:hover::after{
    left:130%;
}
.crawl-tag{
    position:absolute;
    bottom:20px;
    left:20px;

    background:rgba(0,0,0,.75);
    color:#fff;

    padding:8px 16px;
    border-radius:30px;

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15);

    font-size:12px;
    letter-spacing:1px;
    z-index:10;
}
/* ---------- Reviews Slider Component ---------- */
.reviews-wrapper { max-width: 800px; margin: 60px auto 0; text-align: center; position: relative; min-height: 220px; }
.review-slide { position: absolute; inset: 0; opacity: 0; transform: translateY(20px); transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.review-slide.active { opacity: 1; transform: translateY(0); position: relative; }
.quote-text { font-family: var(--hair-italic); font-style: italic; font-size: clamp(22px, 2.8vw, 28px); line-height: 1.6; color: var(--charcoal); }
.client-signature { margin-top: 28px; font-family: var(--ui); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); font-weight: 600; }
.rating-stars { display: flex; gap: 4px; margin-bottom: 24px; color: var(--gold); font-size: 14px; }
.carousel-navigation-dots { display: flex; justify-content: center; gap: 12px; margin-top: 44px; }
.nav-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(18,18,18,0.15); cursor: pointer; transition: all 0.3s; }
.nav-dot.active { background: var(--gold); transform: scale(1.4); }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 90px; text-align: center; }
@media(max-width: 768px) { .stat-row { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
.stat b { display: block; font-family: var(--hair-serif); font-size: clamp(34px, 4.5vw, 48px); color: var(--black); font-weight: 400; }
.stat span { font-family: var(--ui); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal-soft); font-weight: 500; }

/* ---------- Geographics Matrix Map Panel ---------- */
.hours-blueprint-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.hours-blueprint-table td { padding: 16px 0; font-size: 15px; border-bottom: 1px solid rgba(250,248,245,0.08); color: #c5c0ba; }
.hours-blueprint-table tr:last-child td { border-bottom: none; }
.hours-blueprint-table td:last-child { text-align: right; color: var(--gold-soft); font-family: var(--ui); font-size: 13px; letter-spacing: 0.04em; font-weight: 500; }
.map-panel { height: 440px; box-shadow: 0 20px 50px rgba(0,0,0,0.25); }

/* ---------- Luxury Profile Forms Grid ---------- */
.connect-architecture-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
@media(max-width: 940px) { .connect-architecture-grid { grid-template-columns: 1fr; gap: 48px; } }
.field { margin-bottom: 24px; }
.field label { display: block; font-family: var(--ui); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal-soft); margin-bottom: 10px; font-weight: 600; }
.field input, .field select { width: 100%; padding: 16px; border: 1px solid rgba(18,18,18,0.12); background: #fff; border-radius: 4px; font-family: var(--body); font-size: 14.5px; color: var(--charcoal); transition: all 0.3s; }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media(max-width: 520px) { .field-row { grid-template-columns: 1fr; gap: 24px; } }
.submit-action-row { display: flex; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
.btn-black { background: var(--black); color: var(--ivory); font-family: var(--ui); font-weight: 600; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; padding: 18px 36px; border-radius: 999px; border: 1px solid var(--black); display: inline-flex; align-items: center; gap: 12px; transition: all 0.35s; cursor: pointer; }
.btn-black:hover { background: transparent; color: var(--black); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #fff; font-family: var(--ui); font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; padding: 18px 32px; border-radius: 999px; display: inline-flex; align-items: center; gap: 10px; border: 1px solid #25D366; transition: all 0.3s; }
.btn-whatsapp:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(37,211,102,0.15); }
.btn-whatsapp svg { width: 16px; height: 16px; fill: #fff; }
.trust-metrics-strip { display: flex; gap: 36px; margin-top: 48px; flex-wrap: wrap; }
.trust-metrics-strip .metric-item { display: flex; align-items: center; gap: 12px; font-family: var(--ui); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal-soft); font-weight: 500; }
.trust-metrics-strip svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

/* ---------- System Footer Styling ---------- */
/* ================= FOOTER ================= */

footer{
    background:#0c0c0b;
    color:#b6b0aa;
    padding:100px 0 36px;
    border-top:1px solid rgba(250,248,245,.02);
}

/* Premium Google Map */

.footer-map{
    position:relative;
    width:100%;
    height:420px;
    overflow:hidden;
    margin-bottom:70px;
    border-top:1px solid rgba(250,248,245,.08);
    border-bottom:1px solid rgba(250,248,245,.08);
}

.footer-map iframe{
    width:100%;
    height:100%;
    border:0;
    filter:grayscale(15%) contrast(1.08) saturate(.95);
    transition:.6s ease;
}

.footer-map:hover iframe{
    transform:scale(1.03);
    filter:grayscale(0%) contrast(1.05) saturate(1.05);
}

/* Dark luxury overlay */

.footer-map::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(12,12,11,.65),
        rgba(12,12,11,.10),
        rgba(12,12,11,.45)
    );
    pointer-events:none;
    z-index:1;
}

/* Golden Border */

.footer-map::after{
    content:"";
    position:absolute;
    inset:18px;
    border:1px solid rgba(212,175,55,.28);
    pointer-events:none;
    z-index:2;
}

.foot-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:60px;
}

footer h5{
    font-family:var(--ui);
    font-size:12px;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:var(--gold-soft);
    margin-bottom:26px;
    font-weight:600;
}

footer ul{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-direction:column;
    gap:14px;
}

footer ul a{
    font-size:14.5px;
    transition:.3s;
    color:#9c958f;
}

footer ul a:hover{
    color:var(--gold-soft);
}

footer .foot-logo{
    font-family:var(--hair-serif);
    font-size:26px;
    color:var(--ivory);
    margin-bottom:18px;
    letter-spacing:.06em;
}

footer .foot-tag{
    font-family:var(--hair-italic);
    font-style:italic;
    font-size:17px;
    color:var(--gold-soft);
    margin-bottom:24px;
}

footer .foot-desc{
    font-size:14px;
    line-height:1.8;
    max-width:320px;
    color:#8a837c;
}

.foot-social-media{
    display:flex;
    gap:14px;
    margin-top:28px;
}

.foot-social-media a{
    width:40px;
    height:40px;
    border:1px solid rgba(250,248,245,.12);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.foot-social-media a:hover{
    border-color:var(--gold);
    background:rgba(212,175,55,.08);
    transform:translateY(-3px);
}

.foot-social-media svg{
    width:16px;
    height:16px;
    stroke:#b6b0aa;
}

.foot-bottom{
    border-top:1px solid rgba(250,248,245,.06);
    margin-top:80px;
    padding-top:30px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:16px;
    font-size:12px;
    color:#6e6863;
    font-family:var(--ui);
    letter-spacing:.04em;
}

@media(max-width:940px){

    .foot-grid{
        grid-template-columns:repeat(2,1fr);
        gap:48px;
    }

    .footer-map{
        height:340px;
        margin-bottom:55px;
    }
}

@media(max-width:540px){

    .foot-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-map{
        height:260px;
        margin-bottom:40px;
    }

    .footer-map::after{
        inset:10px;
    }

    .foot-bottom{
        justify-content:center;
        text-align:center;
    }
}

/* ---------- Floating Controls ---------- */
.floating { position: fixed; z-index: 90; right: 32px; display: flex; flex-direction: column; align-items: flex-end; gap: 16px; bottom: 32px; }
.float-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 16px 36px rgba(0,0,0,0.25); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; }
.float-btn:hover { transform: translateY(-6px) scale(1.04); }
.float-wa { background: #25D366; }
.float-wa svg { width: 28px; height: 28px; fill: #fff; }

.magnetic { will-change: transform; transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1); }
.developer-credit{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.studio-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:inherit;
    transition:0.3s ease;
}

.studio-link:hover{
    color:#d4af37; /* Gold accent */
}

.studio-logo{
    width:24px;
    height:24px;
    object-fit:contain;
    border-radius:50%;
}
.floating{
    position:fixed;
    right:22px;
    bottom:22px;
    display:flex;
    flex-direction:column;
    gap:14px;
    z-index:9999;
}

.float-btn{
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.35s;
}

.float-btn svg{
    width:28px;
    height:28px;
    fill:currentColor;
}

.float-btn:hover{
    transform:translateY(-5px) scale(1.08);
}

.float-wa{
    background:#25D366;
}

.float-instagram{
    background:linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}
.float-call{
    background: #007bff; /* Blue */
    color: #fff;
}

.float-call:hover{
    background: #0056d2;
}