/* ============================================
   PAGES INSTITUTIONNELLES - etre-architect.com
   3 styles distincts : SERVICES / CASE STUDY / SOBRE
   ============================================ */

/* ----------- COMMUNS ----------- */
.breadcrumb {
  padding: 100px 0 0;
  font-size: 0.85rem;
  color: var(--text-light);
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb li + li::before { content: '›'; margin-right: 8px; color: var(--gold); }
.breadcrumb a { color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: 500; }

.page-main { padding-top: 0; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

.bg-soft { background: var(--bg-dark); }

/* ============================================================
   STYLE 1 · SERVICES (commercial, conversion-driven)
   Densité visuelle élevée, structure orientée action
   ============================================================ */

/* HERO compact avec CTAs inline */
.service-hero {
  position: relative;
  padding: 140px 0 80px;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.service-hero-bg { position: absolute; inset: 0; z-index: 0; }
.service-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.service-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(44, 36, 32, 0.65) 0%,
    rgba(44, 36, 32, 0.5) 50%,
    rgba(245, 240, 235, 0.85) 90%,
    var(--bg) 100%);
}
.service-hero-content { position: relative; z-index: 1; max-width: 900px; }

.service-tag {
  display: inline-block; font-family: var(--font-body); font-size: 0.8rem;
  font-weight: 500; text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 12px;
}
.service-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400; line-height: 1.1; color: var(--text);
  margin: 8px 0 20px;
}
.service-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem); font-weight: 300;
  color: var(--text-light); line-height: 1.55; margin-bottom: 36px;
  max-width: 680px;
}
.service-hero.has-image .service-title { color: var(--white); text-shadow: 0 2px 16px rgba(20,14,10,0.55); }
.service-hero.has-image .service-subtitle { color: rgba(255,255,255,0.92); text-shadow: 0 1px 10px rgba(20,14,10,0.55); }
.service-hero.has-image .service-tag { color: var(--gold-light); text-shadow: 0 1px 8px rgba(20,14,10,0.45); }

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

.service-button-primary {
  display: inline-block; padding: 16px 32px; background: var(--gold);
  color: var(--white); text-decoration: none; font-weight: 500;
  font-size: 0.95rem; letter-spacing: 0.5px;
  transition: background 0.3s, transform 0.3s;
}
.service-button-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.service-button-primary.large { font-size: 1.05rem; padding: 20px 44px; }

.service-button-secondary {
  display: inline-block; padding: 16px 32px;
  border: 1.5px solid var(--gold);
  color: var(--gold); text-decoration: none; font-weight: 500;
  font-size: 0.95rem; letter-spacing: 0.5px;
  transition: background 0.3s, color 0.3s;
}
.service-button-secondary:hover { background: var(--gold); color: var(--white); }
.service-hero.has-image .service-button-secondary { color: var(--white); border-color: var(--white); }
.service-hero.has-image .service-button-secondary:hover { background: var(--white); color: var(--text); }

/* VALEUR-PROP bandeau */
.service-valueprop {
  padding: 40px 0; background: var(--gold); color: var(--white);
}
.service-valueprop-text {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 400;
  line-height: 1.5; text-align: center; max-width: 900px; margin: 0 auto;
}
.service-valueprop-text strong { font-weight: 600; }

/* Sections */
.service-section { padding: 80px 0; }
.service-section-tag {
  display: inline-block; font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--gold); margin-bottom: 12px;
}
.service-section-title {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400; line-height: 1.2; color: var(--text); margin-bottom: 40px;
  max-width: 800px;
}
.service-narrative {
  font-size: 1.05rem; line-height: 1.75; color: var(--text); margin-bottom: 18px;
}

/* PERSONA grille 3 colonnes */
.service-persona-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 32px;
}
.service-persona-card {
  padding: 28px 24px; background: var(--white);
  border-top: 3px solid var(--gold);
}
.service-persona-card h3 {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 500; margin-bottom: 12px;
}
.service-persona-card p {
  font-size: 0.95rem; line-height: 1.6; color: var(--text-light);
}

