/* ===========================
   LUMIÈRE STUDIO — MAIN CSS
   =========================== */

/* ── Fonts & Variables ── */
:root {
  --black: #0d0c0a;
  --white: #faf9f6;
  --cream: #f4f0e8;
  --gold: #d8af64;
  --gold-light: #e8d5b0;
  --warm-grey: #8a857c;
  --text: #1a1815;
  --text-light: #6b655c;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins',  sans-serif;
  --font-ui: 'Jost', sans-serif;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.6s var(--ease-smooth);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: none; font-family: var(--font-ui); }

/* ── Custom Cursor ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  z-index: 9998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-smooth), width 0.4s, height 0.4s, opacity 0.3s;
  opacity: 0.7;
}
body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 16px; height: 16px; }
body:has(a:hover) .cursor-follower, body:has(button:hover) .cursor-follower { width: 56px; height: 56px; opacity: 0.4; }

/* ── Loader ── */
.loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease-smooth), visibility 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-text {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  letter-spacing: 0.15em;
  font-style: italic;
  display: block;
  margin-bottom: 1.5rem;
}
.loader-bar {
  width: 200px; height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.loader-progress {
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: loadbar 1.8s var(--ease-smooth) forwards;
}
@keyframes loadbar { to { left: 0; } }

/* ── Navigation ── */

.logos{
  font-family: var(--font-display);
  color: var(--gold);
}
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 4rem;
  transition: background 0.5s, padding 0.5s, backdrop-filter 0.5s;
}
.nav.scrolled {
  background: rgba(250,249,246,0.95);
  backdrop-filter: blur(12px);
  padding: 0.6rem 4rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.5s;
}
.nav-logo img{
  height: 70px; 
    width: auto;
    display: block;
    object-fit: contain;
    scale: 1.5;
}
.nav.scrolled .nav-logo { color: var(--black); }
.nav-links { display: flex; gap: 2.5rem; }
.nav-link {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-smooth);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--white); }
.nav.scrolled .nav-link { color: var(--warm-grey); }
.nav.scrolled .nav-link:hover { color: var(--black); }
.nav-link.active { color: var(--white); }
.nav.scrolled .nav-link.active { color: var(--black); }
.nav-toggle { display: none; flex-direction: column; gap: 6px; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 1px;
  background: var(--white);
  transition: background 0.3s, transform 0.3s;
}
.nav.scrolled .nav-toggle span { background: var(--black); }

/* ===============================
   Mobile Menu
================================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 999;
   display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 35px;
    transform: translateX(100%);
    transition: transform .45s ease;
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Main Menu Links */

.mobile-link {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;

    padding: 16px 0;

    font-family: var(--font-display);
    font-size: 30px;
    font-style: italic;
    font-weight: 500;

    color: #fff;
    text-decoration: none;

    transition: .3s ease;
}

.mobile-link:hover {
    color: var(--gold);
}

/* Services */

.mobile-services {
    width: 100%;
}

.service-title {
    cursor: pointer;
    user-select: none;
}

.service-icon {
    font-size: 14px;
    transition: .3s;
}

.service-title.active .service-icon {
    transform: rotate(180deg);
}

/* Submenu */

.service-list {
    display: none;
    width: 100%;
    margin-top: 5px;
}

.service-list.show {
    display: block;
}

.service-item {
    padding: 12px 0 12px 25px;
    font-size: 20px;
    opacity: .9;
    border-left: 2px solid rgba(212,175,55,.35);
    margin-left: 10px;
}

.service-item:hover {
    color: var(--gold);
    border-left-color: var(--gold);
}

/* Scrollbar */

.mobile-menu::-webkit-scrollbar {
    width: 5px;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.2);
}

.service-icon{
    cursor:pointer;
    transition:.3s;
    font-size:14px;
}

.service-icon.rotate{
    transform:rotate(180deg);
}

.service-list{
    display:none;
}

.service-list.show{
    display:block;
}

/* Small Phones */

