/* ===========================
   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: 'Cormorant Garamond', Georgia, 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: 1.2rem 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: 0.8rem;
  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; inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-out-expo);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--white);
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--gold); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s var(--ease-smooth), transform 6s var(--ease-smooth);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,12,10,0.7) 0%, rgba(13,12,10,0.3) 50%, rgba(13,12,10,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 4rem;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 3rem; left: 4rem;
  display: flex; align-items: center; gap: 1rem;
  z-index: 2;
}
.hero-scroll span {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 60px; height: 1px;
  background: rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%{left:-100%} 50%{left:0} 100%{left:100%} }
.hero-counter {
  position: absolute; bottom: 3rem; right: 4rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  z-index: 2;
}

/* ── Buttons ── */
.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); }
.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: var(--black);
}
.marquee-track .dot { color: rgba(0,0,0,0.4); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Sections ── */
.section { padding: 8rem 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 ── */
.testimonial { background: var(--cream); }
.testimonial-slider { position: relative; min-height: 180px; margin-top: 3rem; }
.testimonial-item {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s;
  pointer-events: none;
}
.testimonial-item.active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.testimonial-item blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  max-width: 800px;
}
.testimonial-item cite {
  display: block;
   margin-top: 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.testimonial-dots {
  display: flex; gap: 0.6rem; margin-top: 3rem;
}
.tdot {
  width: 24px; height: 1px;
  background: var(--warm-grey);
  transition: width 0.4s, background 0.4s;
  cursor: none;
}
.tdot.active { width: 48px; background: var(--gold); }

/* ── 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 ── */
.footer { background: var(--black); padding: 5rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand p:last-child {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--warm-grey);
  line-height: 1.8;
}
.footer-links, .footer-social {
  display: flex; flex-direction: column; gap: 0.8rem;
  padding-top: 0.5rem;
}
.footer-links a, .footer-social a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--warm-grey);
  transition: color 0.3s;
}
.footer-links a:hover, .footer-social a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  height: 80vh; min-height: 560px;
  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;
  }

  

}


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

.sunny-story-card {
    width: 85%;
    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: 25px;
}

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

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

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

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

.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;
}