/* PROCESS - 4 cartes en timeline horizontale avec flèches */
.service-process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  position: relative;
}
.service-process-list li {
  position: relative;
  padding: 36px 24px 32px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 240px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-process-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 36, 32, 0.1);
  z-index: 2;
}
/* Espace + flèche entre les cartes (desktop) */
.service-process-list li:not(:last-child) {
  margin-right: 32px;
}
.service-process-list li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  rotate: 45deg;
  z-index: 1;
}
/* Cercle gold avec numéro en haut de carte */
.service-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(184, 149, 106, 0.35);
}
.service-process-list h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.25;
}
.service-process-list p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* DELIVERABLES grille avec hover */
.service-deliverables-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 32px;
}
.service-deliverable-card {
  position: relative; padding: 32px 28px 56px; background: var(--white);
  text-decoration: none; color: var(--text); display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-deliverable-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 36, 32, 0.1);
}
.service-deliverable-num {
  display: inline-block; font-family: var(--font-display); font-size: 0.95rem;
  font-weight: 500; color: var(--gold); margin-bottom: 16px;
  padding: 4px 10px; border: 1px solid var(--gold);
}
.service-deliverable-card h3 {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 500; margin-bottom: 10px;
}
.service-deliverable-card p { font-size: 0.92rem; line-height: 1.6; color: var(--text-light); }
.service-deliverable-arrow {
  position: absolute; bottom: 24px; right: 28px;
  color: var(--gold); font-size: 1.4rem; transition: transform 0.3s;
}
.service-deliverable-card:hover .service-deliverable-arrow { transform: translateX(4px); }

/* QUARTIERS chips */
.service-quartiers-grid {
  display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 32px;
}
.service-quartier-chip {
  padding: 10px 20px; background: var(--white);
  border: 1px solid rgba(184, 149, 106, 0.3);
  font-size: 0.95rem; color: var(--text);
}

/* HONORAIRES bloc sobre */
.service-honorarios {
  text-align: center; padding: 24px 0;
}
.service-honorarios h2 { margin-bottom: 20px; }
.service-honorarios p { font-size: 1.05rem; line-height: 1.7; max-width: 700px; margin: 0 auto; }

/* FAQ */
.service-faq { max-width: 760px; }
.service-faq-item {
  border-bottom: 1px solid rgba(184, 149, 106, 0.25);
  padding: 20px 0;
}
.service-faq-item summary {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 500; cursor: pointer; color: var(--text);
  list-style: none; position: relative; padding-right: 36px;
}
.service-faq-item summary::-webkit-details-marker { display: none; }
.service-faq-item summary::after {
  content: '+'; position: absolute; right: 0; top: 0;
  font-family: var(--font-body); font-size: 1.5rem; color: var(--gold);
  transition: transform 0.3s;
}
.service-faq-item[open] summary::after { transform: rotate(45deg); }
.service-faq-item p {
  margin-top: 16px; font-size: 0.98rem; line-height: 1.7; color: var(--text-light);
}

/* CTA FINAL */
.service-cta-final {
  padding: 100px 0; background: linear-gradient(135deg, var(--text) 0%, #3a312b 100%);
  color: var(--bg);
}
.service-cta-block { text-align: center; max-width: 720px; margin: 0 auto; }
.service-cta-block h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400; line-height: 1.2; color: var(--bg); margin-bottom: 16px;
}
.service-cta-block p {
  font-size: 1.1rem; color: rgba(245, 240, 235, 0.85);
  margin-bottom: 36px; line-height: 1.6;
}
.service-cta-final .service-button-primary {
  background: var(--gold-light); color: var(--text); font-weight: 600;
}
.service-cta-final .service-button-primary:hover { background: var(--white); }

/* ============================================================
   STYLE 2 · CASE STUDY (storytelling, portfolio éditorial)
   Plein écran, photo-driven, récit
   ============================================================ */