@media (max-width:480px){

    .mobile-menu{
        padding:70px 25px;
    }

    .mobile-link{
        font-size:24px;
    }

    .service-item{
        font-size:18px;
        padding-left:20px;
    }

}

/* ── Hero ── */


/* ── Buttons ── */
.btn {
    z-index: 1;
}

.btn::before {
    z-index: -1;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-smooth);
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-smooth);
}
.btn:hover::before { transform: translateX(0); }
.btn-light { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-light::before { background: var(--gold); color:var(--white); }
.btn-light:hover { color: var(--white); border-color: var(--gold); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-light::before { background: var(--white); }
.btn-outline-light:hover { color: var(--black); border-color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark::before { background: var(--gold); }
.btn-dark:hover { border-color: var(--gold); }
.btn span { position: relative; z-index: 1; }

/* ── Marquee ── */
.marquee-strip {
  background: var(--gold);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 1.5rem;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}
.marquee-track .dot { color: rgba(0,0,0,0.4); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Sections ── */
.section { padding: 2rem 0; }
.section-sm { padding: 3rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }
.section-label {
  font-family: var(--font-ui);
  font-size: 1.68rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4rem;
}
.section-title em { font-style: italic; color: var(--warm-grey); }

/* ── Reveal Animations ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal-up[data-delay="100"] { transition-delay: 0.1s; }
.reveal-up[data-delay="200"] { transition-delay: 0.2s; }
.reveal-up[data-delay="300"] { transition-delay: 0.3s; }

/* ── Text Link ── */
.text-link {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
  display: inline-block;
  margin-top: 2rem;
}
.text-link:hover { color: var(--gold); }

/* ── Intro Section ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
}
.intro-right p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

/* ── Featured Grid ── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 320px 320px;
  gap: 12px;
  padding: 0 12px;
}
.featured-item {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.featured-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.featured-img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform 0.8s var(--ease-smooth);
}
.featured-item:hover .featured-img { transform: scale(1.06); }
.featured-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--white);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
}
.featured-item:hover .featured-info { opacity: 1; transform: translateY(0); }
.featured-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
}
.featured-info p {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  margin-top: 0.3rem;
}

/* ── Stats ── */
.stats { background: var(--black); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.stat-suffix { font-family: var(--font-display); font-size: 2rem; color: var(--gold); }
.stat-item p {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-top: 0.8rem;
}

/* ==========================
   Testimonial Section
========================== */

.testimonial{
    background: var(--cream);
    padding:80px 0;
}

.testimonial-slider{
    position:relative;
    margin-top:60px;
    min-height:420px;
}

.testimonial-item{
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    gap:60px;

    opacity:0;
    transform:translateY(20px);

    transition:all .6s ease;

    pointer-events:none;
}

.testimonial-item.active{
    position:relative;
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
}

.testimonial-image{
    flex:0 0 320px;
}

.testimonial-image img{
    width:100%;
    height:380px;
    object-fit:cover;
    border-radius:20px;
    display:block;
}

.testimonial-item blockquote{
    flex:1;

    font-family:var(--font-display);
    font-size:clamp(1.25rem,2.2vw,2rem);
    line-height:1.7;
    font-style:italic;
    color:var(--text);
}

.testimonial-item cite{
    display:block;
    margin-top:24px;

    font-family:var(--font-ui);
    font-size:.8rem;
    font-style:normal;
    font-weight:500;

    letter-spacing:.2em;
    text-transform:uppercase;

    color:var(--warm-grey);
}

.testimonial-dots{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    margin-top:45px;
}

.tdot{
    width:24px;
    height:2px;

    background:#999;
    transition:.35s;
    cursor:pointer;
}

.tdot.active{
    width:50px;
    background:var(--gold);
}


/* ==========================
   Tablet
========================== */

@media (max-width:991px){

    .testimonial-slider{
        min-height:620px;
    }

    .testimonial-item{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }

    .testimonial-image{
        flex:0 0 auto;
        width:300px;
    }

    .testimonial-image img{
        height:340px;
    }

    .testimonial-item blockquote{
        max-width:700px;
    }

}


/* ==========================
   Mobile
========================== */

@media (max-width:767px){

    .testimonial{
        padding:60px 0;
    }

    .testimonial-slider{
        min-height:650px;
        margin-top:40px;
    }

    .testimonial-item{
        gap:25px;
    }

    .testimonial-image{
        width:100%;
        max-width:260px;
    }

    .testimonial-image img{
        width:100%;
        height:300px;
        border-radius:16px;
    }

    .testimonial-item blockquote{
        font-size:1.1rem;
        line-height:1.8;
        text-align:center;
        padding:0 10px;
    }

    .testimonial-item cite{
        font-size:.75rem;
        letter-spacing:.15em;
        margin-top:18px;
    }

    .testimonial-dots{
        margin-top:30px;
    }

}


/* ==========================
   Small Mobile
========================== */

@media (max-width:480px){

    .testimonial-slider{
        min-height:700px;
    }

    .testimonial-image{
        max-width:220px;
    }

    .testimonial-image img{
        height:260px;
    }

    .testimonial-item blockquote{
        font-size:1rem;
    }

}
/* ── CTA Banner ── */
.cta-banner {
  position: relative;
  height: 500px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 8s var(--ease-smooth);
}
.cta-banner:hover .cta-bg { transform: scale(1); }
.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(13,12,10,0.62);
}
.cta-content { position: relative; z-index: 2; color: var(--white); }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 2.5rem;
}
.cta-content em { font-style: italic; color: var(--gold-light); }

/* ── Footer ── */


/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  height: 60vh; min-height: 460px;
  display: flex; align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}
.page-hero.short { height: 55vh; min-height: 380px; }
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: heroZoom 10s ease-in-out forwards;
}
@keyframes heroZoom { from{transform:scale(1.08)} to{transform:scale(1)} }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 60%);
}
.page-hero-content { position: relative; z-index: 2; padding: 0 4rem; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-top: 1rem;
}

