:root {
  --black: #000;
  --near-black: #0a0a0a;
  --orange: #ff6000;
  --orange-grad-start: #c64501;
  --orange-grad-end: #f59802;
  --white: #fff;
  --off-white: #f7f7f7;
  --grey-light: #c5c5c5;
  --grey-mid: #999;
  --grey-border: #9b9b9b;
  --panel: rgba(255, 255, 255, 0.13);
  --slate: #1f2429;
  --maroon: #240a02;
  --container: 1200px;
  --font: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; }
p { margin: 0; }
section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-primary {
  background: linear-gradient(90deg, var(--orange-grad-start) 0%, var(--orange-grad-end) 100%);
  color: var(--white);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--grey-border);
  color: var(--white);
}
.btn-dark {
  background: #141414;
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--grey-light);
  margin: 0 0 12px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, padding 0.3s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.92);
  padding: 10px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo { flex-shrink: 0; }
.logo img { height: 56px; transition: height 0.3s ease; }
.site-header.scrolled .logo-full { height: 34px; }

.main-nav { flex: 1; }
.main-nav > ul { display: flex; align-items: center; gap: 32px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.42px;
  color: rgba(255, 255, 255, 0.57);
  border-bottom: 2px solid transparent;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--white);
  font-weight: 700;
}
.main-nav > ul > li > a.active { border-bottom-color: var(--orange); }
.caret { font-size: 10px; }

.dropdown {
  position: absolute;
  top: 100%; left: 0;
  min-width: 200px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.has-dropdown:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li { position: relative; }
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #999;
  white-space: nowrap;
}
.dropdown a:hover { color: var(--white); }
.dropdown.sub { top: 0; left: 100%; }

.header-actions { display: flex; gap: 16px; flex-shrink: 0; }
.header-actions svg { width: 20px; height: 20px; fill: var(--white); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--white); }