/* HERO plein écran immersif */
.case-hero {
  position: relative;
  padding: 140px 0 100px;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
}

.case-hero-image { position: absolute; inset: 0; z-index: 0; }
.case-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.case-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(44, 36, 32, 0.35) 0%,
    rgba(44, 36, 32, 0.45) 50%,
    rgba(44, 36, 32, 0.7) 100%);
}
.case-hero-content { position: relative; z-index: 1; max-width: 1000px; }

.case-tag {
  display: inline-block; font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold-light); margin-bottom: 16px;
  padding: 6px 14px; border: 1px solid var(--gold-light);
}
.case-title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 400; line-height: 1.05; color: var(--white);
  margin-bottom: 24px; max-width: 1000px;
  text-shadow: 0 2px 18px rgba(20, 14, 10, 0.6);
}
.case-subtitle {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-style: italic; font-weight: 300;
  color: rgba(255, 255, 255, 0.95); max-width: 700px;
  line-height: 1.4; text-shadow: 0 1px 12px rgba(20, 14, 10, 0.5);
}

/* META BANDEAU sous hero */
.case-meta {
  background: var(--text); color: var(--bg);
  padding: 24px 0;
}
.case-meta-list {
  list-style: none; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
}
.case-meta-list li { display: flex; flex-direction: column; gap: 4px; }
.case-meta-label {
  font-family: var(--font-body); font-size: 0.7rem;
  font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gold-light); opacity: 0.85;
}
.case-meta-value {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 500; color: var(--bg);
}

/* Sections case study */
.case-section { padding: 80px 0; }
.case-section-tag {
  display: inline-block; font-family: var(--font-body); font-size: 0.72rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 12px;
}
.case-section-title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 400; line-height: 1.2; color: var(--text);
  margin: 0 0 32px;
}
.case-section-title.centered { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.case-narrative {
  font-family: var(--font-display); font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 400; font-style: italic;
  line-height: 1.55; color: var(--text);
  margin-bottom: 20px;
}

/* PILARES grille avec gros numéros */
.case-pilares-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px; margin-top: 32px;
}
.case-pilar-card {
  padding: 36px 28px; background: var(--white);
  border-left: 3px solid var(--gold);
  position: relative;
}
.case-pilar-num {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-display); font-size: 3rem; font-weight: 300;
  color: rgba(184, 149, 106, 0.25); line-height: 1;
}
.case-pilar-card h3 {
  font-family: var(--font-display); font-size: 1.35rem;
  font-weight: 500; margin-bottom: 14px;
  padding-right: 60px;
}
.case-pilar-card p { font-size: 0.98rem; line-height: 1.7; color: var(--text); }

/* MATERIAIS list */
.case-materiais-list { list-style: none; margin: 24px 0; }
.case-materiais-list li {
  position: relative; padding: 14px 0 14px 32px;
  border-bottom: 1px solid rgba(184, 149, 106, 0.15);
  font-size: 1rem; line-height: 1.5;
}
.case-materiais-list li::before {
  content: '·'; position: absolute; left: 8px; top: 12px;
  color: var(--gold); font-size: 1.5rem;
}

/* HIGHLIGHT BOX (le détail clé) */
.case-highlight {
  padding: 48px 40px; background: var(--gold);
  color: var(--white); text-align: center;
}
.case-highlight-tag {
  font-family: var(--font-body); font-size: 0.7rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 3px;
  margin-bottom: 16px; opacity: 0.9;
}
.case-highlight-text {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400; line-height: 1.5; font-style: italic;
  max-width: 700px; margin: 0 auto;
}

/* HONORÁRIOS case study (discret) */
.case-honorarios {
  padding: 24px 28px; background: var(--white);
  border-left: 3px solid var(--gold);
}
.case-honorarios-label {
  font-family: var(--font-body); font-size: 0.72rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--gold); margin-bottom: 8px;
}
.case-honorarios p { font-size: 0.98rem; line-height: 1.65; color: var(--text); }