/* ── About Page ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; height: 600px;
  object-fit: cover;
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%; height: 60%;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.about-text h2 em { font-style: italic; color: var(--warm-grey); }
.about-text p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.about-badges {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem;
}
.about-badges span {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.4rem 1rem;
}

/* ── Values ── */
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.value-card {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--gold-light);
  transition: transform 0.4s;
}
.value-card:hover { transform: translateY(-6px); }
.value-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--gold);
  display: block; margin-bottom: 1.2rem;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.value-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* ── Team ── */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 1rem;
}
.team-card { overflow: hidden; }
.team-img {
  width: 100%; height: 440px;
  background-size: cover; background-position: top center;
  transition: transform 0.7s var(--ease-smooth);
  filter: grayscale(20%);
}
.team-card:hover .team-img { transform: scale(1.04); filter: grayscale(0); }
.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  margin-top: 1.2rem;
}
.team-card p {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-top: 0.3rem;
}

/* ── Press ── */
.press-logos {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; align-items: center;
  margin-top: 1rem;
}
.press-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--warm-grey);
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.1);
  transition: color 0.3s, border-color 0.3s;
}
.press-logo:hover { color: var(--gold); border-color: var(--gold); }

/* ── Portfolio Page ── */
.filter-bar {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.3rem;
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--warm-grey);
  transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--black); color: var(--white); border-color: var(--black);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 380px;
  gap: 12px;
  padding: 0 12px 12px;
}
.portfolio-item {
  position: relative; overflow: hidden;
  cursor: none;
  transition: opacity 0.5s, transform 0.5s;
}
.portfolio-item.filtered { opacity: 0; pointer-events: none; transform: scale(0.96); }
.portfolio-item.tall { grid-row: span 2; }
.portfolio-item.wide { grid-column: span 2; }
.portfolio-img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform 0.8s var(--ease-smooth);
}
.portfolio-item:hover .portfolio-img { transform: scale(1.07); }
.portfolio-hover {
  position: absolute; inset: 0;
  background: rgba(13,12,10,0.6);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 2rem;
  opacity: 0; transition: opacity 0.4s;
}
.portfolio-item:hover .portfolio-hover { opacity: 1; }
.portfolio-hover h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--white);
}
.portfolio-hover p {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
}
.portfolio-hover span {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.25rem 0.7rem;
  margin-top: 0.8rem;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-close {
  position: absolute; top: 2rem; right: 2rem;
  font-size: 1.2rem; color: var(--white);
  transition: color 0.3s;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-content img { max-height: 85vh; max-width: 90vw; }

/* ── Contact Page ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 7rem; align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.contact-info h2 em { font-style: italic; color: var(--warm-grey); }
.contact-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 3rem;
}
.contact-details { margin-bottom: 3rem; }
.contact-detail {
  display: flex; flex-direction: column;
  gap: 0.2rem; margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.contact-detail:last-child { border-bottom: none; }
.detail-label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-detail a, .contact-detail span {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text);
  transition: color 0.3s;
}
.contact-detail a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 1.5rem; }
.social-link {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-grey);
  border-bottom: 1px solid var(--warm-grey);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.social-link:hover { color: var(--gold); border-color: var(--gold); }

/* ── Form ── */
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.form-group input, .form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding: 0.7rem 0;
  outline: none;
  transition: border-color 0.3s;
  cursor: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(0,0,0,0.25);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.3rem; }
.checkbox-label {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text);
  cursor: none;
}
.checkbox-label input[type="checkbox"] { accent-color: var(--gold); cursor: none; }
.btn-submit { align-self: flex-start; margin-top: 0.5rem; gap: 1rem; }
.form-success {
  display: none;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding: 1rem;
  border: 1px solid var(--gold-light);
  background: rgba(201,169,110,0.06);
}
.form-success.visible { display: block; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.faq-question {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  text-align: left;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform 0.4s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-smooth), padding 0.4s;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 1.5rem; }
.faq-answer p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-light);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 280px);
  }
  .featured-item.large { grid-column: span 2; grid-row: span 1; height: 280px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-img-wrap { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 1.4rem 2rem; }
  .nav.scrolled { padding: 1rem 2rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .container { padding: 0 2rem; }
  .hero-content { padding: 0 2rem; }
  .hero-scroll { left: 2rem; }
  .hero-counter { right: 2rem; }
  .section { padding: 5rem 0; }
  .featured-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .featured-item { height: 260px; }
  .featured-item.large { height: 380px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero-content { padding: 0 2rem; }
}
.sunny-footer-section {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  /* border-radius: 25px; */
}

.sunny-footer-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
}

.sunny-footer-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.35); */
}

