/*
Theme Name: Carelle Martine
Theme URI: https://carellemartine.com
Author: Carelle Martine
Author URI: https://carellemartine.com
Description: Thème personnel pour Carelle Martine — consultante LinkedIn B2B. Un contenu humain, émotionnel et générateur de leads.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: carelle-martine
Tags: one-column, two-columns, custom-colors, custom-menu, featured-images, footer-widgets, full-width-template, theme-options
*/

/* ============================================
   DESIGN TOKENS — Palette Carelle Martine
   ============================================ */
:root {
  /* Couleurs principales */
  --color-mauve:       #7C5C8E;
  --color-mauve-light: #A07DB5;
  --color-mauve-pale:  #EDE4F3;
  --color-mauve-dark:  #503864;

  /* Neutres */
  --color-cream:       #FAF8F5;
  --color-warm-white:  #FFFFFF;
  --color-charcoal:    #2C2C2C;
  --color-mid-grey:    #6B6B6B;
  --color-light-grey:  #E8E4E0;

  /* Accents */
  --color-accent:      #C4A8D4;
  --color-accent-warm: #D4B8A0;

  /* Typographie */
  --font-script:  'Pacifico', cursive;
  --font-sans:    'DM Sans', sans-serif;
  --font-display: 'Cormorant Garamond', serif;

  /* Espacements */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 10rem;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.35s var(--ease);

  /* Bordures */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-pill: 100px;

  /* Ombres */
  --shadow-sm: 0 2px 12px rgba(124,92,142,0.08);
  --shadow-md: 0 8px 32px rgba(124,92,142,0.14);
  --shadow-lg: 0 20px 60px rgba(124,92,142,0.18);

  /* Largeurs */
  --max-width: 1200px;
  --max-width-text: 680px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-mauve);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-mauve-dark);
}

ul, ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHIE
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.text-mauve   { color: var(--color-mauve); }
.text-center  { text-align: center; }
.text-light   { color: var(--color-mid-grey); }

.label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-mauve-light);
}

/* ============================================
   LAYOUT UTILITAIRES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}

.container--narrow {
  max-width: 860px;
}

.section {
  padding-block: var(--space-xl);
}

.section--sm {
  padding-block: var(--space-lg);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.flex {
  display: flex;
  align-items: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================
   BOUTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-mauve);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--color-mauve-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-mauve);
  border: 2px solid var(--color-mauve);
}

.btn--outline:hover {
  background: var(--color-mauve);
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-mauve);
  padding-inline: 0;
  gap: 0.4rem;
}

.btn--ghost::after {
  content: '→';
  transition: transform var(--transition);
}

.btn--ghost:hover {
  color: var(--color-mauve-dark);
}

.btn--ghost:hover::after {
  transform: translateX(4px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--color-light-grey);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo wordmark */
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
  gap: 2px;
}

.logo-first {
  font-family: var(--font-script);
  font-size: 1.65rem;
  color: var(--color-mauve);
  line-height: 1;
}

.logo-last {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-mid-grey);
  line-height: 1;
}

/* Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.primary-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-charcoal);
  position: relative;
  padding-bottom: 2px;
  text-decoration: none;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-mauve);
  transition: width var(--transition);
}

.primary-nav a:hover,
.primary-nav a:hover::after,
.primary-nav .current_page_item a::after {
  color: var(--color-mauve);
  width: 100%;
}

.primary-nav .current_page_item a {
  color: var(--color-mauve);
}

.nav-cta {
  margin-left: var(--space-sm);
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background: var(--color-cream);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-mauve-pale) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.6;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,184,160,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.2s forwards;
}

.hero-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color-mauve);
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.35s forwards;
}

.hero-title em {
  font-style: normal;
  color: var(--color-mauve);
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.15em;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--color-mid-grey);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.65s forwards;
}

.hero-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-light-grey);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.8s forwards;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-mauve);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--color-mid-grey);
  margin-top: 4px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 0.4s forwards;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--color-mauve-pale), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--color-warm-white);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--color-mauve-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hero-badge-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-charcoal);
}

.hero-badge-text span {
  font-size: 0.75rem;
  color: var(--color-mid-grey);
}

/* ============================================
   SECTION MANIFESTE
   ============================================ */
.manifeste {
  background: var(--color-mauve);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-block: var(--space-xl);
}

.manifeste::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.manifeste .container {
  position: relative;
  z-index: 1;
}

.manifeste-quote {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}

.manifeste-sub {
  font-size: 1rem;
  opacity: 0.75;
  max-width: 560px;
  margin-inline: auto;
}

/* ============================================
   SECTION SERVICES
   ============================================ */
.services-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.services-header .label {
  display: block;
  margin-bottom: 0.75rem;
}

