:root {
  --bg: #f5f0eb;
  --bg-surface: #ece5dc;
  --text: #2a2a2a;
  --text-muted: #777;
  --accent: #b08d57;
  --accent-light: #c8a96e;
  --border: rgba(42, 42, 42, 0.1);
  --dark-bg: #1a1816;
  --dark-surface: #2e2a26;
  --dark-text: #f5f0eb;
  --dark-text-muted: #8a8480;
  --dark-border: rgba(176, 141, 87, 0.15);
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --section-padding: 1.5rem 1.5rem;
  --ease: cubic-bezier(0.25, 0, 0.15, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; height: auto; }

.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white; padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px; z-index: 200; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.section-tag {
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.15; letter-spacing: -0.01em;
}
.section-subtitle {
  font-size: 0.95rem; color: var(--text-muted); max-width: 500px;
  margin: 0.75rem auto 0; line-height: 1.7;
}

.btn {
  display: inline-block; font-family: var(--font-sans); font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; border-radius: 25px; border: none;
  cursor: pointer; transition: all 0.3s var(--ease);
}
.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover { background: var(--accent); color: white; }

.section { padding: var(--section-padding); }
.section-header { text-align: center; margin-bottom: 1rem; }
.section-dark { background: var(--dark-bg); color: var(--dark-text); }
.section-dark .section-subtitle { color: var(--dark-text-muted); }

/* ---- Navigation ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 3rem;
  background: rgba(245, 240, 235, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.4s var(--ease);
}
.nav.scrolled { padding: 1rem 3rem; }

.nav-logo {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400;
  letter-spacing: 0.03em; color: var(--text);
}

.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); transition: color 0.3s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 0.5rem 1.3rem !important;
  border: 1px solid var(--text) !important;
  border-radius: 20px !important;
  color: var(--text) !important;
  transition: all 0.3s var(--ease) !important;
}
.nav-cta:hover {
  background: var(--text) !important;
  color: var(--bg) !important;
}

.lang-toggle {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.7rem;
  letter-spacing: 0.1em; display: flex; align-items: center; gap: 0.3rem;
}
.lang-option { color: var(--text-muted); transition: all 0.3s; }
.lang-option.active { color: var(--text); font-weight: 500; text-decoration: underline; }
.lang-separator { color: var(--text-muted); }

.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text); transition: all 0.3s var(--ease);
}
.nav-toggle.active span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.nav-toggle.active span:last-child { transform: rotate(-45deg) translate(3px, -3px); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  background: var(--bg);
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 300; color: var(--text);
}

@media (max-width: 900px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
}

/* ---- Hero ---- */
.hero {
  position: relative; min-height: auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 4rem 1.5rem 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-surface) 100%);
}
.hero-content { position: relative; max-width: 800px; width: 100%; margin-bottom: 1.5rem; }

.hero-tag {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 0.8rem;
}

.hero-stats {
  display: flex; justify-content: center; gap: 3rem;
  padding: 0.8rem 0; margin-bottom: 0.8rem;
}
.stat { text-align: center; }
.stat-value {
  font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4rem); display: block;
  color: var(--text); line-height: 1; margin-bottom: 0.3rem; font-weight: 300;
}
.stat-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* Hero video marquee - full width scrolling */
.hero-video-marquee {
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
}

.hero-marquee-track {
  display: flex;
  gap: 1rem;
  animation: hero-scroll 40s linear infinite;
  width: max-content;
}

.hero-marquee-track:hover {
  animation-play-state: paused;
}

.hero-reel-card {
  flex-shrink: 0;
  width: 280px;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.hero-reel-card:hover { transform: scale(1.03); }
.hero-reel-card.playing { transform: scale(1.03); z-index: 2; }
.hero-reel-card video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-reel-card .reel-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-size: 0.75rem; color: white; z-index: 2;
}

