/* ==========================================================================
   FABRIZY AVOCAT — Design System
   Palette: White / Grey / Black — Monochrome Elegance
   Fonts: Playfair Display (headings) + Inter (body)
   ========================================================================== */



/* --- CSS Custom Properties --- */
:root {
  /* Colors — Monochrome */
  --black: #111111;
  --black-soft: #1A1A1A;
  --dark: #222222;
  --charcoal: #333333;
  --graphite: #555555;
  --steel: #777777;
  --silver: #999999;
  --ash: #BBBBBB;
  --light-grey: #E8E8E8;
  --pale: #F2F2F2;
  --off-white: #F7F7F7;
  --white: #FFFFFF;

  /* Gold Accent */
  --gold: #C9A227;
  --gold-light: #D4B44A;
  --gold-dark: #A8871F;
  --gold-subtle: rgba(201, 162, 39, 0.08);
  --gold-glow: rgba(201, 162, 39, 0.15);

  /* Semantic */
  --accent: var(--gold);
  --accent-hover: var(--gold-dark);
  --text-primary: #111111;
  --text-secondary: #555555;
  --text-light: #888888;
  --border-color: #E0E0E0;
  --border-dark: #CCCCCC;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;

  /* Borders & Shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* --- CSS Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--black);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

.text-accent {
  color: var(--charcoal);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* --- Section --- */
.section {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: var(--space-md) auto 0;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.section--light {
  background: var(--off-white);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.section--dark .section-header h2::after {
  background: var(--gold);
}

/* Legacy class mapping */
.section--gray {
  background: var(--off-white);
}

.section--navy {
  background: var(--black);
  color: var(--white);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section--navy p {
  color: rgba(255, 255, 255, 0.7);
}

.section--navy .section-header h2::after {
  background: var(--gold);
}

/* Gold highlight on page-hero (subpages) */
.page-hero .highlight {
  color: var(--gold-light);
  font-style: italic;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 0;
  transition: all var(--transition-base);
  text-transform: uppercase;
  white-space: nowrap;
}

.btn--primary {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.btn--primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--gold-glow);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn--secondary:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.btn--outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--black);
}

.btn--white:hover {
  background: var(--pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--small {
  padding: 0.625rem 1.25rem;
  font-size: 0.8rem;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  transition: all var(--transition-base);
  z-index: -1;
}

.header.scrolled::before {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.header.scrolled .header__logo-text {
  color: var(--black);
}

.header.scrolled .header__logo-text span {
  color: var(--graphite);
}

.header.scrolled .nav__link {
  color: var(--text-secondary);
}

.header.scrolled .nav__link:hover,
.header.scrolled .nav__link.active {
  color: var(--black);
}

.header.scrolled .nav__toggle span {
  background: var(--black);
}

.header.scrolled .nav__toggle.active span {
  background: var(--white);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  z-index: 1001;
}

.header__logo img {
  height: 50px;
  width: auto;
  border-radius: 2px;
  object-fit: cover;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  transition: color var(--transition-base);
}

.header__logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-base);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__link {
  padding: 0.5rem 0.875rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--transition-fast);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 60%;
}

/* Dropdown */
.nav__item {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: 0;
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 100;
  border: 1px solid var(--border-color);
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 0.625rem var(--space-lg);
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  transition: all var(--transition-fast);
}

.nav__dropdown a:hover {
  background: var(--off-white);
  color: var(--black);
  padding-left: 1.75rem;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1003;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  border-radius: 0;
  transition: all var(--transition-base);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav__cta {
  margin-left: var(--space-sm);
}

.nav__cta .btn--primary {
  font-size: 0.75rem;
  padding: 0.5rem 1.25rem;
  letter-spacing: 0.1em;
}

.header.scrolled .nav__cta .btn--primary {
  background: var(--black);
  color: var(--white);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(30%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 700px;
  margin-top: var(--header-height);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1.25rem;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
}

.hero__badge svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
  opacity: 0.7;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

.hero h1 .highlight {
  color: var(--gold-light);
  font-style: italic;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-2xl);
  line-height: 1.9;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__actions .btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.hero__actions .btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition-base);
  animation: bounce 2s infinite;
}

.hero__scroll:hover {
  color: rgba(255, 255, 255, 0.8);
}

.hero__scroll svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, 0.5);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-8px);
  }

  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

