/* ============================================
   NOTIONS CONSULTING — MAIN STYLESHEET
   ============================================ */

:root {
  --navy:      #0d1f3c;
  --gold:      #c9a84c;
  --gold-light:#e8c97a;
  --cream:     #f8f5ef;
  --white:     #ffffff;
  --gray:      #6b7280;
  --border:    #e5e0d8;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAVBAR ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 72px;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-box {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  overflow: hidden;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
}

.logo-tagline {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Primary nav */
#primary-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

#primary-nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}

#primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

#primary-nav a:hover { color: var(--gold); }
#primary-nav a:hover::after { transform: scaleX(1); }

#primary-nav .menu-item-cta > a {
  background: var(--navy);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

#primary-nav .menu-item-cta > a::after { display: none; }
#primary-nav .menu-item-cta > a:hover { background: var(--gold); color: var(--navy); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 5% 80px;
}

.hero-bg-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  top: 0; right: 0;
  width: 45%; height: 100%;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(201,168,76,1) 48px, rgba(201,168,76,1) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(201,168,76,1) 48px, rgba(201,168,76,1) 49px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 520px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all 0.25s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
  color: var(--navy);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 400;
  font-size: 14px;
  transition: all 0.25s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.stat {
  border-left: 1px solid rgba(201,168,76,0.2);
  padding-left: 24px;
  animation: fadeUp 0.9s 0.3s ease both;
}

.stat:first-child { border-left: none; padding-left: 0; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* ── SECTION BASE ── */
.section-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 5%;
}

.section-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 520px;
  font-weight: 300;
}

.divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

/* ── SERVICES ── */
#services { background: var(--cream); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.service-card {
  background: var(--white);
  padding: 44px 36px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(13,31,60,0.08); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
}

.service-list {
  margin-top: 16px;
  list-style: none;
}

.service-list li {
  font-size: 13px;
  color: var(--gray);
  padding: 4px 0 4px 14px;
  position: relative;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

/* ── À PROPOS ── */
#apropos .section-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.apropos-visual { position: relative; }

.apropos-img-box {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--navy);
  border-radius: 2px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.apropos-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apropos-img-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(201,168,76,0.15);
  font-weight: 700;
}

.apropos-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  color: var(--navy);
  padding: 24px;
  border-radius: 2px;
  text-align: center;
}

.apropos-badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.apropos-badge-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.values-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item { display: flex; gap: 16px; align-items: flex-start; }

.value-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.value-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.value-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
}

/* ── BLOG ── */
#blog { background: var(--cream); }

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 16px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,31,60,0.08);
}

.blog-thumb {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-thumb img { transform: scale(1.05); }

.blog-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

.blog-cat-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}

.blog-body { padding: 28px; }

.blog-meta {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 300;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 16px;
  transition: gap 0.2s;
}

.blog-read-more:hover { gap: 10px; color: var(--gold); }

/* ── CONTACT ── */
#contact {
  background: var(--navy);
}

#contact .section-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

#contact .section-title { color: var(--white); }
#contact .section-desc  { color: rgba(255,255,255,0.55); }
#contact .divider       { background: var(--gold); }

.contact-items {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-item-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
}

.contact-form-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 44px;
}

.form-box-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.form-box-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.form-group input,
.form-group select,
.form-group textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
}

.form-group select option { background: var(--navy); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit,
.wpcf7-form input[type="submit"] {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 15px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  margin-top: 8px;
}

.form-submit:hover,
.wpcf7-form input[type="submit"]:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
#site-footer {
  background: #080f1e;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 5%;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

.footer-brand span { color: var(--gold); }

#footer-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

#footer-nav a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

#footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── BLOG SINGLE / ARCHIVE ── */
.page-header-wrap {
  background: var(--navy);
  padding: 120px 5% 60px;
  text-align: center;
}

.page-header-wrap h1 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: clamp(2rem,4vw,3rem);
}

.page-header-wrap p { color: rgba(255,255,255,0.55); margin-top: 12px; }

.blog-archive-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5%;
}

.single-post-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 5% 80px;
}

.single-post-wrap h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.post-meta {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.post-content {
  font-size: 16px;
  line-height: 1.85;
  color: #374151;
}

.post-content h2,
.post-content h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin: 40px 0 16px;
}

.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol { margin: 16px 0 20px 24px; }
.post-content li { margin-bottom: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  #apropos .section-wrap,
  #contact .section-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .hero-stats    { margin-top: 48px; gap: 24px; }
  .apropos-badge { bottom: -16px; right: -8px; }
  .form-row      { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px; }

  .menu-toggle { display: flex; }

  #primary-nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 20px 5%;
  }

  #primary-nav.open { display: block; }

  #primary-nav ul {
    flex-direction: column;
    gap: 0;
  }

  #primary-nav li { border-bottom: 1px solid var(--border); }
  #primary-nav a  { display: block; padding: 14px 0; }
  #primary-nav a::after { display: none; }

  #primary-nav .menu-item-cta > a {
    background: none;
    color: var(--gold);
    padding: 14px 0;
    border-radius: 0;
  }
}