.services-header h2 {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.services-header p {
  max-width: 520px;
  margin-inline: auto;
  color: var(--color-mid-grey);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--color-warm-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1.5px solid var(--color-light-grey);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-mauve);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--color-mauve-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--color-charcoal);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-mid-grey);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-tag {
  display: inline-block;
  background: var(--color-mauve-pale);
  color: var(--color-mauve-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

/* ============================================
   SECTION À PROPOS
   ============================================ */
.about {
  background: var(--color-warm-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-mauve-pale), var(--color-accent));
}

.about-deco {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 40%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: var(--color-mauve-pale);
  z-index: -1;
}

.about-content .label {
  display: block;
  margin-bottom: 0.75rem;
}

.about-content h2 {
  margin-bottom: var(--space-sm);
}

.about-content h2 span {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--color-mauve);
  font-size: 1.1em;
}

.about-content > p {
  color: var(--color-mid-grey);
  margin-bottom: 1.5rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: var(--space-md);
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

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

.about-value p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.about-value strong {
  color: var(--color-charcoal);
}

/* ============================================
   SECTION TÉMOIGNAGES
   ============================================ */
.testimonials {
  background: var(--color-mauve-pale);
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--color-warm-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--color-mauve);
  font-size: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-charcoal);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-mauve-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-charcoal);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--color-mid-grey);
}

/* ============================================
   SECTION PROCESSUS
   ============================================ */
.process {
  background: var(--color-warm-white);
}

.process-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--color-light-grey);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 56px;
  height: 56px;
  background: var(--color-warm-white);
  border: 2px solid var(--color-mauve);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-mauve);
  margin-inline: auto;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}

.process-step:hover .process-step-num {
  background: var(--color-mauve);
  color: #fff;
}

.process-step h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--color-mid-grey);
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--color-charcoal);
  text-align: center;
  padding-block: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(124,92,142,0.35) 0%, transparent 70%);
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band .label {
  color: var(--color-accent);
  display: block;
  margin-bottom: 1rem;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  max-width: 700px;
  margin-inline: auto;
}

.cta-band h2 em {
  font-style: normal;
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--color-accent);
  font-size: 1.1em;
}

.cta-band p {
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-cream);
  border-top: 1px solid var(--color-light-grey);
  padding-block: var(--space-lg) var(--space-md);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-light-grey);
}

.footer-brand .logo-first {
  font-size: 1.4rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--color-mid-grey);
  margin-top: 0.75rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--color-light-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-charcoal);
  transition: all var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--color-mauve);
  color: #fff;
}

.footer-col h5 {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--color-mid-grey);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-mauve);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--color-mid-grey);
}

.footer-bottom a {
  color: var(--color-mid-grey);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--color-mauve);
}

/* ============================================
   PAGES INTÉRIEURES
   ============================================ */
.page-header {
  padding-top: calc(72px + var(--space-lg));
  padding-bottom: var(--space-lg);
  background: var(--color-cream);
  text-align: center;
}

.page-header .label {
  display: block;
  margin-bottom: 0.75rem;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--color-mid-grey);
  max-width: 560px;
  margin-inline: auto;
  font-size: 1.05rem;
}

/* Page Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-form-wrap {
  background: var(--color-warm-white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-light-grey);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  background: var(--color-cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-mauve);
  box-shadow: 0 0 0 3px rgba(124,92,142,0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-warm-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-light-grey);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--color-mauve-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h5 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-mid-grey);
  margin-bottom: 0.25rem;
}

.contact-info-item p, .contact-info-item a {
  font-size: 0.9rem;
  color: var(--color-charcoal);
  font-weight: 500;
  text-decoration: none;
}

/* ============================================
   PAGE BLOG / ARTICLES
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.post-card {
  background: var(--color-warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--color-light-grey);
  transition: all var(--transition);
}

.post-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.post-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--color-mauve-pale);
}

.post-card-body {
  padding: 1.5rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  color: var(--color-mid-grey);
}

.post-category {
  background: var(--color-mauve-pale);
  color: var(--color-mauve-dark);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.post-card h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.post-card h3 a {
  color: var(--color-charcoal);
  text-decoration: none;
}

.post-card h3 a:hover {
  color: var(--color-mauve);
}

.post-card p {
  font-size: 0.88rem;
  color: var(--color-mid-grey);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner       { grid-template-columns: 1fr; gap: var(--space-lg); }
  .hero-visual      { display: none; }
  .about-inner      { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 400px; margin-inline: auto; }
  .process-steps    { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-top       { grid-template-columns: 1fr 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }

  .primary-nav { display: none; }
  .primary-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--color-cream);
    padding: var(--space-lg) var(--space-md);
    gap: var(--space-md);
    z-index: 99;
    align-items: flex-start;
    font-size: 1.2rem;
  }

  .menu-toggle    { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .process-steps  { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr; gap: var(--space-md); }
  .footer-bottom  { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-stats     { gap: var(--space-md); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
