/* ============================================================
   ISSAL EVENTS – Feuille de style principale
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ─── RESET & ROOT ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #b8943e;
  --gold-lt: #d4af6a;
  --dark:    #1a1512;
  --dark2:   #2c2218;
  --cream:   #f9f5ef;
  --cream2:  #f1ebe0;
  --text:    #3a3028;
  --text-lt: #7a6e64;
  --white:   #ffffff;
  --radius:  12px;
  --shadow:  0 8px 40px rgba(0,0,0,.12);
  --font-h:  'Cormorant Garamond', Georgia, serif;
  --font-b:  'Jost', sans-serif;
  --trans:   .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  border: 12px solid var(--dark); /* Page border */
  min-height: 100vh;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── UTILITIES ─────────────────────────────────────────── */
.container      { max-width: 1210px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 480px) {
  .container    { padding: 0 20px; }
}
.text-center    { text-align: center; }
.section-pad    { padding: clamp(60px, 10vw, 96px) 0; }
.section-pad-sm { padding: clamp(40px, 8vw, 64px) 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-b);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--trans);
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,148,62,.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark2);
  transform: translateY(-2px);
}

/* Section headers */
.section-label {
  display: inline-block;
  font-family: var(--font-b);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 300;
  color: var(--text-lt);
  max-width: 620px;
  line-height: 1.75;
  margin: 18px auto 0;
}

/* Divider */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
}
.divider.center { margin: 20px auto; }

/* Height Utilities */
.h-180 { height: 280px; }
.h-280 { height: 400px; }
.h-320 { height: 480px; }
.h-420 { height: 550px; }
.h-520 { height: 620px; }

/* Category Image Grid */
.cat-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cat-img-grid .main-img {
  grid-column: span 2;
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cat-img-grid .main-img.autre-main {
  height: 400px;
}
.cat-img-grid .sub-img {
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cat-img-grid .sub-img.autre-sub {
  height: 360px;
}
.cat-img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}
.cat-img-grid .main-img:hover img,
.cat-img-grid .sub-img:hover img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .cat-img-grid .main-img { height: 280px; }
  .cat-img-grid .main-img.autre-main { height: 240px; }
  .cat-img-grid .sub-img { height: 160px; }
  .cat-img-grid .sub-img.autre-sub { height: 180px; }
  .h-180 { height: 220px; }
  .h-280 { height: 300px; }
  .h-320 { height: 350px; }
  .h-420 { height: 400px; }
  .h-520 { height: 450px; }
}

/* ─── HEADER / NAV ───────────────────────────────────────── */
#header {
  position: fixed;
  top: 49px; left: 12px; right: 12px;
  z-index: 1000;
  padding: 0 32px;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans), top var(--trans);
}
#header.scrolled {
  background: rgba(26,21,18,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,.25);
  padding: 0 32px;
  top: 12px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo {
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .05em;
  display: block;
}
.logo span { color: var(--gold); font-style: italic; }
.logo-tagline {
  font-family: var(--font-b);
  font-size: 0.85rem;
  color: var(--gold-lt);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ─── TOP BAR ─────────────────────────────────────────── */
.top-bar {
  background: var(--dark);
  color: var(--white);
  padding: 8px 0;
  font-size: .78rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left {
  display: flex;
  gap: 24px;
}
.top-bar-left a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-lt);
  transition: var(--trans);
}
.top-bar-left a:hover {
  color: var(--white);
}
@media (max-width: 640px) {
  .top-bar-left {
    flex-direction: column;
    gap: 4px;
    align-items: center;
    width: 100%;
  }
  .top-bar-right { display: none; }
}