/* ==========================================================================
   PAGE HERO (for inner pages)
   ========================================================================== */

.page-hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-3xl);
  background: var(--black);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.page-hero__breadcrumb {
  position: relative;
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.page-hero__breadcrumb a:hover {
  color: var(--white);
  text-decoration: underline;
}

.page-hero__desc {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

/* Legacy class mapping */
.text-gold {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* ==========================================================================
   SERVICES / EXPERTISE CARDS
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: var(--white);
  border-radius: 0;
  padding: var(--space-2xl);
  box-shadow: none;
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--black);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-subtle);
  border-radius: 0;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  color: var(--text-secondary);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: gap var(--transition-base), color var(--transition-base);
}

.service-card:hover .service-card__link {
  gap: var(--space-md);
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ==========================================================================
   ABOUT / BIOGRAPHY SECTION
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.about__image:hover {
  transform: translateY(-6px);
  box-shadow:
    0 35px 70px rgba(0, 0, 0, 0.15),
    0 12px 30px rgba(0, 0, 0, 0.1);
}

.about__image::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 21px;
  border: 2px solid rgba(0, 0, 0, 0.06);
  z-index: 2;
  pointer-events: none;
}

.about__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.08), transparent);
  z-index: 1;
  border-radius: 0 0 20px 20px;
}

.about__image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  filter: grayscale(15%);
  transition: filter var(--transition-base), transform 0.6s ease;
}

.about__image:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.about__content h2 {
  margin-bottom: var(--space-lg);
}

.about__content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-top: var(--space-md);
}

.about__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--graphite);
  padding: var(--space-lg);
  border-left: 3px solid var(--gold);
  background: var(--gold-subtle);
  margin: var(--space-xl) 0;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.about__stat {
  text-align: center;
  padding: var(--space-lg);
  background: var(--off-white);
  border: 1px solid var(--border-color);
}

.about__stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.about__stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-xs);
  display: block;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials__slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial {
  min-width: 100%;
  padding: 0 var(--space-xl);
  text-align: center;
}

.testimonial__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-lg);
}

.testimonial__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  opacity: 1;
}

.testimonial__text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  font-weight: 400;
}

.testimonial__author {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonials__dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
  position: relative;
  padding: var(--space-4xl) 0;
  background: var(--black-soft);
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  font-weight: 300;
}

.cta-section .btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.cta-section .btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.cta-section .btn {
  font-size: 0.9rem;
  padding: 1rem 2.5rem;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--off-white);
  border: 1px solid var(--border-color);
  border-radius: 0;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  background: var(--white);
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info__item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-subtle);
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-info__text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info__text p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-info__text a {
  color: var(--black);
  font-weight: 500;
}

.contact-info__text a:hover {
  color: var(--gold);
}

.contact-map {
  margin-top: var(--space-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 250px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   HONORAIRES
   ========================================================================== */

.honoraires-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.honoraire-card {
  background: var(--white);
  padding: var(--space-2xl);
  box-shadow: none;
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
}

.honoraire-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.honoraire-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: var(--space-lg);
}

.honoraire-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
}

.honoraire-card p {
  font-size: 0.95rem;
}

/* Info boxes */
.info-box {
  background: var(--gold-subtle);
  padding: var(--space-2xl);
  border-left: 3px solid var(--gold);
}

.info-box h3 {
  margin-bottom: var(--space-md);
}

