/* =========================================================
   S.R.C. — Conseil en restauration collective & services supports
   ========================================================= */

:root {
  --navy: #1e2a5e;
  --navy-dark: #15205a;
  --navy-deep: #101a4a;
  --orange: #ee7821;
  --orange-soft: #f9a26b;
  --ink: #0f172a;
  --text: #1f2937;
  --muted: #4b5563;
  --soft: #f5f7fb;
  --line: #e5e7eb;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 1px rgba(15, 23, 42, .04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, .08), 0 2px 8px rgba(15, 23, 42, .04);
  --shadow-lg: 0 30px 60px rgba(15, 23, 42, .15);
  --container: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orange); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}
.brand img {
  height: 56px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  position: relative;
}
.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 96px 0 96px;
  background:
    radial-gradient(1200px 600px at 110% -10%, rgba(238, 120, 33, .12), transparent 60%),
    radial-gradient(800px 500px at -10% 0%, rgba(30, 42, 94, .08), transparent 60%),
    linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(238, 120, 33, .1);
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 0 18px;
}
.eyebrow-light {
  color: var(--orange-soft);
  background: rgba(249, 162, 107, .14);
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--navy);
  margin: 0 0 22px;
  font-weight: 800;
}
.hero h1 .accent { color: var(--ink); font-weight: 700; }
.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 32px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-on-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
}
.btn-on-dark:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-lg {
  padding: 18px 28px;
  font-size: 16px;
  border-radius: 14px;
}
.btn-ico {
  display: inline-flex;
  width: 18px;
  height: 18px;
}
.btn-ico svg { width: 100%; height: 100%; }

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-bullets li {
  font-size: 14px;
  color: var(--muted);
}
.hero-bullets strong {
  display: block;
  font-size: 22px;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 2px;
}

.hero-art {
  position: relative;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background-image:
    linear-gradient(135deg, rgba(30, 42, 94, .25) 0%, rgba(30, 42, 94, .05) 55%, rgba(238, 120, 33, .12) 100%),
    url('assets/hero-meeting.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 60px -24px rgba(30, 42, 94, .35);
}
.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, .42);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-radius: 14px;
  box-shadow: 0 14px 36px -10px rgba(15, 23, 56, .40);
  padding: 16px 20px;
  min-width: 210px;
  border: 1px solid rgba(255, 255, 255, .55);
}
.hero-card p {
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(15, 23, 56, .35);
}
.hero-card small {
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(15, 23, 56, .35);
}
.hero-card .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  margin-bottom: 10px;
  box-shadow: 0 1px 2px rgba(15, 23, 56, .35);
}
.hero-card .dot.dot-orange { background: var(--orange); }
.card-a { top: 24px; left: 24px; }
.card-b { top: 50%; right: 24px; transform: translateY(-50%); }
.card-c { bottom: 24px; left: 24px; }

/* ===== Sections ===== */
.section { padding: 110px 0; }
.section-light { background: var(--soft); }
.section-dark {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #e2e8f0;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-head.light h2 { color: var(--white); }
.section-head.light .section-sub { color: rgba(226, 232, 240, .8); }
.section-head.light .section-num { color: var(--orange-soft); }
.section-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--orange);
  margin-bottom: 14px;
}
.section h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--navy);
  font-weight: 800;
  margin: 0 0 18px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
}