/* ── HEADER SOCIAL TOP ── */
.header-social-top {
  display: flex;
  gap: 12px;
  margin-left: auto;
  margin-right: 28px;
}
.header-social-top a {
  color: var(--dark);
  font-size: 1rem;
  transition: color 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
}
.header-social-top a:hover {
  color: var(--gold);
  background: rgba(184,148,62,0.1);
}
@media (max-width: 900px) {
  .header-social-top { display: none; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  position: relative;
  transition: color var(--trans);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--trans);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-lt); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 50px;
  letter-spacing: .1em;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold-lt) !important; transform: none; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  #header { top: 86px; left: 12px; right: 12px; } /* Adjusted for border and stacked top bar */
  #header.scrolled { top: 12px; }
  .logo { font-size: 2.2rem; }
  .logo-tagline { font-size: 0.7rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: rgba(26,21,18,.98);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
  }
  .nav-links.open { max-height: 500px; padding: 24px 0 32px; }
  .nav-links a { padding: 14px 24px; width: 100%; text-align: center; }
}

/* ─── PAGE HERO ─────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: .4;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.05);
}
.page-hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
}
.page-hero-content .section-label { color: var(--gold-lt); }
.page-hero-content h1 {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
}
.page-hero-content h1 em { color: var(--gold-lt); font-style: italic; }

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 64px 24px 32px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo {
  font-family: var(--font-h);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-desc {
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: var(--trans);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-title {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--white);
  transition: var(--trans);
}
.footer-contact-item i { 
  color: var(--gold); 
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}
.footer-contact-item span {
  font-weight: 500;
}
.footer-contact-item:hover {
  color: var(--gold-lt);
}
.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: color var(--trans); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── SCROLL TO TOP ─────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px; height: 46px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#scrollTop.visible { opacity: 1; pointer-events: all; }
#scrollTop:hover { background: var(--dark); transform: translateY(-3px); }

/* ─── HERO (HOME) ───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, #2e1f0f 100%);
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,21,18,.9) 40%, rgba(26,21,18,.2) 100%);
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
}
.hero-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  max-width: 720px;
  margin-bottom: 24px;
}
.hero h1 em { color: var(--gold-lt); font-style: italic; }
.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 5;
}
@media (max-height: 700px) {
  .hero-scroll { display: none; }
}
.hero-scroll i { font-size: 1.1rem; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* --- GRID UTILITIES --- */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; gap: 24px; }
}

/* Space utilities */
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-56 { margin-top: 56px; }

@media (max-width: 768px) {
  .mt-48, .mt-56 { margin-top: 40px; }
}

/* ─── ABOUT STRIP (HOME) ────────────────────────────────── */
.about-strip {
  background: var(--dark);
  padding: 80px 24px;
}
.about-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-strip-inner { grid-template-columns: 1fr; gap: 48px; }
}
.about-img-wrap {
  position: relative;
  height: clamp(340px, 50vh, 480px);
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184,148,62,.25);
  border-radius: var(--radius);
  pointer-events: none;
}
.about-img-wrap video, .agence-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-preview-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
  filter: blur(2px) brightness(0.65);
}

.video-preview-wrap:hover .video-thumbnail {
  transform: scale(1.05);
  filter: blur(0) brightness(0.9);
}

.video-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 48px;
  background: rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-bottom: 1px solid rgba(184,148,62,.3);
  backdrop-filter: blur(4px);
}

.play-video-btn {
  position: absolute;
  inset: 0;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  transition: background .4s ease;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 20;
}

.play-video-btn:hover {
  background: rgba(0,0,0,.15);
}

.play-video-btn i {
  width: 85px;
  height: 85px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 7px;
  font-size: 2rem;
  box-shadow: 0 0 0 10px rgba(184,148,62,.2), 0 10px 30px rgba(0,0,0,.5);
  transition: all .4s ease;
}

.play-video-btn:hover i {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 0 15px rgba(184,148,62,.4), 0 15px 40px rgba(0,0,0,.6);
}

.play-video-btn span {
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 2.5vw;
  opacity: 0;
  transition: opacity .4s ease;
}

.video-modal.open {
  display: flex;
  opacity: 1;
}

.video-modal-content {
  width: 100%;
  max-width: 1100px;
  max-height: 85vh;
  position: relative;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.video-modal-content video {
  width: 100%;
  height: 100%;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}

.video-modal-close:hover {
  background: var(--gold);
}
.about-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  font-family: var(--font-h);
  box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-size: 2rem; font-weight: 600; }