.sunny-footer-content {
  /* position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  padding-bottom: 50px; */
      position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sunny-enquire-btn {
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 16px 35px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  transition: 0.4s;
}

.sunny-enquire-btn:hover {
  transform: translateY(-3px);
}

.sunny-contact-card {
  width: 95%;
  max-width: 1150px;
  padding: 30px;
  border-radius: 25px;

  background: rgba(0,0,0,0.25);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.15);

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sunny-contact-item {
  color: #fff;
  text-align: center;
}

.sunny-contact-item h5 {
  font-size: 14px;
  opacity: .8;
  margin-bottom: 10px;
}

.sunny-contact-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.sunny-center {
  max-width: 450px;
}

.sunny-bottom-footer {
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f7f7;
}

.sunny-copyright {
  font-size: 15px;
  color: #222;
}

.sunny-social-icons {
  display: flex;
  gap: 15px;
}

.sunny-social-icons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.sunny-social-icons a:hover {
  transform: translateY(-5px);
}

@media(max-width:768px){

  .sunny-contact-card{
    flex-direction: column;
    gap: 25px;
  }

  .sunny-bottom-footer{
    flex-direction: column;
    gap: 20px;
    text-align:center;
  }

  

}


/* ===========================
   Story Section
=========================== */

.sunny-story-section{
    background:#f9f5f0;
    padding:120px 0;
}

.sunny-story-card{
    width:85%;
    max-width:1200px;
    min-height:600px;

    margin:-120px auto 0;

    display:flex;
    align-items:center;
    gap:60px;

    background:#fff;
    border-radius:30px;

    padding:40px;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

    position:sticky;
    top:100px;
}

.sunny-story-card:first-child{
    margin-top:0;
}

.sunny-story-image{
    flex:1;
}

.sunny-story-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:24px;
    display:block;
}