/* RELATED grille */
.case-related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; margin-top: 24px;
}
.case-related-card {
  display: flex; flex-direction: column; gap: 16px;
  padding: 32px 28px; background: var(--white);
  text-decoration: none; color: var(--text);
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 140px;
}
.case-related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(44, 36, 32, 0.08);
}
.case-related-arrow { color: var(--gold); font-size: 1.4rem; }
.case-related-label {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 500; line-height: 1.3;
}

/* CTA léger en fin case study */
.case-cta { padding: 80px 0; background: var(--bg-dark); }
.case-cta-block { text-align: center; max-width: 700px; margin: 0 auto; }
.case-cta-block h2 {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 400; margin-bottom: 16px;
}
.case-cta-block p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 28px; }
.case-cta-button {
  display: inline-block; padding: 14px 32px;
  background: transparent; border: 1.5px solid var(--gold);
  color: var(--gold); text-decoration: none; font-weight: 500;
  transition: background 0.3s, color 0.3s;
}
.case-cta-button:hover { background: var(--gold); color: var(--white); }

/* ============================================================
   STYLE 3 · SOBRE (éditorial magazine)
   Portrait + bio narrative + quotes
   ============================================================ */

/* HERO éditorial avec portrait + texte */
.sobre-hero {
  padding: 140px 0 80px;
  background: var(--bg);
}
.sobre-hero-grid {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 60px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.sobre-hero-portrait img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  box-shadow: 0 20px 60px rgba(44, 36, 32, 0.15);
}
.sobre-tag {
  display: inline-block; font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 16px;
}
.sobre-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400; line-height: 1.1; color: var(--text);
  margin: 0 0 20px;
}
.sobre-subtitle {
  font-family: var(--font-display); font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-style: italic; font-weight: 400; color: var(--text-light);
  line-height: 1.5;
}

/* Sections sobre */
.sobre-section { padding: 70px 0; }
.sobre-section-tag {
  display: inline-block; font-family: var(--font-body); font-size: 0.72rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 14px;
}
.sobre-section-title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 400; line-height: 1.2; color: var(--text); margin-bottom: 28px;
}
.sobre-section-title.centered { text-align: center; max-width: 700px; margin: 0 auto 48px; }

.sobre-narrative {
  font-size: 1.08rem; line-height: 1.85; color: var(--text); margin-bottom: 20px;
}
.sobre-narrative.lead {
  font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-style: italic; font-weight: 400; line-height: 1.55;
  color: var(--text); margin-bottom: 24px;
}

/* QUOTE pleine largeur */
.sobre-quote-section {
  padding: 60px 0;
  background: var(--bg);
}
.sobre-quote {
  position: relative; padding: 40px 0 32px 60px;
  margin: 24px 0 32px; border: none;
}
.sobre-quote::before {
  content: '"'; position: absolute; left: -10px; top: -20px;
  font-family: var(--font-display); font-size: 7rem;
  color: var(--gold); line-height: 1; opacity: 0.4;
}
.sobre-quote p {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400; font-style: italic; line-height: 1.45;
  color: var(--text);
}

/* PRINCIPES cards */
.sobre-principios-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 40px;
}
.sobre-principio-card {
  padding: 32px 28px; background: var(--white); position: relative;
  min-height: 220px;
}
.sobre-principio-num {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 300;
  color: var(--gold); display: block; margin-bottom: 16px;
}
.sobre-principio-card h3 {
  font-family: var(--font-display); font-size: 1.25rem;
  font-weight: 500; margin-bottom: 12px;
}
.sobre-principio-card p { font-size: 0.95rem; line-height: 1.65; color: var(--text-light); }

/* CREDENTIALS BOX */
.sobre-credentials-box {
  padding: 36px 32px; background: var(--white);
  border-top: 3px solid var(--gold);
  text-align: center;
}
.sobre-credentials-tag {
  font-family: var(--font-body); font-size: 0.72rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 16px;
}
.sobre-credentials-box p {
  font-size: 1.02rem; line-height: 1.75; color: var(--text); max-width: 720px; margin: 0 auto;
}