.about-badge span { font-size: .82rem; font-weight: 300; }
.about-text { color: var(--white); }
.about-text .section-label { color: var(--gold-lt); }
.about-text .section-title { color: var(--white); }
.about-text .section-title em { color: var(--gold-lt); }
.about-text p {
  color: rgba(255,255,255,.65);
  line-height: 1.85;
  font-size: .97rem;
  margin: 20px 0;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.stat strong {
  display: block;
  font-family: var(--font-h);
  font-size: 2.4rem;
  color: var(--gold-lt);
}
.stat span {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ─── SERVICES CARDS (HOME) ─────────────────────────────── */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: var(--trans);
  border: 1px solid rgba(0,0,0,.04);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.6rem;
  color: var(--white);
  flex-shrink: 0;
}
.service-card h3 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-card p {
  font-size: .9rem;
  font-weight: 300;
  color: var(--text-lt);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-card .link-arrow {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--trans);
}
.service-card .link-arrow:hover { gap: 12px; }

/* ─── PORTFOLIO PREVIEW (HOME) ──────────────────────────── */
.portfolio-preview { background: var(--cream2); }
.portfolio-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 900px) { .portfolio-grid-home { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .portfolio-grid-home { grid-template-columns: 1fr; } }
.port-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.port-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.port-card:hover img { transform: scale(1.07); }
.port-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,21,18,.8) 30%, transparent 70%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: var(--trans);
}
.port-card:hover .port-card-overlay { opacity: 1; }
.port-card-overlay h4 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}
.port-card-overlay span {
  font-size: .78rem;
  color: var(--gold-lt);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.testimonials-section { background: var(--dark); overflow: hidden; }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-label { color: var(--gold-lt); }
.testimonials-section .section-sub { color: rgba(255,255,255,.55); }

.testimonials-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
  margin-top: 32px;
}
.testimonials-wrapper::before, .testimonials-wrapper::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.testimonials-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 100%);
}
.testimonials-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--dark) 0%, transparent 100%);
}
@media (max-width: 768px) {
  .testimonials-wrapper::before, .testimonials-wrapper::after {
    width: 50px;
  }
}

.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

.testi-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  width: 360px;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .testi-card {
    width: 290px;
    padding: 24px 20px;
  }
}
.testi-stars { color: var(--gold); margin-bottom: 16px; font-size: .9rem; }
.testi-text {
  font-size: .93rem;
  font-weight: 300;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-size: .9rem; color: var(--white); font-weight: 500; }
.testi-date { font-size: .78rem; color: rgba(255,255,255,.4); }

/* Custom grid for TECOFI section */
.tecofi-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 1024px) {
  .tecofi-grid {
    grid-template-columns: 4.5fr 5.5fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .tecofi-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.tecofi-card {
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) {
  .tecofi-card {
    height: 300px;
  }
}

/* ─── CTA STRIP ─────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--gold) 0%, #8b6914 100%);
  padding: 80px 24px;
  text-align: center;
}
.cta-strip h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-strip p {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 36px;
}
.cta-strip .btn-dark { font-size: .85rem; }

/* ─── INSTAGRAM STRIP ───────────────────────────────────── */
.insta-strip { background: var(--cream); }
.insta-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  color: var(--text-lt);
  margin-top: 8px;
}
.insta-handle i { color: #e1306c; }

/* ─── AGENCE PAGE ───────────────────────────────────────── */
.about-strip-inner {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 80px;
  align-items: center;
}
.agence-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 96px 0;
}
@media (max-width: 768px) {
  .agence-intro { grid-template-columns: 1fr; gap: 40px; }
}
.agence-img { height: 560px; border-radius: var(--radius); overflow: hidden; }
.agence-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
  transition: var(--trans);
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.value-card h3 {
  font-family: var(--font-h);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.value-card p { font-size: .9rem; color: var(--text-lt); line-height: 1.7; }

/* ─── ÉVÉNEMENTS PRO / PARTICULIERS ────────────────────── */
.event-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}
@media (max-width: 768px) { .event-cards-grid { grid-template-columns: 1fr; } }
.event-big-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: clamp(320px, 45vh, 420px);
}
@media (max-width: 480px) {
  .event-big-card { height: 360px; }
}
.event-big-card img { transition: transform .7s ease; }
.event-big-card:hover img { transform: scale(1.05); }
.event-big-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(26,21,18,.9) 0%, transparent 100%);
  color: var(--white);
}
.event-big-card-body h3 {
  font-family: var(--font-h);
  font-size: 1.55rem;
  margin-bottom: 8px;
}
.event-big-card-body p {
  font-size: .87rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ─── PORTFOLIO CATEGORIES ──────────────────────────────── */
.cat-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}
.cat-tab {
  padding: 10px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,.12);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans);
  background: transparent;
  color: var(--text);
}
.cat-tab:hover, .cat-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .portfolio-masonry {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .portfolio-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .portfolio-masonry {
    grid-template-columns: 1fr;
  }
}
.masonry-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item.hidden { display: none; }