.sunny-story-content{
    flex:1;
}

.sunny-story-content span{
    color:#c89b3c;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.sunny-story-content h2{
    font-size:52px;
    line-height:1.2;
    margin:20px 0;
}

.sunny-story-content p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}


/* ===========================
   Laptop
=========================== */

@media (max-width:1200px){

    .sunny-story-card{
        width:92%;
        gap:40px;
    }

    .sunny-story-content h2{
        font-size:42px;
    }

}


/* ===========================
   Tablet
=========================== */

@media (max-width:991px){

    .sunny-story-section{
        padding:80px 0;
    }

    .sunny-story-card{

        position:relative;
        top:auto;

        width:92%;
        min-height:auto;

        margin:40px auto;

        flex-direction:column;

        gap:30px;

        padding:30px;
    }

    .sunny-story-image,
    .sunny-story-content{
        width:100%;
    }

    .sunny-story-image img{
        height:420px;
    }

    .sunny-story-content{
        text-align:center;
    }

    .sunny-story-content h2{
        font-size:36px;
    }

}


/* ===========================
   Mobile
=========================== */

@media (max-width:767px){

    .sunny-story-section{
        padding:60px 15px;
    }

    .sunny-story-card{

        width:100%;

        margin:25px auto;

        padding:20px;

        border-radius:20px;

        gap:20px;
    }

    .sunny-story-image img{

        height:280px;

        border-radius:16px;
    }

    .sunny-story-content span{
        font-size:13px;
        letter-spacing:1px;
    }

    .sunny-story-content h2{

        font-size:28px;

        margin:15px 0;
    }

    .sunny-story-content p{

        font-size:16px;

        line-height:1.7;
    }

}


/* ===========================
   Small Mobile
=========================== */

@media (max-width:480px){

    .sunny-story-card{

        padding:16px;
    }

    .sunny-story-image img{

        height:220px;
    }

    .sunny-story-content h2{

        font-size:24px;
    }

    .sunny-story-content p{

        font-size:15px;
    }

}
.testimonial-item {
  display: flex;
  align-items: center;
  gap: 50px;

  background: #fff;
  padding: 40px;
  border-radius: 25px;

  box-shadow: 0 15px 50px rgba(0,0,0,.08);
}

.testimonial-image {
  width: 300px;
  min-width: 300px;
}

.testimonial-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
}

.testimonial-content {
  flex: 1;
}

.testimonial-content blockquote {
  font-size: 28px;
  line-height: 1.7;
  font-style: italic;
  color: #222;
}

.testimonial-content cite {
  display: block;
  margin-top: 20px;
  color: #c89b3c;
  font-weight: 600;
}


.logo-wrapper {
  position: relative;
}

.logo {
  transition: opacity 0.5s ease;
}

.silver-logo {
  position: absolute;
    top: 24px;
    left: 58px;
  opacity: 0;
}

.logo-wrapper.scrolled .gold-logo {
  opacity: 0;
}

.logo-wrapper.scrolled .silver-logo {
  opacity: 1;
}


.loader{
    position: fixed;
    inset: 0;
    background: #041326;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.loader-inner{
    text-align: center;
}

.loader-ring{
    width: 140px;
    height: 140px;
    border: 2px solid rgba(255,255,255,0.15);
    border-top: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: spin 2s linear infinite;
    margin: 0 auto 25px;
}

.loader-logo{
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: pulse 2s ease-in-out infinite;
}