/* Features list éditoriale */
.sobre-features-list { list-style: none; margin: 24px 0; }
.sobre-features-list li {
  position: relative; padding: 16px 0 16px 36px;
  border-bottom: 1px solid rgba(184, 149, 106, 0.15);
  font-size: 1rem; line-height: 1.55; color: var(--text);
}
.sobre-features-list li::before {
  content: ''; position: absolute; left: 0; top: 24px;
  width: 24px; height: 1px; background: var(--gold);
}

/* RELATED grille */
.sobre-related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; margin-top: 32px;
}
.sobre-related-card {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: var(--white);
  border-bottom: 2px solid var(--gold);
  text-decoration: none; color: var(--text);
  transition: transform 0.3s;
}
.sobre-related-card:hover { transform: translateY(-2px); }
.sobre-related-label { font-size: 0.95rem; font-weight: 500; }
.sobre-related-arrow { color: var(--gold); font-size: 1.2rem; }

/* CTA léger éditorial */
.sobre-cta { padding: 80px 0; }
.sobre-cta-block { text-align: center; max-width: 720px; margin: 0 auto; }
.sobre-cta-block h2 {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400; margin-bottom: 16px;
}
.sobre-cta-block p {
  font-size: 1.05rem; color: var(--text-light); margin-bottom: 28px;
}
.sobre-cta-button {
  display: inline-block; padding: 14px 32px;
  background: var(--gold); color: var(--white);
  text-decoration: none; font-weight: 500;
  transition: background 0.3s, transform 0.3s;
}
.sobre-cta-button:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* ============================================================
   AUTHOR BOX (réutilisée toutes pages)
   ============================================================ */