/* ─── BLOG ──────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: var(--trans);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.blog-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.blog-img img { transition: transform .5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 28px; }
.blog-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,148,62,.1);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.blog-body h3 {
  font-family: var(--font-h);
  font-size: 1.25rem;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-body p {
  font-size: .88rem;
  color: var(--text-lt);
  line-height: 1.7;
  margin-bottom: 20px;
}
.blog-meta {
  font-size: .78rem;
  color: var(--text-lt);
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-meta i { color: var(--gold); }

/* ─── CONTACT PAGE ──────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  padding: 96px 0;
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 48px; } }
.contact-info h2 {
  font-family: var(--font-h);
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 16px;
}
.contact-info p { font-size: .95rem; color: var(--text-lt); line-height: 1.8; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 4px; }
.contact-item span { font-size: .95rem; color: var(--text); }

/* Quote form */
.quote-form {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
}
@media (max-width: 560px) { .quote-form { padding: 32px 24px; } }
.quote-form h3 {
  font-family: var(--font-h);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.quote-form .form-subtitle {
  font-size: .88rem;
  color: var(--text-lt);
  margin-bottom: 32px;
  line-height: 1.6;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 10px;
  font-family: var(--font-b);
  font-size: .95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,148,62,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; }
.form-submit {
  width: 100%;
  padding: 16px;
  font-size: .9rem;
  letter-spacing: .12em;
}
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(184,148,62,.08);
  border-radius: 12px;
  border: 1px solid rgba(184,148,62,.25);
  margin-top: 20px;
}
.form-success i { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.form-success p { color: var(--text); font-size: .95rem; }

/* ─── LIGHTBOX ──────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-content {
  position: relative;
  max-width: 900px;
  max-height: 90vh;
  border-radius: var(--radius);
  overflow: hidden;
}
.lightbox-content img {
  max-height: 90vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}
.lightbox-close:hover { background: var(--gold); }

/* ─── ANIMATIONS ────────────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}
[data-aos="fade-left"] { transform: translateX(-30px); }
[data-aos="fade-left"].aos-animate { transform: none; }
[data-aos="fade-right"] { transform: translateX(30px); }
[data-aos="fade-right"].aos-animate { transform: none; }
[data-aos-delay="100"] { transition-delay: .1s; }
[data-aos-delay="200"] { transition-delay: .2s; }
[data-aos-delay="300"] { transition-delay: .3s; }
[data-aos-delay="400"] { transition-delay: .4s; }

/* ── FLOATING SOCIAL BAR ── */
.floating-social {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.floating-social a {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid rgba(184,148,62,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.floating-social a:hover {
  background: var(--gold);
  color: #fff;
  transform: scale(1.1) translateX(5px);
  border-color: var(--gold);
}

@media (max-width: 1100px) {
  .floating-social { display: none; }
}

/* ── SOCIALS IN FOOTER / SECTIONS ── */
.footer-social a {
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
}
.footer-social a:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-4px);
}


/* ── BLOG BUBBLES ── */
.blog-bubble-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.blog-bubble {
  background: var(--white);
  border-radius: 30px; /* Bubble look */
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.blog-bubble:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(184,148,62,0.12);
  border-color: var(--gold-lt);
}

.blog-bubble-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  border: 4px solid var(--cream2);
  transition: all 0.4s ease;
}

.blog-bubble:hover .blog-bubble-img {
  border-color: var(--gold);
  transform: scale(1.05);
}

.blog-bubble-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-bubble h3 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-bubble .blog-date {
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  opacity: 0.8;
}

/* Modal for full text */
.blog-post-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(26,21,18,0.92);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blog-post-modal.active {
  display: flex;
  opacity: 1;
}

.blog-modal-content {
  background: var(--white);
  width: 100%;
  max-width: 860px;
  max-height: 85vh;
  border-radius: var(--radius);
  overflow-y: auto;
  position: relative;
  padding: 60px;
  transform: translateY(40px);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 30px 100px rgba(0,0,0,0.5);
}

.blog-post-modal.active .blog-modal-content {
  transform: translateY(0);
}

.blog-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--cream2);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--dark);
  transition: all 0.3s ease;
}