.loader-title{
    color: #fff;
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.loader-subtitle{
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

@keyframes spin{
    100%{
        transform: rotate(360deg);
    }
}

@keyframes pulse{
    0%,100%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.08);
    }
}


.enquiry-modal{
    border:none;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.2);
}

.enquiry-header{
    background:linear-gradient(135deg,#b68c5a,#d9b382);
    color:#fff;
    padding:5px 10px;
    border:none;
}

.enquiry-header h3{
      font-family:'Cormorant Garamond',serif;
    
    letter-spacing:1px;
    font-size:30px;
    font-weight:700;
    margin-bottom:5px;
}

.enquiry-header p{
        font-family:'Poppins',sans-serif;
    opacity:.9;
    font-size:15px;
}

.custom-input{
        font-family:'Poppins',sans-serif;
    height:52px;
    border-radius:12px;
    border:1px solid #ddd;
    box-shadow:none;
    transition:.3s;
    font-size:15px;
}

textarea.custom-input{
    height:130px;
    resize:none;
    padding-top:15px;
}

.custom-input:focus{
    border-color:#b68c5a;
    box-shadow:0 0 0 .2rem rgba(182,140,90,.18);
}

.form-label{
     font-family:'Poppins',sans-serif;
    font-weight:600;
    color:#444;
    margin-bottom:8px;
}

.enquiry-btn{
       font-family:'Poppins',sans-serif;
    background:linear-gradient(135deg,#b68c5a,#d9b382);
    color:#fff;
    border:none;
    border-radius:12px;
    height:55px;
    font-size:17px;
    font-weight:600;
    transition:.3s;
     letter-spacing:.5px;
}

.enquiry-btn:hover{
    background:#a77946;
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(182,140,90,.35);
}

.btn-close-white{
    filter:invert(1);
}

.modal-body{
    background:#fafafa;
}

@media(max-width:768px){

.enquiry-header{
    padding:20px;
}

.enquiry-header h3{
    font-size:24px;
}

.modal-body{
    padding:20px!important;
}

.custom-input{
    height:48px;
}

textarea.custom-input{
    height:120px;
}

}



/* Overlay */

.custom-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:99999;
}

.custom-modal.active{
    opacity:1;
    visibility:visible;
}

/* Modal */

.custom-modal-box{
    width:100%;
    max-width:900px;
    max-height:95vh;
    overflow-y:auto;
    background:#fff;
    border-radius:20px;
    padding:35px;
    position:relative;
    animation:popup .35s ease;
}

/* Scrollbar */

.custom-modal-box::-webkit-scrollbar{
    width:8px;
}

.custom-modal-box::-webkit-scrollbar-thumb{
    background:#c7a36a;
    border-radius:20px;
}

@keyframes popup{

from{
    opacity:0;
    transform:translateY(30px) scale(.95);
}

to{
    opacity:1;
    transform:translateY(0) scale(1);
}

}

/* Close */

.close-modal{
    position:absolute;
    top:15px;
    right:20px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#f3f3f3;
    font-size:28px;
    cursor:pointer;
    transition:.3s;
}

.close-modal:hover{
    background:#c79b5d;
    color:#fff;
}

/* Heading */

.enquiry-header{
    text-align:center;
    margin-bottom:30px;
}

.enquiry-header h2{
    font-family:'Cormorant Garamond',serif;
    font-size:42px;
    font-weight:600;
    color:#fff;
}

.enquiry-header p{
    color:#fff;
    margin-top:8px;
    font-size:15px;
}

/* Grid */

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

/* Labels */

label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#444;
}

/* Inputs */

input,
select,
textarea{

    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
    transition:.3s;
    outline:none;

}

textarea{
    min-height:140px;
    resize:vertical;
    margin-top:20px;
}

input:focus,
select:focus,
textarea:focus{

    border-color:#c79b5d;
    box-shadow:0 0 10px rgba(199,163,106,.25);

}

/* Button */

.submit-btn{

    width:100%;
    height:55px;
    margin-top:25px;
    border:none;
    border-radius:10px;
    background:#c79b5d;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;

}