.author-box {
  padding: 60px 0; background: var(--white);
  border-top: 1px solid rgba(184, 149, 106, 0.15);
}
.author-grid {
  display: grid; grid-template-columns: 140px 1fr; gap: 32px;
  max-width: 820px; margin: 0 auto; padding: 0 24px; align-items: start;
}
.author-photo { width: 140px; height: 140px; object-fit: cover; border-radius: 50%; }
.author-name {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 500;
  color: var(--text); margin-bottom: 4px;
}
.author-role { font-size: 0.95rem; color: var(--gold); margin-bottom: 16px; }
.author-bio { font-size: 1rem; line-height: 1.6; color: var(--text); margin-bottom: 16px; }
.author-links { font-size: 0.9rem; color: var(--text-light); }
.author-links a { color: var(--text); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.author-links a:hover { color: var(--gold); }
.author-links span { margin: 0 8px; color: rgba(184, 149, 106, 0.4); }

/* ============================================================
   FOOTER (commun)
   ============================================================ */
.footer { padding: 80px 0 32px; background: var(--text); color: var(--bg); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { width: 120px; margin-bottom: 16px; filter: invert(1) brightness(1.2); }
.footer-tagline { font-size: 0.95rem; line-height: 1.6; opacity: 0.7; }
.footer-col h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; margin-bottom: 16px; color: var(--gold-light); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--bg); text-decoration: none; font-size: 0.9rem; opacity: 0.7; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; }
.footer-social { display: flex; gap: 24px; padding: 24px 0; border-top: 1px solid rgba(245,240,235,0.15); }
.footer-social a { color: var(--bg); text-decoration: none; font-size: 0.9rem; opacity: 0.7; transition: opacity 0.2s; }
.footer-social a:hover { opacity: 1; }
.footer-bottom { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(245,240,235,0.15); font-size: 0.85rem; opacity: 0.5; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .sobre-hero-grid { grid-template-columns: 1fr; max-width: 600px; }
  .sobre-hero-portrait { max-width: 280px; margin: 0 auto; }
  .case-meta-list { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* Responsive process list : 2 colonnes en tablet, 1 colonne en mobile */
@media (max-width: 1024px) {
  .service-process-list { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .service-process-list li { margin-right: 0 !important; }
  /* Flèches uniquement vers droite sur première ligne, vers bas sur seconde */
  .service-process-list li:nth-child(odd):not(:last-child)::after {
    right: -16px;
  }
  .service-process-list li:nth-child(2)::after,
  .service-process-list li:nth-child(4)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .service-hero, .case-hero, .sobre-hero { padding-top: 110px; padding-bottom: 60px; min-height: auto; }
  .case-hero { min-height: 55vh; }
  .service-section, .case-section, .sobre-section { padding: 50px 0; }
  /* Process list en colonne unique avec flèches vers le bas */
  .service-process-list { grid-template-columns: 1fr; gap: 32px; }
  .service-process-list li { min-height: auto; padding: 28px 24px; }
  .service-process-list li::after { display: none !important; }
  .service-process-list li:not(:last-child)::before {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
  }
  .author-grid { grid-template-columns: 1fr; text-align: center; }
  .author-photo { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .breadcrumb { padding-top: 80px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .case-meta-list { grid-template-columns: 1fr 1fr; }
  .service-hero-cta { flex-direction: column; align-items: stretch; }
  .service-button-primary, .service-button-secondary { text-align: center; }
}


/* ============================================================
   HUB CONVERSION-DRIVEN — /projetos/ et /servicos/
   ============================================================ */

/* HERO HUB immersif */
.hub-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hub-hero.has-image { color: var(--white); }
.hub-hero-bg { position: absolute; inset: 0; z-index: 0; }
.hub-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hub-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,36,32,0.72) 0%, rgba(44,36,32,0.55) 50%, rgba(44,36,32,0.65) 100%);
  z-index: 1;
}
.hub-hero-content { position: relative; z-index: 2; max-width: 880px; }
.hub-hero-tag {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  font-weight: 500;
}
.hub-hero.has-image .hub-hero-tag { text-shadow: 0 1px 8px rgba(20,14,10,0.55); }
.hub-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(20,14,10,0.55);
}
.hub-hero:not(.has-image) .hub-hero-title { color: var(--text); text-shadow: none; }
.hub-hero-subtitle {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  margin-bottom: 40px;
  max-width: 680px;
  color: rgba(255,255,255,0.94);
  text-shadow: 0 1px 10px rgba(20,14,10,0.5);
}
.hub-hero:not(.has-image) .hub-hero-subtitle { color: var(--text-soft); text-shadow: none; }
.hub-hero-cta { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.hub-hero-button {
  display: inline-block;
  padding: 18px 36px;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(184,149,106,0.35);
}
.hub-hero-button:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184,149,106,0.45);
}
.hub-hero-button-secondary {
  display: inline-block;
  padding: 16px 28px;
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}
.hub-hero-button-secondary:hover { border-bottom-color: var(--gold-light); color: var(--gold-light); }