.blog-modal-close:hover {
  background: var(--gold);
  color: #fff;
  transform: rotate(90deg);
}

.blog-modal-body h2 {
  font-family: var(--font-h);
  font-size: 2.6rem;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.blog-modal-body .blog-full-date {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-modal-body p {
  line-height: 1.95;
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.blog-modal-img {
  width: 100%;
  height: 450px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.blog-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .blog-modal-content {
    padding: 50px 20px 30px;
    max-height: 90vh;
    border-radius: 0;
  }
  .blog-modal-body h2 {
    font-size: 1.7rem;
  }
  .blog-modal-img {
    height: 220px;
    margin-bottom: 24px;
  }
  .blog-modal-close {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
  }
}

/* Custom Image Heights */
.h-180 { height: 180px; }
.h-280 { height: 280px; }
.h-320 { height: 320px; }
.h-420 { height: 420px; }
.h-500 { height: 500px; }
.h-520 { height: 520px; }
.h-560 { height: 560px; }

@media (max-width: 768px) {
  .h-180 { height: 150px; }
  .h-280, .h-320 { height: 220px; }
  .h-420, .h-500, .h-520, .h-560 { height: 320px; }
}

.img-contain { object-fit: contain; }
.img-top { object-position: top; }

/* ── FLOATING CONTACT BUBBLES ── */
.floating-contact {
  position: fixed;
  right: 30px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 998;
}

.contact-bubble {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 6px 20px 6px 6px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 1px solid rgba(184,148,62,0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: var(--dark);
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-bubble i {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-bubble span {
  white-space: nowrap;
}

.contact-bubble:hover {
  transform: translateX(-10px);
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.contact-bubble:hover i {
  background: #fff;
  color: var(--gold);
}

@media (max-width: 640px) {
  .floating-contact { right: 20px; bottom: 100px; }
  .contact-bubble span { display: none; }
  .contact-bubble { padding: 0; width: 50px; height: 50px; justify-content: center; }
  .contact-bubble i { width: 44px; height: 44px; }
}

/* ── MOODBOARD CAROUSEL ── */
.moodboard-carousel {
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 0;
  padding-bottom: 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.moodboard-carousel::-webkit-scrollbar {
  display: none;
}

.moodboard-item {
  width: 100%;
  flex-shrink: 0;
  scroll-snap-align: center;
  padding: 0 10px;
}

.moodboard-item-inner {
  width: 100%;
  height: 450px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,0.08);
  background: var(--white);
  cursor: pointer;
  border: 1px solid rgba(184,148,62,.1);
}

.moodboard-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
  transition: transform 0.6s ease;
  padding: 20px;
}

.moodboard-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .moodboard-item-inner { height: 320px; }
}