.submit-btn:hover{

    background:#a97c41;

}

/* =======================
   Tablet
======================= */

@media(max-width:991px){

.custom-modal-box{

    max-width:700px;

}

.enquiry-header h2{

    font-size:34px;

}

}

/* =======================
   Mobile
======================= */

@media(max-width:768px){

.custom-modal{

    align-items:flex-start;
    padding:15px;

}

.custom-modal-box{

    margin-top:20px;
    padding:25px;
    border-radius:15px;

}

.form-grid{

    grid-template-columns:1fr;
    gap:15px;

}

.enquiry-header{

    margin-bottom:20px;

}

.enquiry-header h2{

    font-size:28px;

}

.enquiry-header p{

    font-size:14px;

}

input,
select,
textarea{

    padding:13px;

}

.submit-btn{

    height:50px;

}

}

/* =======================
   Small Mobile
======================= */

@media(max-width:480px){

.custom-modal-box{

    padding:18px;

}

.enquiry-header h2{

    font-size:24px;

}

.close-modal{

    width:36px;
    height:36px;
    font-size:24px;

}

label{

    font-size:14px;

}

input,
select,
textarea{

    font-size:14px;

}

.submit-btn{

    font-size:15px;

}

}

.success-popup{

    position:fixed;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:420px;
    max-width:90%;

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    box-shadow:0 20px 60px rgba(0,0,0,.25);

    display:none;

    z-index:999999;

}

.success-icon{

    width:80px;
    height:80px;

    margin:auto;

    border-radius:50%;

    background:#28a745;

    color:#fff;

    font-size:40px;

    display:flex;

    justify-content:center;
    align-items:center;

    margin-bottom:20px;

}

.success-popup h3{

    margin-bottom:12px;

    font-size:30px;

    color:#222;

    font-family:'Cormorant Garamond',serif;

}

.success-popup p{

    color:#666;

    line-height:1.7;

}

@media(max-width:600px){

.success-popup{

    padding:25px;

}

.success-icon{

    width:65px;
    height:65px;
    font-size:32px;

}

.success-popup h3{

    font-size:24px;

}

}

.signature-work{
    padding:80px 20px;
    background:#fff;
}

.signature-work .container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    font-size:42px;
    font-weight:600;
    margin-bottom:50px;
    color:#000;
   font-family: var(--font-display);



}

/* Grid */

.work-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border:1px solid #222;
}

.work-card{
    border-right:1px solid #222;
    padding:18px;
}

.work-card:last-child{
    border-right:none;
}

.work-card h3{
    font-family: var(--font-display);
    text-align:center;
    font-size:34px;
    font-weight:600;
    margin-bottom:18px;
    color:#000;
}

.work-image{
    overflow:hidden;
}

.work-image img{
    width:100%;
    height:400px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.work-card:hover img{
    transform:scale(1.05);
}

/*=========================
      Tablet
=========================*/

@media(max-width:992px){

.work-grid{
    grid-template-columns:repeat(2,1fr);
}

.work-card:nth-child(2){
    border-right:none;
}

.work-card:last-child{
    grid-column:1/3;
    border-top:1px solid #222;
}

.work-image img{
    height:500px;
}

.section-title{
    font-size:36px;
}

.work-card h3{
    font-size:28px;
}

}

/*=========================
      Mobile
=========================*/

@media(max-width:768px){

.signature-work{
    padding:60px 15px;
}

.work-grid{
    grid-template-columns:1fr;
    border:none;
    gap:25px;
}

.work-card{
    border:1px solid #222;
    padding:15px;
}

.work-card:last-child{
    grid-column:auto;
}

.work-image img{
    height:420px;
}

.section-title{
    font-size:30px;
    margin-bottom:35px;
}

.work-card h3{
    font-size:24px;
    margin-bottom:15px;
}

}

/*=========================
      Small Mobile
=========================*/

@media(max-width:480px){

.work-image img{
    height:340px;
}

.section-title{
    font-size:26px;
}

.work-card h3{
    font-size:22px;
}

}