/* SOCIAL PROOF STRIP */
.hub-social-proof {
  padding: 48px 0;
  background: var(--bg-soft, #EFE8DF);
  border-bottom: 1px solid rgba(184,149,106,0.18);
}
.hub-social-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.hub-social-proof-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.hub-social-proof-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.hub-social-proof-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* SECTIONS génériques */
.hub-projects-section,
.hub-deliverables-section,
.hub-process-section,
.hub-personas-section,
.hub-value-props-section,
.hub-secondary-section,
.hub-narrative-section,
.hub-faq-section {
  padding: 80px 0;
}
.hub-projects-section.bg-soft,
.hub-process-section.bg-soft,
.hub-secondary-section.bg-soft,
.hub-narrative-section.bg-soft { background: var(--bg-soft, #EFE8DF); }

.hub-section-header { margin-bottom: 48px; }
.hub-section-header.centered { text-align: center; }
.hub-section-tag {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.hub-section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
  letter-spacing: -0.015em;
}
.hub-section-intro {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto;
}
.hub-section-header.centered .hub-section-intro { margin: 0 auto; }

/* GRILLE PROJETS visuels */
.hub-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}
.hub-project-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 2px 12px rgba(44,36,32,0.06);
}
.hub-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(44,36,32,0.14);
}
.hub-project-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft, #EFE8DF);
}
.hub-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hub-project-card:hover .hub-project-image img { transform: scale(1.06); }
.hub-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,36,32,0) 50%, rgba(44,36,32,0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hub-project-card:hover .hub-project-overlay { opacity: 1; }
.hub-project-overlay-cta {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  background: var(--gold);
  padding: 10px 18px;
  border-radius: 2px;
}
.hub-project-body { padding: 28px 28px 32px; }
.hub-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.hub-project-meta-item {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 4px 10px;
  background: var(--bg-soft, #EFE8DF);
  border-radius: 2px;
}
.hub-project-title {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--text);
}
.hub-project-tagline {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
}

/* DELIVERABLES 4 CARDS */
.hub-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.hub-deliverable-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 36px 30px;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(184,149,106,0.15);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}
.hub-deliverable-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(184,149,106,0.14);
}
.hub-deliverable-num {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  font-weight: 500;
}
.hub-deliverable-title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--text);
}
.hub-deliverable-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.hub-deliverable-points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.hub-deliverable-points li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 6px;
}
.hub-deliverable-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}
.hub-deliverable-arrow {
  margin-top: auto;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* PROCESS TIMELINE 4 ETAPES */
.hub-process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.hub-process-step {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 4px;
  position: relative;
  border: 1px solid rgba(184,149,106,0.18);
}
.hub-process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 22px;
  font-weight: 600;
  z-index: 2;
}
.hub-process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.hub-process-title {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--text);
}
.hub-process-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.hub-process-duration {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: auto;
}

/* PERSONAS 3 cards */
.hub-personas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.hub-persona-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: 4px;
  border: 1px solid rgba(184,149,106,0.15);
  text-align: center;
  transition: all 0.3s ease;
}
.hub-persona-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.hub-persona-icon {
  font-size: 38px;
  margin-bottom: 20px;
  color: var(--gold);
}
.hub-persona-title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--text);
}
.hub-persona-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
}

/* VALUE PROPS (3 colonnes avec icônes pour /projetos/) */
.hub-value-props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}
.hub-value-prop-card { text-align: center; padding: 0 20px; }
.hub-value-prop-icon {
  font-size: 42px;
  margin-bottom: 24px;
  color: var(--gold);
}
.hub-value-prop-title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--text);
}
.hub-value-prop-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
}

/* CTA mid-page (entre sections) */
.hub-cta-mid {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark, #9d7d56) 100%);
  color: var(--white);
}
.hub-cta-mid-block { text-align: center; }
.hub-cta-mid-block h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}
.hub-cta-mid-block p {
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.95);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hub-button-primary {
  display: inline-block;
  padding: 18px 40px;
  background: var(--white);
  color: var(--gold-dark, #9d7d56);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}
.hub-button-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.24); }
.hub-button-primary.large { padding: 22px 52px; font-size: 17px; }