.info-box p {
  font-size: 0.95rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--gold);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--graphite);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition-base);
  min-width: 20px;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer__content {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-3xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__brand img {
  height: 40px;
  width: auto;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
}

.footer__links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  margin-top: 3px;
  min-width: 16px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.03em;
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom a:hover {
  color: var(--white);
}

/* ==========================================================================
   CONTENT PAGE (for practice area pages)
   ========================================================================== */

.content-section {
  padding: var(--space-3xl) 0;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h2 {
  color: var(--black);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  position: relative;
}

.content-wrapper h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-top: var(--space-sm);
}

.content-wrapper h3 {
  color: var(--black);
  font-size: 1.15rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.content-wrapper p {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

.content-wrapper ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.content-wrapper ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.content-wrapper ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.content-wrapper ul li strong {
  color: var(--gold-dark);
}

/* Timeline (for biography) */
.timeline {
  position: relative;
  padding-left: var(--space-2xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--light-grey));
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-2xl);
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-2xl) - 4px);
  top: 6px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline__year {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

.timeline__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: var(--space-xs);
}

.timeline__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible>*:nth-child(1) {
  transition-delay: 0.1s;
}

.stagger.visible>*:nth-child(2) {
  transition-delay: 0.2s;
}

.stagger.visible>*:nth-child(3) {
  transition-delay: 0.3s;
}

.stagger.visible>*:nth-child(4) {
  transition-delay: 0.4s;
}

.stagger.visible>*:nth-child(5) {
  transition-delay: 0.5s;
}

.stagger.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   MOBILE CTA BAR
   ========================================================================== */

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  padding: var(--space-md) var(--space-lg);
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-cta.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-cta__inner {
  display: flex;
  gap: var(--space-sm);
}

.mobile-cta .btn {
  flex: 1;
  justify-content: center;
  padding: 0.75rem;
  font-size: 0.8rem;
}

.mobile-cta .btn--primary {
  background: var(--white);
  color: var(--black);
}

.mobile-cta .btn--secondary {
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {

  .services-grid,
  .honoraires-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  :root {
    --space-4xl: 4rem;
  }

  /* Mobile Navigation */
  .nav__toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    transition: right var(--transition-base);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 1002;
  }

  .nav.open {
    right: 0;
  }

  .nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    /* Behind nav (1002) but above header (1000) */
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
  }

  .nav__overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .nav__item {
    width: 100%;
  }

  .nav__link {
    display: block;
    padding: 0.875rem var(--space-md);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
  }

  .nav__link:hover,
  .nav__link:active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    padding-left: var(--space-lg);
  }

  .nav__link::after {
    display: none;
  }

  .nav__dropdown {
    position: static;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
    border-radius: 0;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
    padding: 0;
  }

  .nav__item:hover .nav__dropdown,
  .nav__item.open .nav__dropdown {
    max-height: 300px;
  }

  .nav__dropdown a {
    color: rgba(255, 255, 255, 0.6);
    padding: 0.5rem var(--space-lg);
    font-size: 0.85rem;
  }

  .nav__dropdown a:hover,
  .nav__dropdown a:active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding-left: calc(var(--space-lg) + 10px);
  }

  .nav__cta {
    margin-left: 0;
    margin-top: var(--space-lg);
    width: 100%;
  }

  .nav__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }

  .nav.open~.nav__overlay {
    display: block;
  }

  /* Header scrolled on mobile */
  .header.scrolled .nav__link {
    color: rgba(255, 255, 255, 0.8);
  }

  .header.scrolled .nav__toggle span {
    background: var(--black);
  }

  /* Hero */
  .hero__content {
    padding: var(--header-height) var(--space-md) var(--space-2xl);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__scroll {
    display: none;
  }

  /* Grid layouts */
  .services-grid,
  .honoraires-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about__image img {
    height: 350px;
  }

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  /* Mobile CTA Bar */
  .mobile-cta {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .honoraire-card {
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
  }

  .article-date {
    margin-bottom: var(--space-sm) !important;
  }

  .honoraire-card h3 {
    margin-top: 1rem !important;
  }

  .about__stats {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   VALEURS GRID (FORCE 3 COLUMNS)
   ========================================================================== */
.services-grid.valeurs-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 768px) {
  .services-grid.valeurs-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-xl);
  }
}