@keyframes hero-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Social Proof Marquee ---- */
.social-proof {
  padding: 1.2rem 0; overflow: visible;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.social-proof .section-tag { text-align: center; margin-bottom: 0.8rem; }


/* ---- Filter Tabs ---- */
.filter-tabs {
  display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem;
}
.filter-tab {
  font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 20px;
  border: 1px solid var(--border); background: transparent;
  color: var(--text-muted); cursor: pointer; transition: all 0.3s;
}
.filter-tab.active, .filter-tab:hover {
  border-color: var(--accent); color: var(--accent);
}
/* ---- About ---- */

/* ---- Contact ---- */
.contact { background: var(--bg-surface); }

/* ---- Footer ---- */
.footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem; font-size: 0.75rem; color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.footer-socials { display: flex; gap: 1.5rem; }
.footer-socials a { transition: color 0.3s; }
.footer-socials a:hover { color: var(--accent); }

/* ---- Fade-in on scroll ---- */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  :root { --section-padding: 1.2rem 1rem; }
  .footer { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-stats { gap: 1.5rem; }
  .filter-tabs { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.4rem; }
  .hero-reel-card { width: 180px; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .stat-value { font-size: 2rem; }
  .section-title { font-size: clamp(1.8rem, 5vw, 2.5rem); }
}

/* ---- Phone Mockup Grid ---- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.phone-mockup {
  text-align: center;
}

.phone-frame {
  position: relative;
  background: #1a1a1a;
  border-radius: 24px;
  padding: 8px;
  aspect-ratio: 9 / 17;
  overflow: hidden;
  cursor: pointer;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 8px;
  background: #333;
  border-radius: 4px;
  z-index: 5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-screen .card-thumbnail {
  position: absolute;
  inset: 0;
  background: var(--dark-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--dark-text-muted);
  border-radius: 16px;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: opacity 0.3s;
  pointer-events: none;
}

.play-overlay::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent white;
  margin-left: 3px;
}

.phone-frame:hover .play-overlay,
.phone-mockup.playing .play-overlay {
  opacity: 0;
}

.phone-label {
  margin-top: 0.3rem;
}

.phone-label-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
}

.phone-label-brand {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-style: italic;
}

.section-dark .phone-label-category {
  color: var(--dark-text);
}
.section-dark .phone-label-brand {
  color: var(--dark-text-muted);
}

/* ---- Instagram Photo Cards ---- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.instagram-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.instagram-header {
  display: flex;
  justify-content: flex-end;
  padding: 8px 10px 4px;
  font-size: 14px;
  color: #262626;
  letter-spacing: 2px;
}

.instagram-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.instagram-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
}

.instagram-actions {
  display: flex;
  gap: 10px;
}

.instagram-actions svg, .instagram-bookmark svg {
  width: 20px;
  height: 20px;
}

.heart-icon { color: #ed4956; fill: #ed4956; }

/* ---- Logo Grid Static ---- */
.logo-grid-static {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0.8rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo-circle {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  padding: 12px;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.logo-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.logo-circle img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* Fill circle with logo image */
.logo-circle.fill {
  padding: 0;
}
.logo-circle.fill img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Dark background for white logos */
.logo-circle.dark-bg {
  background: #1a1a1a;
}

/* ---- Contact Centered ---- */
.contact-centered {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.contact-photo {
  width: 180px;
  height: 220px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  overflow: hidden;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-big-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.contact-devis {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.contact-email-block {
  margin-bottom: 1rem;
}

.contact-email-block p {
  font-size: 0.95rem;
}

.contact-email-block a {
  text-decoration: underline;
}

.highlight {
  display: inline;
  background: #fffd47;
  padding: 2px 8px;
  font-style: italic;
  font-size: 0.9rem;
}

.contact-socials-block {
  margin-top: 1rem;
}

.contact-socials-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.contact-socials-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.contact-socials-icons a {
  transition: transform 0.3s;
}

.contact-socials-icons a:hover {
  transform: scale(1.1);
}

/* ---- Responsive: grids ---- */
@media (max-width: 900px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .photo-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (max-width: 600px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .phone-frame { border-radius: 16px; padding: 5px; }
  .phone-screen { border-radius: 12px; }
  .phone-frame::before { width: 30px; height: 6px; top: 4px; }
  .contact-photo { width: 150px; height: 190px; }
}

/* ---- About: simple layout ---- */
.about-simple {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.about-simple .about-image {
  width: 320px;
  border-radius: 10px;
  overflow: hidden;
}

.about-simple .about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text-block {
  padding-top: 0.5rem;
}

.btn-large {
  font-size: 0.9rem;
  padding: 1.1rem 3rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .about-simple { grid-template-columns: 1fr; text-align: center; }
  .about-simple .about-image { width: 250px; margin: 0 auto; }
}

/* ---- About: heading, bio, collabs ---- */
.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.about-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.about-collabs {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