/* CTA final (block dark moderne) */
.hub-cta-final {
  padding: 96px 0;
  background: var(--text);
  color: var(--white);
}
.hub-cta-final-block { text-align: center; }
.hub-cta-final-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  font-weight: 600;
}
.hub-cta-final-block h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.hub-cta-final-block > p {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hub-cta-final .hub-button-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(184,149,106,0.4);
}
.hub-cta-final .hub-button-primary:hover { background: var(--gold-light, #d4b58a); box-shadow: 0 10px 28px rgba(184,149,106,0.5); }
.hub-cta-final-reassurance {
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
}

/* FAQ collapsible */
.hub-faq-list { display: flex; flex-direction: column; gap: 12px; }
.hub-faq-item {
  background: var(--white);
  border: 1px solid rgba(184,149,106,0.18);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.hub-faq-item[open] { border-color: var(--gold); }
.hub-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.hub-faq-item summary::-webkit-details-marker { display: none; }
.hub-faq-item summary h3 {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.35;
  margin: 0;
  color: var(--text);
  flex: 1;
  padding-right: 16px;
}
.hub-faq-toggle {
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s ease;
}
.hub-faq-item[open] .hub-faq-toggle { transform: rotate(45deg); }
.hub-faq-answer {
  padding: 0 28px 28px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-soft);
}
.hub-faq-answer p { margin: 0 0 12px; }
.hub-faq-answer p:last-child { margin-bottom: 0; }

/* SECONDARY cards (plantas tipologies) */
.hub-secondary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.hub-secondary-card {
  background: var(--white);
  padding: 24px 22px;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(184,149,106,0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
}
.hub-secondary-card:hover {
  border-color: var(--gold);
  background: var(--bg-soft, #EFE8DF);
}
.hub-secondary-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0;
  color: var(--text);
}
.hub-secondary-card p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}
.hub-secondary-arrow {
  position: absolute;
  top: 22px;
  right: 18px;
  color: var(--gold);
  font-size: 18px;
}

/* NARRATIVE bodies (SEO sprint 2 — restent visibles mais discrètes) */
.hub-narrative-body { font-size: 16px; line-height: 1.75; color: var(--text); }
.hub-narrative-body p { margin: 0 0 18px; }
.hub-narrative-body p:last-child { margin-bottom: 0; }
.hub-narrative-body strong { color: var(--text); font-weight: 600; }
.hub-narrative-body em { color: var(--gold-dark, #9d7d56); font-style: normal; }

/* SEO FOOTER (chips villes en bas — discret) */
.hub-seo-footer {
  padding: 56px 0;
  background: var(--bg-soft, #EFE8DF);
  border-top: 1px solid rgba(184,149,106,0.15);
}
.hub-seo-footer-block { margin-bottom: 36px; }
.hub-seo-footer-block:last-child { margin-bottom: 0; }
.hub-seo-footer-title {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 18px;
  font-weight: 500;
  text-align: center;
}
.hub-seo-footer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.hub-seo-footer-chip {
  display: inline-block;
  padding: 9px 18px;
  background: var(--white);
  color: var(--text-soft);
  text-decoration: none;
  font-size: 13px;
  border: 1px solid rgba(184,149,106,0.2);
  border-radius: 100px;
  transition: all 0.3s ease;
}
.hub-seo-footer-chip:hover {
  border-color: var(--gold);
  color: var(--gold-dark, #9d7d56);
  background: var(--white);
}

/* ============================================================
   RESPONSIVE HUB
   ============================================================ */

@media (max-width: 960px) {
  .hub-process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .hub-process-step:nth-child(2)::after { display: none; }
  .hub-process-step:nth-child(4)::after { display: none; }
}

@media (max-width: 640px) {
  .hub-hero { min-height: 60vh; padding: 100px 0 60px; }
  .hub-projects-section, .hub-deliverables-section, .hub-process-section,
  .hub-personas-section, .hub-value-props-section, .hub-secondary-section,
  .hub-narrative-section, .hub-faq-section { padding: 56px 0; }
  .hub-cta-mid, .hub-cta-final { padding: 64px 0; }
  .hub-projects-grid, .hub-deliverables-grid, .hub-personas-grid, .hub-value-props-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hub-process-timeline {
    grid-template-columns: 1fr;
  }
  .hub-process-step::after { display: none !important; }
  .hub-social-proof-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hub-hero-cta { flex-direction: column; align-items: stretch; }
  .hub-hero-button, .hub-hero-button-secondary { text-align: center; }
}

@media (max-width: 480px) {
  .hub-social-proof-grid { grid-template-columns: 1fr; }
  .hub-section-header { margin-bottom: 32px; }
  .hub-project-body { padding: 22px 22px 26px; }
}

/* Persona cards cliquables (hub services) */
.hub-persona-card-linked {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
}
.hub-persona-card-linked:hover { transform: translateY(-6px); box-shadow: 0 10px 28px rgba(184,149,106,0.14); }
.hub-persona-arrow {
  margin-top: auto;
  padding-top: 18px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
}
