/* ===== ETHICA WEST — STYLESHEET ===== */

:root {
  --red: #c0161a;
  --red-dark: #920f12;
  --red-light: #e81c21;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --gray: #888;
  --gray-light: #ccc;
  --white: #f5f3f0;
  --white-pure: #ffffff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ===== UTILS ===== */
.red { color: var(--red); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1e1e1e;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
}

.logo-e {
  color: var(--red);
}

.logo-accent {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 1rem 2rem;
  border-top: 1px solid #1e1e1e;
}

.mobile-menu a {
  color: var(--gray-light);
  text-decoration: none;
  padding: 0.75rem 0;
  font-size: 1rem;
  border-bottom: 1px solid #1e1e1e;
  font-weight: 500;
}

.mobile-menu.open {
  display: flex;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white-pure);
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  border: 2px solid var(--red);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.75rem 1.75rem;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  border: 1px solid rgba(245,243,240,0.25);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 9rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
}

.hero-grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(192,22,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,22,26,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.stroke-text {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.hero-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  border: 1px solid #2a2a2a;
  background: var(--dark-2);
  padding: 3rem;
  text-align: center;
  position: relative;
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: var(--red);
}

.badge-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.badge-slash {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--red);
}

.badge-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
}

/* ===== MARQUEE ===== */
.marquee-bar {
  background: var(--red);
  overflow: hidden;
  padding: 0.75rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white-pure);
  padding: 0 1rem;
}

.marquee-track .dot {
  color: rgba(255,255,255,0.5);
}

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

/* ===== ABOUT ===== */
.about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.about-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.about-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--white);
}

.about-right p {
  color: var(--gray);
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.about-right strong {
  color: var(--white);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1e1e1e;
  border: 1px solid #1e1e1e;
}

.stat-card {
  background: var(--dark-2);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
  letter-spacing: 0.05em;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
  background: var(--dark-2);
  padding: 6rem 2rem;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}

.so-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.so-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 1rem;
}

.so-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
}

.so-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #2a2a2a;
}

.so-card {
  background: var(--dark);
  padding: 2rem 1.5rem;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.so-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.2s;
}

.so-card:hover {
  background: var(--dark-3);
}

.so-card:hover::before {
  background: var(--red);
}

.so-card.featured::before {
  background: var(--red);
}

.so-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.so-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.so-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.so-cta {
  max-width: 1200px;
  margin: 2rem auto 0;
  text-align: center;
}

/* ===== DIRECTOR ===== */
.director {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.dir-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 1rem;
}

.director h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dir-title {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.dir-text {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.dir-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.dir-monogram {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--dark-3);
  letter-spacing: 0.1em;
  border: 1px solid #2a2a2a;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dir-monogram::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: var(--red);
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 9rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.ph-inner {
  position: relative;
  z-index: 1;
}

.ph-tag {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
}

.ph-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 500px;
}

.ph-deco {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  color: rgba(255,255,255,0.02);
  letter-spacing: 0.1em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ===== SERVICES PAGE ===== */
.service-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.service-section.alt {
  background: var(--dark-2);
  max-width: 100%;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}

.service-section.alt .ss-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.ss-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0;
}

.service-section.alt .ss-header {
  max-width: 1200px;
  margin: 4rem auto 3rem;
  padding: 0 2rem;
}

.ss-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}

.red-bg {
  background: var(--red);
  color: var(--white-pure);
}

.dark-bg {
  background: var(--dark-3);
  color: var(--white);
  border: 1px solid #333;
}

.ss-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.ss-header p {
  color: var(--gray);
  max-width: 500px;
}

.ss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1e1e1e;
}

.ss-item {
  background: var(--black);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}

.service-section.alt .ss-item {
  background: var(--dark-2);
}

.ss-item:hover {
  background: var(--dark-3);
}

.ss-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(255,255,255,0.08);
  margin-bottom: 1rem;
}

.red-num {
  color: rgba(192,22,26,0.25);
}

.ss-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.ss-item p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ===== PROCESS ===== */
.process {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.proc-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 1rem;
}

.process h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 3rem;
}

.proc-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.proc-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 1.5rem;
}

.proc-step:first-child { padding-left: 0; }
.proc-step:last-child { padding-right: 0; }

.proc-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
}

.proc-step-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.proc-step-body p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
}

.proc-line {
  width: 1px;
  height: 40px;
  background: #333;
  flex-shrink: 0;
  margin-top: 1rem;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--red);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white-pure);
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-primary {
  background: var(--white-pure);
  color: var(--red);
  border-color: var(--white-pure);
  font-weight: 700;
}

.cta-band .btn-primary:hover {
  background: var(--black);
  color: var(--white-pure);
  border-color: var(--black);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-sub {
  color: var(--gray);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2);
  border: 1px solid #2a2a2a;
  color: var(--white);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}

.form-group select option {
  background: var(--dark-2);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

.form-submit {
  border: none;
  font-size: 1rem;
  padding: 1rem 2rem;
  cursor: pointer;
  align-self: flex-start;
}

.form-success {
  background: rgba(192,22,26,0.1);
  border: 1px solid var(--red);
  color: var(--white);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #1e1e1e;
  border: 1px solid #1e1e1e;
}

.contact-card {
  background: var(--dark-2);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cc-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.5;
}

.muted {
  color: var(--gray);
  font-size: 0.88em;
}

.info-normes {
  background: var(--dark);
  padding: 1.5rem;
  border-top: 2px solid var(--red);
}

.info-normes h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 1rem;
  font-weight: 600;
}

.info-normes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-normes li {
  font-size: 0.85rem;
  color: var(--gray);
  padding-left: 1rem;
  position: relative;
}

.info-normes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.7rem;
}

/* ===== REASSURANCE ===== */
.reassurance {
  background: var(--dark-2);
  border-top: 1px solid #1e1e1e;
  padding: 4rem 2rem;
}

.reas-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.reas-item {
  text-align: center;
  padding: 2rem;
}

.reas-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.reas-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.reas-item p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid #1e1e1e;
  padding: 4rem 2rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .logo {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.65;
}

.footer-bottom {
  border-top: 1px solid #1e1e1e;
  padding: 1.25rem 0;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 4rem;
  }

  .hero-visual { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

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

  .director {
    grid-template-columns: 1fr;
  }

  .dir-visual { display: none; }

  .ss-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proc-steps {
    flex-direction: column;
    gap: 2rem;
  }

  .proc-line {
    width: 40px;
    height: 1px;
  }

  .proc-step { padding: 0; }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .reas-grid {
    grid-template-columns: 1fr;
    gap: 0;
    background: #1e1e1e;
  }

  .reas-item {
    border-bottom: 1px solid #1e1e1e;
    background: var(--dark-2);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .so-grid {
    grid-template-columns: 1fr;
  }

  .ss-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .ph-deco { display: none; }

  .hero-title {
    font-size: 3rem;
  }
}
/* ===== LOGO IMAGE ===== */
.logo-img-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
 
.logo-img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