/* ===== Pillars ===== */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(238, 120, 33, .35);
}
.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(30, 42, 94, .08);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar h3 {
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--navy);
  font-weight: 700;
}
.pillar p { margin: 0; color: var(--muted); }

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--navy), var(--orange));
  opacity: 0;
  transition: opacity .25s ease;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service:hover::before { opacity: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(30, 42, 94, .1), rgba(238, 120, 33, .12));
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 28px; height: 28px; }
.service h3 {
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--navy);
  font-weight: 700;
}
.service > p { margin: 0 0 18px; color: var(--muted); }
.service ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px dashed var(--line);
  padding-top: 18px;
}
.service ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 15px;
}
.service ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* ===== Methodology ===== */
.method-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.method-steps li {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  backdrop-filter: blur(4px);
  transition: transform .25s ease, background .25s ease;
}
.method-steps li:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .08);
}
.step-num {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.method-steps h3 {
  color: var(--white);
  font-size: 18px;
  margin: 0 0 6px;
  font-weight: 700;
}
.step-duration {
  color: var(--orange-soft);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: .04em;
}
.method-steps li p:last-child {
  color: rgba(226, 232, 240, .8);
  margin: 0;
  font-size: 15px;
}

/* ===== Deliverables ===== */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.deliverable {
  padding: 28px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s ease, transform .25s ease;
}
.deliverable:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.deliverable h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
}
.deliverable p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* ===== Situations ===== */
.situations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.situation {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border-left: 4px solid var(--navy);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.situation:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--orange);
}
.situation h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
.situation p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ===== Reasons ===== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reason {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  border-top: 4px solid var(--orange);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.reason:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.reason h4 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
}
.reason p {
  margin: 0;
  color: var(--muted);
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 22px;
  font-size: 64px;
  line-height: 1;
  color: var(--orange);
  opacity: .25;
  font-family: Georgia, serif;
}
.testimonial blockquote {
  margin: 0 0 18px;
  font-style: italic;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.testimonial figcaption strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
}
.testimonial figcaption span {
  color: var(--muted);
  font-size: 13px;
}

/* ===== Contact ===== */
.section-contact {
  padding: 80px 0 120px;
  background: var(--soft);
}
.contact-signature {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.contact-signature img {
  height: 120px;
  width: auto;
  display: block;
}
.contact-card {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 70%, #2a3878 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(238, 120, 33, .25), transparent 70%);
  top: -120px;
  right: -120px;
  border-radius: 50%;
  pointer-events: none;
}
.contact-copy h2 {
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 38px);
  margin: 0 0 18px;
  font-weight: 800;
  line-height: 1.15;
}
.contact-copy .lede {
  color: rgba(255, 255, 255, .82);
  margin-bottom: 32px;
}
.contact-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.contact-meta {
  list-style: none;
  padding: 28px;
  margin: 0;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}
.contact-meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.contact-meta li:last-child { border: 0; padding-bottom: 0; }
.contact-meta li:first-child { padding-top: 0; }
.contact-meta span {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}
.contact-meta strong {
  font-size: 17px;
  color: var(--white);
  font-weight: 600;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .7);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
}
.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-cols h5 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}
.footer-cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-cols li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-cols a {
  color: rgba(255, 255, 255, .7);
  transition: color .2s ease;
}
.footer-cols a:hover { color: var(--orange-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
  font-size: 13px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, .5);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-art { height: 300px; margin-top: 12px; }
  .card-a { left: 10%; }
  .card-b { right: 10%; top: 100px; }
  .card-c { left: 30%; bottom: 10px; }
  .pillar-grid,
  .services-grid,
  .situations-grid,
  .reasons-grid,
  .testimonials-grid,
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .method-steps { grid-template-columns: repeat(2, 1fr); }
  .contact-card { grid-template-columns: 1fr; padding: 44px 32px; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 14px 24px;
    border-radius: 0;
  }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta {
    margin: 12px 24px;
    text-align: center;
  }

  .section { padding: 72px 0; }
  .section-head { margin-bottom: 44px; }
  .hero { padding: 64px 0 48px; }

  .pillar-grid,
  .services-grid,
  .situations-grid,
  .reasons-grid,
  .testimonials-grid,
  .deliverables-grid,
  .method-steps { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }

  .hero-bullets { gap: 20px; }
  .btn-lg { padding: 16px 22px; font-size: 15px; }
  .contact-card { padding: 36px 24px; }
}