/* ---------- Hero ---------- */
.hero {
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 140px 24px 80px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 65%);
}
.hero-content { position: relative; max-width: var(--container); margin: 0 auto; width: 100%; }
.hero h1 {
  font-size: 46px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.25;
  max-width: 780px;
  margin: 0 0 36px;
}
.hero h1 strong { font-weight: 700; color: var(--white); }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Services ---------- */
.services {
  max-width: var(--container);
  margin: 0 auto;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.service-card {
  padding: 48px 32px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.service-card:last-child { border-right: none; }
.service-icon { width: 56px; height: 56px; fill: none; stroke: var(--white); margin-bottom: 20px; }
.service-icon path, .service-icon rect, .service-icon polygon { fill: var(--white); }
.service-card h3 { color: var(--orange); font-size: 24px; margin-bottom: 16px; }
.service-card li { color: rgba(255, 255, 255, 0.57); font-size: 14px; padding: 4px 0; }
.services-cta { text-align: center; padding: 48px 24px; }

/* ---------- Pitch banner ---------- */
.pitch {
  background-size: cover;
  background-position: center;
  padding: 90px 24px;
}
.pitch-overlay {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: rgba(0, 0, 0, 0.45);
  padding: 40px;
  border-radius: 4px;
}
.pitch-overlay p { font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.5; }

/* ---------- Quotidien ---------- */
.quotidien {
  background: var(--panel);
  text-align: center;
  padding: 80px 24px;
}
.quotidien h2 { font-size: 46px; font-weight: 300; color: rgba(255, 255, 255, 0.5); margin: 0 auto 48px; max-width: 700px; }
.quotidien h2 strong { color: var(--white); font-weight: 700; }
.quotidien-gallery {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quotidien-gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 4 / 3; }
.quotidien-gallery img { width: 100%; height: 100%; object-fit: cover; }
.quotidien-gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px;
  text-align: left;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  display: flex; flex-direction: column; gap: 2px;
}
.quotidien-gallery figcaption strong { color: var(--orange); font-size: 18px; }
.quotidien-gallery figcaption span { color: rgba(255, 255, 255, 0.8); font-size: 14px; }
.quotidien-cta { margin-top: 48px; }

/* ---------- Work title ---------- */
.work-title { background: var(--black); text-align: center; padding: 60px 24px; }
.work-title h2 { font-size: 46px; }

/* ---------- Projects ---------- */
.projects {
  max-width: var(--container);
  margin: 0 auto 60px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.project-card {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  background-color: #141414;
  display: flex;
  align-items: flex-end;
  border-radius: 4px;
  overflow: hidden;
}
.project-overlay {
  width: 100%;
  padding: 28px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}
.project-overlay h3 { font-size: 25px; margin-bottom: 6px; }
.project-overlay p { font-size: 14px; font-weight: 300; margin-bottom: 14px; }
.project-overlay a { font-size: 16px; font-weight: 700; border-bottom: 1px solid var(--white); padding-bottom: 2px; }

/* ---------- Clients ---------- */
.clients {
  background: linear-gradient(90deg, #9e3701 0%, #ce7e01 100%);
  text-align: center;
  padding: 80px 24px;
}
.clients .eyebrow { color: rgba(255, 255, 255, 0.6); }
.clients h2 { font-size: 46px; margin-bottom: 48px; }
.clients-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.clients-grid img { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--slate);
  text-align: center;
  padding: 100px 24px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-slide {
  display: none;
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-slide.active { display: block; }
.testimonial-slide h3 { font-size: 30px; line-height: 1.4; margin-bottom: 20px; }
.testimonial-slide p { color: var(--grey-light); font-size: 18px; }

/* ---------- Contact ---------- */
.contact {
  background: linear-gradient(0deg, #000 0%, var(--maroon) 100%);
  padding: 100px 24px;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-intro h2 { font-size: 46px; font-weight: 300; color: rgba(255, 255, 255, 0.6); }
.contact-intro h2 strong { color: var(--white); font-weight: 700; }
.contact-form h3 { font-size: 18px; text-transform: capitalize; margin-bottom: 20px; }
.contact-form label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.57);
  margin-bottom: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
}
.contact-form button { margin-top: 8px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-message {
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 16px;
}
.form-message.success { background: rgba(46, 160, 67, 0.15); border: 1px solid #2ea043; color: #4ade80; }
.form-message.error { background: rgba(220, 38, 38, 0.12); border: 1px solid #dc2626; color: #f87171; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--black);
  padding: 70px 24px 40px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-watermark {
  position: absolute;
  bottom: -10%; left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  opacity: 0.06;
  pointer-events: none;
}
.footer-content {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-col h4 { font-size: 18px; margin-bottom: 12px; }
.footer-col p { font-size: 14px; color: rgba(255, 255, 255, 0.7); margin-bottom: 6px; }
.footer-col a:hover { color: var(--orange); }

/* ---------- Page hero (Services / Projets) ---------- */
.page-hero {
  background: linear-gradient(135deg, #000 60%, var(--orange) 140%);
  text-align: center;
  padding: 180px 24px 70px;
}
.page-hero-plain {
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 96, 0, 0.18) 0%, #000 60%);
  padding: 170px 24px 60px;
}
.page-hero h1 { font-size: 46px; line-height: 1.3; max-width: 820px; margin: 0 auto; }
.page-hero .accent { color: var(--orange); font-weight: 300; }
.page-hero-plain h1 { font-size: 46px; }

/* ---------- Services overview banner ---------- */
.services-banner {
  background-size: cover;
  background-position: center;
  padding: 90px 24px;
  position: relative;
}
.services-banner::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.5); }
.services-overview {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.overview-card {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 40px 28px;
  text-align: center;
}
.overview-card .service-icon { width: 48px; height: 48px; margin-bottom: 18px; }
.overview-card .service-icon path, .overview-card .service-icon rect, .overview-card .service-icon polygon { fill: var(--white); }
.overview-card h3 { font-size: 24px; margin-bottom: 12px; }
.overview-card .tagline { font-size: 14px; color: rgba(255, 255, 255, 0.6); margin-bottom: 20px; line-height: 1.5; }
.overview-card li { font-size: 18px; font-weight: 700; padding: 6px 0; }

/* ---------- Service detail (alternating image/text) ---------- */
.service-detail {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.service-detail.reverse .detail-media { order: 2; }
.service-detail.reverse .detail-copy { order: 1; }
.detail-media { border-radius: 6px; overflow: hidden; aspect-ratio: 4 / 3; }
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-copy h2 { font-size: 30px; margin-bottom: 20px; }
.detail-copy p { font-size: 16px; color: rgba(255, 255, 255, 0.57); line-height: 1.7; }

/* ---------- Projects full grid (Projets page) ---------- */
.projects-full {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 24px 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-tile { display: block; border-radius: 4px; overflow: hidden; aspect-ratio: 4 / 3; background: #141414; }
.project-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.project-tile:hover img { transform: scale(1.06); }

/* ---------- Agence page ---------- */
.team-intro {
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.5;
}
.team-banner { background-size: cover; background-position: center; min-height: 60vh; }
.team-section { max-width: var(--container); margin: 0 auto; padding: 90px 24px; }
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.team-member { text-align: center; }
.team-member img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 6px; margin-bottom: 16px; }
.team-member h3 { font-size: 16px; margin-bottom: 4px; }
.team-member p { font-size: 14px; color: rgba(255, 255, 255, 0.57); }
.team-view-more { text-align: center; margin-top: 40px; }
.team-view-more a { color: var(--grey-light); font-size: 16px; border-bottom: 1px solid var(--grey-light); padding-bottom: 2px; }

.values-section {
  background: linear-gradient(90deg, #9e3701 0%, #ce7e01 100%);
  padding: 90px 24px;
}
.values-header { max-width: var(--container); margin: 0 auto 48px; }
.values-header .eyebrow { color: rgba(255, 255, 255, 0.6); }
.values-header h2 { font-size: 46px; }
.values-header h2 .light { font-weight: 300; color: rgba(255, 255, 255, 0.6); }
.values-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.value-item h3 { font-size: 18px; margin-bottom: 10px; }
.value-item p { font-size: 16px; color: rgba(255, 255, 255, 0.57); line-height: 1.6; }

.philosophy-section {
  background-size: cover;
  background-position: center;
  padding: 110px 24px;
  position: relative;
}
.philosophy-section::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55); }
.philosophy-section .inner { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.philosophy-section p.statement { font-size: 34px; font-weight: 300; line-height: 1.5; }

/* ---------- Project detail pages ---------- */
.project-meta-row {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}
.project-meta-row div { text-align: center; }
.project-meta-row .label { color: var(--orange); font-size: 24px; font-weight: 700; display: block; margin-bottom: 4px; }
.project-meta-row .value { color: rgba(255, 255, 255, 0.57); font-size: 16px; }

.project-media { max-width: var(--container); margin: 40px auto; padding: 0 24px; }
.project-media img { width: 100%; border-radius: 6px; }
.project-media.narrow { max-width: 900px; }

.project-body {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}
.project-body .desc p { font-size: 16px; color: rgba(255, 255, 255, 0.57); line-height: 1.8; margin-bottom: 18px; }
.project-body .deliverables h3 { color: var(--orange); font-size: 24px; margin-bottom: 18px; }
.project-body .deliverables li { font-size: 16px; color: rgba(255, 255, 255, 0.57); padding: 6px 0; }

.project-livrables {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.livrable-item { border-radius: 6px; overflow: hidden; background: #111; }
.livrable-item video, .livrable-item img { width: 100%; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
.livrable-item .caption { padding: 12px 16px; font-size: 14px; color: rgba(255, 255, 255, 0.57); }
.livrable-item.wide { grid-column: 1 / -1; }
.livrable-item.wide video { aspect-ratio: 21 / 9; }

.project-testimonial {
  max-width: 760px;
  margin: 0 auto;
  padding: 90px 24px;
  text-align: center;
}
.project-testimonial .quote-mark { width: 28px; opacity: 0.6; margin: 0 auto 20px; }
.project-testimonial blockquote { font-size: 24px; font-weight: 700; color: var(--orange); line-height: 1.5; margin: 0 0 20px; }
.project-testimonial cite { font-style: normal; color: var(--grey-light); font-size: 14px; }

.bts-section { max-width: var(--container); margin: 0 auto; padding: 40px 24px 80px; }
.bts-section h3 { color: var(--orange); font-size: 24px; margin-bottom: 30px; text-align: center; }
.bts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bts-grid figure { margin: 0; }
.bts-grid img { width: 100%; border-radius: 6px; }
.bts-grid figcaption { text-align: center; margin-top: 10px; font-size: 14px; color: rgba(255, 255, 255, 0.57); }

.project-full-banner { min-height: 400px; background-size: cover; background-position: center; }

.project-stats {
  background: rgba(164, 45, 205, 0.11);
  padding: 56px 24px;
}
.stats-row {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  text-align: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stats-row > div { flex: 1; min-width: 180px; padding: 0 16px; border-left: 1px solid rgba(255, 255, 255, 0.15); }
.stats-row > div:first-child { border-left: none; }
.stats-row .stat-value { color: var(--orange); font-size: 24px; font-weight: 700; display: block; margin-bottom: 8px; }
.stats-row .stat-label { color: rgba(255, 255, 255, 0.57); font-size: 15px; }

.project-nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 30px 24px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.project-nav a:hover { color: var(--white); }

/* ==================== Tablet ==================== */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .header-actions { display: none; }
  .menu-toggle { display: flex; }
  .hero h1 { font-size: 36px; }
  .quotidien-gallery { grid-template-columns: 1fr; gap: 16px; }
  .projects { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .page-hero, .page-hero-plain { padding-top: 140px; }
  .services-overview { grid-template-columns: 1fr; }
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail.reverse .detail-media, .service-detail.reverse .detail-copy { order: initial; }
  .projects-full { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .project-body { grid-template-columns: 1fr; }
  .bts-grid { grid-template-columns: 1fr; }
}

/* ==================== Mobile ==================== */
@media (max-width: 640px) {
  .header-inner { padding: 0 16px; }
  .logo img { height: 40px; }
  .hero { padding: 120px 16px 60px; min-height: 80vh; }
  .hero h1 { font-size: 28px; }
  .btn { padding: 14px 28px; font-size: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; }
  .quotidien h2, .work-title h2, .clients h2, .contact-intro h2 { font-size: 30px; }
  .clients-grid { gap: 28px; }
  .clients-grid img { height: 32px; }
  .testimonial-slide h3 { font-size: 22px; }
  .footer-content { grid-template-columns: 1fr; }
  .page-hero h1, .page-hero-plain h1 { font-size: 30px; }
  .projects-full { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .values-header h2 { font-size: 30px; }
  .philosophy-section p.statement { font-size: 22px; }
  .project-livrables { grid-template-columns: 1fr; }
  .project-meta-row { gap: 28px; }
  .stats-row { flex-direction: column; }
  .stats-row > div { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 16px; }
  .stats-row > div:first-child { border-top: none; }
}

/* Mobile nav drawer */
@media (max-width: 1024px) {
  .main-nav.open {
    display: block;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 80vw);
    background: #0a0a0a;
    padding: 100px 32px 32px;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5);
  }
  .main-nav.open > ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .main-nav.open > ul > li { width: 100%; }
  .main-nav.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: none; border: none; display: none; padding-left: 16px; }
  .main-nav.open .has-dropdown.open > .dropdown { display: block; }
  .main-nav.open .dropdown.sub { padding-left: 16px; }
}
