/* ============================================
   TERRACOTTA — Editorial paysagiste
   ============================================ */

:root {
  --cream: #F6EFE0;
  --cream-deep: #ECE2CD;
  --ivory: #FFFCF5;
  --terra: #D5602E;
  --terra-deep: #B04A20;
  --terra-soft: #F4C9AE;
  --sage: #4A5D3B;
  --sage-deep: #2F3D26;
  --sage-light: #87A076;
  --brun: #1F1410;
  --brun-warm: #3A2418;
  --ink: #1F1410;
  --ink-muted: #6B5E54;
  --ink-soft: #A89C8F;
  --line: #DDD2BE;
  --line-dark: rgba(255, 252, 245, 0.18);
  --white: #FFFFFF;

  --display: 'Cabinet Grotesk', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --accent: 'Cabinet Grotesk', 'Manrope', sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1340px;
  --radius: 18px;

  --shadow-soft: 0 4px 30px rgba(26, 20, 16, 0.06);
  --shadow-strong: 0 20px 60px rgba(26, 20, 16, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease, opacity 0.25s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

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

@media (max-width: 768px) { .container { padding: 0 22px; } }

/* ============================================
   Typography — Editorial display serif
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 800;
}

h2 {
  font-size: clamp(2.25rem, 5.2vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); line-height: 1.15; letter-spacing: -0.015em; font-weight: 700; }

em, .italic {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  color: var(--terra);
}

p { color: var(--ink-muted); line-height: 1.65; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 580px;
}

section { position: relative; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--terra);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-terra { background: var(--terra); color: var(--white); }
.btn-terra:hover { background: var(--terra-deep); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 241, 232, 0.4);
}
.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* Link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: gap 0.25s ease, color 0.25s ease;
}
.link-arrow:hover { gap: 14px; color: var(--terra); border-color: var(--terra); }

/* ============================================
   Header — clean, transparent over hero
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom-color: rgba(26, 20, 16, 0.06);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.logo img {
  height: 46px;
  width: auto;
  display: block;
}

.footer .logo img { height: 64px; }
.footer-bottom .logo img { height: 40px; }

@media (max-width: 640px) {
  .logo img { height: 40px; }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-list a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--terra);
  transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after { width: 100%; }
.nav-list a.active { color: var(--terra); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after { content: ''; position: absolute; left: 0; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after  { top:  7px; }

@media (max-width: 980px) {
  .nav-list { display: none; }
  .menu-toggle { display: flex; }

  .nav.open .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 24px 40px 32px;
    box-shadow: var(--shadow-soft);
    gap: 0;
  }
  .nav.open .nav-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-list li:last-child { border-bottom: 0; }
}

@media (max-width: 600px) {
  .header-cta .btn { display: none; }
}

/* ============================================
   HERO — asymmetric, editorial split
   ============================================ */
.hero {
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: stretch;
  gap: 48px;
  position: relative;
}

.hero-text {
  padding: 40px 0 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  margin: 28px 0 36px;
}

.hero h1 .italic {
  color: var(--terra);
  font-weight: 600;
}

.hero p {
  font-size: 1.0625rem;
  max-width: 460px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-meta {
  position: absolute;
  bottom: 60px;
  left: 80px;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  gap: 28px;
  align-items: center;
}

.hero-meta span:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--ink-soft);
  margin-left: 28px;
  vertical-align: middle;
  opacity: 0.5;
}

.hero-photo {
  position: relative;
  border-radius: var(--radius) 0 0 var(--radius);
  overflow: hidden;
  margin-right: -40px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo .tag {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 8px 16px;
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero-photo .badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.3;
  animation: spin 25s linear infinite;
}

.hero-photo .badge strong {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
  margin-bottom: 2px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: auto;
    padding-top: 96px;
  }
  .hero-text { padding: 0; max-width: 100%; }
  .hero-photo {
    margin-right: 0;
    border-radius: var(--radius);
    aspect-ratio: 4 / 3;
  }
  .hero-meta { position: static; margin-top: 36px; flex-wrap: wrap; gap: 16px; }
  .hero-meta span:not(:last-child)::after { margin-left: 16px; }
  .hero-photo .badge { width: 100px; height: 100px; font-size: 0.6rem; }
  .hero-photo .badge strong { font-size: 1.4rem; }
}

/* ============================================
   MARQUEE — endless scroll bar
   ============================================ */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 32s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 56px;
  letter-spacing: -0.01em;
}

.marquee-item::after {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   Section spacing
   ============================================ */
.section { padding: 140px 0; }

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.section-header h2 { max-width: 600px; }

.section-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 12px;
}

@media (max-width: 900px) {
  .section { padding: 90px 0; }
  .section-header { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
}

/* ============================================
   BENTO SERVICES — asymmetric grid
   ============================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bento-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-deep);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.bento-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-item:hover img { transform: scale(1.05); }

.bento-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(26, 20, 16, 0.85));
  pointer-events: none;
}

.bento-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 1;
  color: var(--cream);
}

.bento-num {
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--terra-tint);
  margin-bottom: 10px;
  display: block;
}

.bento-item h3 {
  color: var(--cream);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.bento-item p {
  color: rgba(245, 241, 232, 0.82);
  font-size: 0.9375rem;
  max-width: 420px;
}

.bento-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 241, 232, 0.18);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transform: rotate(-45deg);
  transition: all 0.3s ease;
}

.bento-item:hover .bento-arrow {
  background: var(--terra);
  transform: rotate(0deg);
}

@media (max-width: 700px) {
  .bento {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   EDITORIAL ABOUT — overlap image+text
   ============================================ */
.editorial {
  background: var(--cream-deep);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.editorial-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

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

.editorial-image .caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 8px 14px;
  background: rgba(26, 20, 16, 0.82);
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.editorial-text h2 { margin: 24px 0 32px; }

.editorial-text .lead { margin-bottom: 24px; font-size: 1.1875rem; color: var(--ink); }

.editorial-text p { margin-bottom: 20px; font-size: 1rem; }

.editorial-text .link-arrow { margin-top: 16px; }

@media (max-width: 900px) {
  .editorial-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   BIG NUMBERS — editorial stats
   ============================================ */
.bignums {
  background: var(--cream);
  padding: 130px 0;
}

.bignums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.bignum {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.bignum .num {
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 600;
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.bignum .num .acc { color: var(--terra); }

.bignum h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 600;
}

.bignum p {
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

@media (max-width: 900px) {
  .bignums { padding: 90px 0; }
  .bignums-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}

@media (max-width: 540px) {
  .bignums-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PROCESS — horizontal timeline
   ============================================ */
.process { background: var(--ink); color: var(--cream); }

.process h2 { color: var(--cream); }
.process .eyebrow { color: var(--terra-tint); }
.process .eyebrow::before { background: var(--terra-tint); }
.process p { color: rgba(245, 241, 232, 0.7); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(245, 241, 232, 0.15);
  z-index: 0;
}

.process-step {
  padding: 0 24px 0 0;
  position: relative;
}

.process-step .dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid rgba(245, 241, 232, 0.3);
  color: var(--cream);
  font-family: var(--display);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.process-step:hover .dot {
  background: var(--terra);
  border-color: var(--terra);
  transform: scale(1.1);
}

.process-step h3 {
  color: var(--cream);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.process-step p {
  color: rgba(245, 241, 232, 0.65);
  font-size: 0.9375rem;
  max-width: 240px;
}

@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
  .process-steps::before { display: none; }
  .process-step { padding: 0; }
}

/* ============================================
   TESTIMONIAL — big editorial quote
   ============================================ */
.testimonial-feature {
  background: var(--cream-deep);
  text-align: center;
}

.testimonial-feature blockquote {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.testimonial-feature .mark {
  font-family: var(--display);
  font-size: 7rem;
  font-weight: 600;
  color: var(--terra);
  line-height: 0.5;
  display: block;
  margin-bottom: 16px;
}

.testimonial-feature .quote {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 40px;
}

.testimonial-feature footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.testimonial-feature footer strong {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
}

.testimonial-feature footer span {
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================
   CTA — diagonal feel with photo bg
   ============================================ */
.cta-section {
  padding: 0;
  background: var(--cream);
}

.cta-block {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 100px 60px;
  color: var(--cream);
  text-align: center;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 20, 16, 0.78), rgba(168, 66, 26, 0.6)),
    url("https://images.unsplash.com/photo-1558293842-c0fd3db86157?w=1800&q=80") center / cover;
  z-index: 0;
}

.cta-block > * { position: relative; z-index: 1; }

.cta-block .eyebrow { color: var(--terra-tint); }
.cta-block .eyebrow::before { background: var(--terra-tint); }

.cta-block h2 {
  color: var(--cream);
  margin: 24px auto 28px;
  max-width: 800px;
}

.cta-block h2 .italic { color: var(--terra-tint); }

.cta-block p {
  color: rgba(245, 241, 232, 0.88);
  max-width: 580px;
  margin: 0 auto 40px;
  font-size: 1.0625rem;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .cta-block { padding: 70px 28px; }
}

/* ============================================
   FOOTER — editorial magazine outro
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-brand h3 {
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 28px;
  max-width: 440px;
  letter-spacing: -0.02em;
}

.footer-brand h3 .acc { color: var(--terra); }

.footer-brand p {
  color: rgba(245, 241, 232, 0.6);
  font-size: 0.9375rem;
  max-width: 360px;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-tint);
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul a {
  font-size: 0.9375rem;
  color: rgba(245, 241, 232, 0.78);
}
.footer-col ul a:hover { color: var(--terra); }

.footer-col address {
  font-style: normal;
  font-size: 0.9375rem;
  color: rgba(245, 241, 232, 0.78);
  line-height: 1.7;
}

.footer-col address a:hover { color: var(--terra-tint); }

.footer-bottom {
  border-top: 1px solid rgba(245, 241, 232, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(245, 241, 232, 0.4);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom .logo { color: var(--cream); font-size: 1.125rem; }

@media (max-width: 900px) {
  .footer { padding: 80px 0 32px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
    margin-bottom: 56px;
  }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   SUB-PAGE HEAD
   ============================================ */
.page-head {
  padding: 180px 0 80px;
  background: var(--cream);
}

.page-head-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
}

.page-head h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-top: 24px;
}

.page-head h1 .italic { color: var(--terra); font-weight: 600; }

.page-head .lead {
  border-left: 1px solid var(--line);
  padding-left: 32px;
  font-size: 1.0625rem;
}

@media (max-width: 900px) {
  .page-head { padding: 130px 0 60px; }
  .page-head-inner { grid-template-columns: 1fr; gap: 32px; }
  .page-head .lead { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
}

/* ============================================
   SERVICES PAGE — alternating spreads
   ============================================ */
.services-wrap { position: relative; }

.service-spread {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}

.services-wrap > .service-spread:nth-child(even) {
  background: var(--cream-deep);
}

.service-spread-bignum {
  position: absolute;
  top: 50%;
  right: -3vw;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: clamp(14rem, 28vw, 28rem);
  font-weight: 800;
  color: var(--terra);
  opacity: 0.07;
  line-height: 0.85;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none;
}

.services-wrap > .service-spread:nth-child(even) .service-spread-bignum {
  right: auto;
  left: -3vw;
}

.service-spread-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.services-wrap > .service-spread:nth-child(even) .service-spread-image {
  grid-column: 2;
  grid-row: 1;
}
.services-wrap > .service-spread:nth-child(even) .service-spread-content {
  grid-column: 1;
  grid-row: 1;
}

.service-spread-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5 / 4;
}

.service-spread-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-spread-image:hover img { transform: scale(1.04); }

.service-spread-image .badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 10px 18px;
  background: rgba(26, 20, 16, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-spread-content .eyebrow { margin-bottom: 18px; }

.service-spread-content h2 {
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  margin-bottom: 20px;
  line-height: 1;
}

.service-spread-content .desc {
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}

.service-spread-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.service-spread-tags li {
  padding: 9px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.2s ease;
}

.services-wrap > .service-spread:nth-child(even) .service-spread-tags li {
  background: var(--white);
}

.service-spread-tags li:hover {
  border-color: var(--terra);
  color: var(--terra);
}

@media (max-width: 900px) {
  .service-spread { padding: 80px 0; }
  .service-spread-inner { grid-template-columns: 1fr; gap: 36px; }
  .services-wrap > .service-spread:nth-child(even) .service-spread-image,
  .services-wrap > .service-spread:nth-child(even) .service-spread-content {
    grid-column: 1;
    grid-row: auto;
  }
  .service-spread-bignum { font-size: 12rem; opacity: 0.05; }
}

/* ============================================
   À PROPOS — values cards
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.value-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.value-card:hover {
  border-color: var(--terra);
  transform: translateY(-3px);
}

.value-card .num {
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
  letter-spacing: -0.03em;
}

.value-card h3 {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.value-card p { font-size: 0.9375rem; color: var(--ink-muted); }

@media (max-width: 760px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-side h2 { margin-bottom: 24px; }

.contact-side p { font-size: 1.0625rem; margin-bottom: 40px; max-width: 420px; }

.contact-meta { display: grid; gap: 24px; }

.contact-meta-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}

.contact-meta-item:last-child { border-bottom: 1px solid var(--line); }

.contact-meta-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terra-tint);
  color: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-meta-text strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2px;
}

.contact-meta-text span,
.contact-meta-text a {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
}

.contact-meta-text a:hover { color: var(--terra); }

.contact-form-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
}

.contact-form-card h3 {
  font-family: var(--display);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.contact-form-card .form-intro {
  margin-bottom: 32px;
  font-size: 0.9375rem;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terra);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A1410' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 14px;
  padding-right: 28px;
}

.contact-form-card .btn { margin-top: 32px; width: 100%; }

.form-success {
  display: none;
  margin-top: 24px;
  padding: 18px 22px;
  background: var(--cream);
  border: 1px solid var(--terra);
  border-radius: 12px;
  color: var(--ink);
  font-size: 0.9375rem;
  text-align: center;
}

.form-success.show { display: block; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-card { padding: 32px 24px; }
}

@media (max-width: 540px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ============================================
   COLOR BLOCKS — bold sectioned palette
   ============================================ */

/* Reveal animations */
.reveal-init {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-init.in-view { opacity: 1; transform: translateY(0); }

.bento .bento-item.reveal-init:nth-child(2) { transition-delay: 0.08s; }
.bento .bento-item.reveal-init:nth-child(3) { transition-delay: 0.16s; }
.bento .bento-item.reveal-init:nth-child(4) { transition-delay: 0.24s; }
.bignums-grid .bignum.reveal-init:nth-child(2) { transition-delay: 0.08s; }
.bignums-grid .bignum.reveal-init:nth-child(3) { transition-delay: 0.16s; }
.bignums-grid .bignum.reveal-init:nth-child(4) { transition-delay: 0.24s; }
.values-grid .value-card.reveal-init:nth-child(2) { transition-delay: 0.08s; }
.values-grid .value-card.reveal-init:nth-child(3) { transition-delay: 0.16s; }
.values-grid .value-card.reveal-init:nth-child(4) { transition-delay: 0.24s; }
.process-steps .process-step.reveal-init:nth-child(2) { transition-delay: 0.08s; }
.process-steps .process-step.reveal-init:nth-child(3) { transition-delay: 0.16s; }
.process-steps .process-step.reveal-init:nth-child(4) { transition-delay: 0.24s; }

/* PAGE HEAD - now bold terracotta */
.page-head {
  background: var(--terra);
  color: var(--ivory);
  padding: 200px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-head h1 { color: var(--ivory); }
.page-head h1 .italic { color: var(--cream); font-weight: 800; }
.page-head .eyebrow { color: var(--cream); opacity: 0.85; }
.page-head p.lead { color: rgba(255, 252, 245, 0.85); border-color: rgba(255, 252, 245, 0.3); }

/* EDITORIAL ABOUT - sage green block */
.editorial {
  background: var(--sage);
  color: var(--cream);
}
.editorial h1, .editorial h2 { color: var(--ivory); }
.editorial h2 .italic { color: var(--terra-soft); font-weight: 800; }
.editorial .eyebrow { color: var(--terra-soft); }
.editorial p { color: rgba(255, 252, 245, 0.82); }
.editorial .lead { color: var(--ivory); }
.editorial .link-arrow { color: var(--ivory); border-color: var(--ivory); }
.editorial .link-arrow:hover { color: var(--terra-soft); border-color: var(--terra-soft); }
.editorial-image .caption { background: var(--ivory); color: var(--ink); }

/* BIGNUMS - terracotta block */
.bignums {
  background: var(--terra);
  color: var(--ivory);
}
.bignums h2 { color: var(--ivory); }
.bignums h2 .italic { color: var(--cream); font-weight: 800; }
.bignums .eyebrow { color: var(--cream); opacity: 0.85; }
.bignums p, .bignums .lead { color: rgba(255, 252, 245, 0.85); }
.bignum {
  border-top: 1px solid rgba(255, 252, 245, 0.25);
  padding-top: 36px;
}
.bignum .num { color: var(--ivory); font-weight: 800; }
.bignum .num .acc { color: var(--cream); }
.bignum h4 { color: var(--ivory); }

/* PROCESS - keep dark brown, strengthen */
.process { background: var(--brun); }
.process .eyebrow { color: var(--terra); opacity: 1; }
.process-step .dot {
  background: var(--terra);
  border: 0;
  color: var(--ivory);
  font-weight: 700;
}
.process-step:hover .dot { background: var(--ivory); color: var(--terra); }
.process-steps::before { background: rgba(213, 96, 46, 0.3); }

/* TESTIMONIAL - cream block with terra accent */
.testimonial-feature { background: var(--cream); }
.testimonial-feature .mark { color: var(--terra); opacity: 1; font-weight: 800; }
.testimonial-feature .quote { color: var(--brun); font-weight: 600; }
.testimonial-feature footer strong { color: var(--brun); }
.testimonial-feature footer span { color: var(--terra); opacity: 1; }

/* CTA - solid terracotta, no photo */
.cta-block {
  background: var(--terra);
  padding: 110px 60px;
}
.cta-block::before {
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-deep) 100%);
}
.cta-block .eyebrow { color: var(--cream); opacity: 0.9; }
.cta-block h2 .italic { color: var(--cream); font-weight: 800; }
.cta-block .btn-ghost-light:hover {
  background: var(--ivory);
  color: var(--terra);
  border-color: var(--ivory);
}

/* HERO h1 italic accent — bolder color */
.hero h1 .italic { color: var(--terra); font-weight: 800; }

/* Section header h2 italic */
.section-header h2 .italic { color: var(--terra); font-weight: 800; }

/* SERVICE SPREADS - cycle 4 colors */
.services-wrap > .service-spread:nth-child(1) { background: var(--cream); }
.services-wrap > .service-spread:nth-child(2) {
  background: var(--sage);
  color: var(--cream);
}
.services-wrap > .service-spread:nth-child(3) {
  background: var(--terra);
  color: var(--ivory);
}
.services-wrap > .service-spread:nth-child(4) {
  background: var(--brun);
  color: var(--cream);
}

.services-wrap > .service-spread:nth-child(2) h2,
.services-wrap > .service-spread:nth-child(3) h2,
.services-wrap > .service-spread:nth-child(4) h2 { color: var(--ivory); }

.services-wrap > .service-spread:nth-child(2) .eyebrow { color: var(--terra-soft); }
.services-wrap > .service-spread:nth-child(3) .eyebrow { color: var(--cream); }
.services-wrap > .service-spread:nth-child(4) .eyebrow { color: var(--terra); }

.services-wrap > .service-spread:nth-child(2) .desc,
.services-wrap > .service-spread:nth-child(3) .desc,
.services-wrap > .service-spread:nth-child(4) .desc { color: rgba(255, 252, 245, 0.82); }

.services-wrap > .service-spread:nth-child(2) .service-spread-tags li,
.services-wrap > .service-spread:nth-child(3) .service-spread-tags li,
.services-wrap > .service-spread:nth-child(4) .service-spread-tags li {
  background: transparent;
  border-color: rgba(255, 252, 245, 0.3);
  color: var(--ivory);
}

.services-wrap > .service-spread:nth-child(2) .service-spread-tags li:hover,
.services-wrap > .service-spread:nth-child(3) .service-spread-tags li:hover,
.services-wrap > .service-spread:nth-child(4) .service-spread-tags li:hover {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}

.services-wrap > .service-spread:nth-child(2) .link-arrow,
.services-wrap > .service-spread:nth-child(3) .link-arrow,
.services-wrap > .service-spread:nth-child(4) .link-arrow {
  color: var(--ivory);
  border-color: var(--ivory);
}

.services-wrap > .service-spread:nth-child(2) .link-arrow:hover { color: var(--terra-soft); border-color: var(--terra-soft); }
.services-wrap > .service-spread:nth-child(3) .link-arrow:hover { color: var(--cream); border-color: var(--cream); }
.services-wrap > .service-spread:nth-child(4) .link-arrow:hover { color: var(--terra); border-color: var(--terra); }

.services-wrap > .service-spread:nth-child(2) .service-spread-bignum { color: var(--cream); opacity: 0.08; }
.services-wrap > .service-spread:nth-child(3) .service-spread-bignum { color: var(--cream); opacity: 0.1; }
.services-wrap > .service-spread:nth-child(4) .service-spread-bignum { color: var(--terra); opacity: 0.15; }

/* BENTO - colorful cards */
.bento-item:nth-child(1) { background: var(--cream-deep); }
.bento-item:nth-child(2) { background: var(--sage); }
.bento-item:nth-child(3) { background: var(--terra); }
.bento-item:nth-child(4) { background: var(--brun); }

.bento-item::after {
  background: linear-gradient(to bottom, transparent 25%, rgba(31, 20, 16, 0.88));
}

.bento-item:hover {
  transform: translateY(-6px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.bento-item img { transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }

/* VALUE CARDS - each a colored block */
.value-card { padding: 44px 36px; min-height: 220px; transition: transform 0.3s ease; }
.value-card:hover { transform: translateY(-6px); }

.value-card:nth-child(1) { background: var(--terra); border: 0; }
.value-card:nth-child(1) .num,
.value-card:nth-child(1) h3 { color: var(--ivory); }
.value-card:nth-child(1) p { color: rgba(255, 252, 245, 0.88); }

.value-card:nth-child(2) { background: var(--sage); border: 0; }
.value-card:nth-child(2) .num { color: var(--terra-soft); }
.value-card:nth-child(2) h3 { color: var(--ivory); }
.value-card:nth-child(2) p { color: rgba(255, 252, 245, 0.85); }

.value-card:nth-child(3) { background: var(--cream-deep); border: 0; }
.value-card:nth-child(3) .num { color: var(--terra); }

.value-card:nth-child(4) { background: var(--brun); border: 0; }
.value-card:nth-child(4) .num { color: var(--terra); }
.value-card:nth-child(4) h3 { color: var(--ivory); }
.value-card:nth-child(4) p { color: rgba(255, 252, 245, 0.85); }

/* CONTACT card — sage block */
.contact-side {
  background: var(--sage);
  color: var(--cream);
  padding: 48px 40px;
  border-radius: var(--radius);
}
.contact-side h2 { color: var(--ivory); }
.contact-side h2 .italic { color: var(--terra-soft); font-weight: 800; }
.contact-side .eyebrow { color: var(--terra-soft); }
.contact-side p { color: rgba(255, 252, 245, 0.85); }

.contact-meta-item {
  border-top: 1px solid rgba(255, 252, 245, 0.2);
}
.contact-meta-item:last-child { border-bottom: 1px solid rgba(255, 252, 245, 0.2); }
.contact-meta-icon { background: var(--terra); color: var(--ivory); }
.contact-meta-text strong { color: var(--terra-soft); }
.contact-meta-text span, .contact-meta-text a { color: var(--ivory); }
.contact-meta-text a:hover { color: var(--terra-soft); }

/* FOOTER tweaks */
.footer { background: var(--brun); }
.footer-brand h3 .acc { color: var(--terra); }
.footer-col h4 { color: var(--terra); }
.footer-col ul a:hover { color: var(--terra); }
.footer-col address a:hover { color: var(--terra-soft); }

/* HERO — solid bold accents */
.btn-primary { background: var(--brun); }
.btn-primary:hover { background: var(--terra); }

/* page-head divider for split */
.page-head .lead { border-left-color: rgba(255, 252, 245, 0.3); }

/* ============================================
   VALUES — asymmetric & varied
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.values-grid .value-card { padding: 0; min-height: 320px; border-radius: var(--radius); overflow: hidden; position: relative; transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.values-grid .value-card:hover { transform: translateY(-6px); }

.values-grid .value-card:nth-child(1) { grid-column: span 2; }
.values-grid .value-card:nth-child(4) { grid-column: span 2; }

/* Variant A — Feature wide (terra, big number + manifesto) */
.value-card.v-feature {
  background: var(--terra);
  color: var(--ivory);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
}
.value-card.v-feature .num {
  font-family: var(--display);
  font-size: 7rem;
  font-weight: 800;
  color: var(--ivory);
  line-height: 0.85;
  letter-spacing: -0.05em;
}
.value-card.v-feature h3 { color: var(--ivory); font-size: 2rem; margin-bottom: 16px; letter-spacing: -0.02em; }
.value-card.v-feature p { color: rgba(255, 252, 245, 0.88); font-size: 1.0625rem; max-width: 460px; }
.value-card.v-feature .v-tag {
  display: inline-block;
  margin-top: 24px;
  padding: 6px 14px;
  background: rgba(255, 252, 245, 0.18);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
}

/* Variant B — Photo card (vertical) */
.value-card.v-photo {
  background: var(--sage);
  position: relative;
  overflow: hidden;
}
.value-card.v-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.value-card.v-photo:hover img { transform: scale(1.06); opacity: 0.7; }
.value-card.v-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--sage-deep));
}
.value-card.v-photo .v-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 36px;
  color: var(--ivory);
  z-index: 1;
}
.value-card.v-photo .num { font-family: var(--display); font-size: 0.875rem; font-weight: 600; color: var(--terra-soft); letter-spacing: 0.1em; margin-bottom: 8px; display: block; }
.value-card.v-photo h3 { color: var(--ivory); font-size: 1.5rem; letter-spacing: -0.015em; }

/* Variant C — Icon + minimal */
.value-card.v-mini {
  background: var(--cream-deep);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.value-card.v-mini .v-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-card.v-mini .v-icon-wrap svg { width: 26px; height: 26px; }
.value-card.v-mini .num { font-family: var(--display); font-size: 0.875rem; font-weight: 600; color: var(--terra); letter-spacing: 0.1em; margin-bottom: 8px; display: block; }
.value-card.v-mini h3 { color: var(--ink); font-size: 1.625rem; margin-bottom: 12px; letter-spacing: -0.02em; }
.value-card.v-mini p { color: var(--ink-muted); font-size: 0.9375rem; }

/* Variant D — Stat highlight (wide, brun) */
.value-card.v-stat {
  background: var(--brun);
  color: var(--cream);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.value-card.v-stat .stat-side { text-align: left; }
.value-card.v-stat .v-stat-num {
  font-family: var(--display);
  font-size: clamp(5rem, 8vw, 7rem);
  font-weight: 800;
  color: var(--terra);
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.value-card.v-stat .v-stat-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
  margin-top: 12px;
  display: block;
}
.value-card.v-stat .num { font-family: var(--display); font-size: 0.875rem; font-weight: 600; color: var(--terra); letter-spacing: 0.1em; margin-bottom: 8px; display: block; }
.value-card.v-stat h3 { color: var(--ivory); font-size: 2rem; margin-bottom: 16px; letter-spacing: -0.02em; }
.value-card.v-stat p { color: rgba(255, 252, 245, 0.85); font-size: 1rem; }

@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr; }
  .values-grid .value-card:nth-child(1),
  .values-grid .value-card:nth-child(4) { grid-column: auto; }
  .v-feature, .v-stat { grid-template-columns: 1fr; gap: 24px; padding: 40px 28px; }
  .v-feature .num, .v-stat .v-stat-num { font-size: 5rem; }
  .v-mini { padding: 36px 28px; }
}

/* ============================================
   MANIFESTO — text-only spread (a-propos intro)
   ============================================ */
.manifesto {
  background: var(--cream);
  padding: 140px 0;
}
.manifesto-inner { max-width: 1100px; margin: 0 auto; }
.manifesto-eyebrow { margin-bottom: 40px; }
.manifesto-heading {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 60px;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 1000px;
}
.manifesto-heading .italic { color: var(--terra); font-weight: 800; }

.manifesto-body { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; padding-top: 40px; border-top: 2px solid var(--ink); }

.manifesto-body .lead-side {
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.manifesto-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.manifesto-cols p { font-size: 0.9375rem; line-height: 1.7; color: var(--ink-muted); }

@media (max-width: 900px) {
  .manifesto { padding: 80px 0; }
  .manifesto-body { grid-template-columns: 1fr; gap: 36px; }
  .manifesto-cols { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   PROCESS on services page — lighter version
   ============================================ */
.process-light {
  background: var(--cream);
  color: var(--ink);
}
.process-light h2 { color: var(--ink); }
.process-light h2 .italic { color: var(--terra); font-weight: 800; }
.process-light .eyebrow { color: var(--terra); }
.process-light .eyebrow::before { background: var(--terra); }
.process-light p, .process-light .lead { color: var(--ink-muted); }
.process-light .process-steps::before { background: rgba(31, 20, 16, 0.12); }
.process-light .process-step .dot { background: var(--terra); color: var(--ivory); border: 0; }
.process-light .process-step:hover .dot { background: var(--brun); }
.process-light .process-step h3 { color: var(--ink); }
.process-light .process-step p { color: var(--ink-muted); }

/* CTA — full-bleed terracotta section */
.cta-section {
  background: var(--terra);
  padding: 130px 0;
}
.cta-block {
  background: transparent;
  padding: 0;
  border-radius: 0;
  overflow: visible;
}
.cta-block::before { display: none; }
.cta-block::after { display: none; }
@media (max-width: 900px) {
  .cta-section { padding: 80px 0; }
  .cta-block { padding: 0; }
}

/* ============================================
   BENTO — No-photo color tiles (home)
   ============================================ */
.bento-item img { display: none !important; }
.bento-item::after { display: none !important; }
.bento-item .bento-arrow { display: none !important; }

.bento-item {
  aspect-ratio: auto !important;
  min-height: 440px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.bento-item:nth-child(1) { background: var(--terra); color: var(--ivory); }
.bento-item:nth-child(2) { background: var(--sage); color: var(--cream); }
.bento-item:nth-child(3) { background: var(--brun); color: var(--cream); }
.bento-item:nth-child(4) { background: var(--cream-deep); color: var(--ink); }

.bento-bgnum {
  position: absolute;
  top: -32px;
  right: -8px;
  font-family: var(--display);
  font-size: clamp(11rem, 17vw, 17rem);
  font-weight: 800;
  line-height: 0.78;
  opacity: 0.14;
  letter-spacing: -0.06em;
  user-select: none;
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  color: currentColor;
  z-index: 0;
}

.bento-item:hover .bento-bgnum {
  transform: translate(-14px, 18px) rotate(-4deg);
}

.bento-num {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.85;
  display: block;
  margin-bottom: 0;
}

.bento-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bento-item h3 {
  font-size: clamp(1.625rem, 2.4vw, 2.25rem);
  color: inherit;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 800;
}

.bento-item p {
  color: inherit;
  opacity: 0.85;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 460px;
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.bento-tags li {
  padding: 7px 14px;
  background: rgba(255, 252, 245, 0.14);
  border: 1px solid rgba(255, 252, 245, 0.22);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: inherit;
  transition: all 0.2s ease;
}

.bento-tags li:hover {
  background: rgba(255, 252, 245, 0.28);
}

.bento-item:nth-child(4) .bento-tags li {
  background: rgba(31, 20, 16, 0.05);
  border-color: rgba(31, 20, 16, 0.15);
  color: var(--ink);
}
.bento-item:nth-child(4) .bento-tags li:hover {
  background: rgba(31, 20, 16, 0.1);
}

.bento-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap 0.25s ease;
  color: currentColor;
}

.bento-item:hover .bento-action { gap: 16px; }

@media (max-width: 700px) {
  .bento-item { min-height: 360px; padding: 32px; }
  .bento-bgnum { font-size: 9rem; }
}

/* ============================================
   SERVICES LIST — editorial rows (replaces bento)
   ============================================ */
.bento { display: none !important; }

.services-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ink);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr auto;
  gap: 60px;
  padding: 48px 24px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
  color: var(--ink);
}

.service-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--terra);
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.service-row:nth-child(2)::before { background: var(--sage); }
.service-row:nth-child(3)::before { background: var(--brun); }
.service-row:nth-child(4)::before { background: var(--terra); }

.service-row:hover::before { transform: translateY(0); }

.service-row > * {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease, transform 0.4s ease;
}

.service-row:hover { color: var(--ivory); }

.srow-num {
  font-family: var(--display);
  font-size: clamp(7rem, 11vw, 11.5rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--terra);
}

.service-row:nth-child(2) .srow-num { color: var(--sage); }
.service-row:nth-child(3) .srow-num { color: var(--brun); }

.service-row:hover .srow-num { color: var(--ivory); transform: translateX(8px); }

.srow-content { display: flex; flex-direction: column; gap: 10px; max-width: 640px; }

.srow-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
}

.service-row:nth-child(2) .srow-eyebrow { color: var(--sage); }
.service-row:nth-child(3) .srow-eyebrow { color: var(--brun); }
.service-row:hover .srow-eyebrow { color: var(--ivory); opacity: 0.85; }

.srow-content h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: inherit;
}

.srow-content p {
  font-size: 1rem;
  line-height: 1.55;
  margin-top: 6px;
  color: var(--ink-muted);
  transition: color 0.4s ease;
}

.service-row:hover .srow-content p { color: rgba(255, 252, 245, 0.88); }

.srow-arrow {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid currentColor;
  font-size: 1.3rem;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-row:hover .srow-arrow {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
  transform: translateX(10px) rotate(-45deg);
}

@media (max-width: 800px) {
  .service-row {
    grid-template-columns: auto 1fr;
    gap: 28px;
    padding: 36px 16px;
  }
  .srow-num { font-size: 5rem; }
  .srow-arrow { grid-column: 1 / -1; justify-self: end; width: 48px; height: 48px; font-size: 1rem; }
}

/* ============================================
   BIGNUMS — switch to sage green block
   ============================================ */
.bignums { background: var(--sage); color: var(--cream); }
.bignums h2, .bignums h2 .italic,
.bignums .section-header h2 .italic { color: var(--terra-soft) !important; font-weight: 800; }
.bignums .section-header > div > h2 { color: var(--ivory); }
.bignums .eyebrow { color: var(--terra-soft); opacity: 1; }
.bignums p, .bignums .lead { color: rgba(255, 252, 245, 0.85); }
.bignum { border-top: 1px solid rgba(255, 252, 245, 0.22); padding-top: 36px; }
.bignum .num { color: var(--ivory); font-weight: 800; }
.bignum .num .acc { color: var(--terra-soft); }
.bignum h4 { color: var(--terra-soft); }
.bignum p { color: rgba(255, 252, 245, 0.78); }

/* fix bignums h2 to ivory, only italic span peach */
.bignums h2 { color: var(--ivory) !important; }
.bignums h2 .italic,
.bignums .section-header h2 .italic { color: var(--terra-soft) !important; font-weight: 800; }

/* ============================================
   VALUES — clean symmetric columns (no boxes, no big nums)
   ============================================ */
.values-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.values-grid .value-card,
.values-grid .value-card.v-feature,
.values-grid .value-card.v-photo,
.values-grid .value-card.v-mini,
.values-grid .value-card.v-stat {
  background: transparent !important;
  color: var(--ink) !important;
  border-radius: 0 !important;
  border: 0 !important;
  border-right: 1px solid var(--line) !important;
  padding: 54px 36px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  min-height: 0 !important;
  grid-column: auto !important;
  grid-row: auto !important;
  overflow: visible !important;
  transition: background 0.4s ease, transform 0s !important;
  transform: none !important;
}
.values-grid .value-card:last-child { border-right: 0 !important; }
.values-grid .value-card:hover {
  background: rgba(213, 96, 46, 0.05) !important;
  transform: none !important;
}

/* hide all the variant-specific bits */
.values-grid .value-card img,
.values-grid .value-card .v-tag,
.values-grid .value-card .v-stat-num,
.values-grid .value-card .v-stat-label,
.values-grid .value-card .v-content,
.values-grid .value-card .stat-side,
.values-grid .value-card > .num,
.values-grid .value-card .v-icon-wrap {
  display: none !important;
}
.values-grid .value-card::after { display: none !important; }

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}
.value-card:hover .value-icon {
  transform: rotate(-10deg) scale(1.06);
  background: var(--brun);
}
.value-icon svg { width: 28px; height: 28px; }

.values-grid .value-card h3 {
  font-size: 1.5rem !important;
  color: var(--ink) !important;
  margin: 0 0 14px 0 !important;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.values-grid .value-card p {
  font-size: 0.9375rem !important;
  color: var(--ink-muted) !important;
  line-height: 1.6;
  max-width: 100% !important;
  margin: 0 !important;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr 1fr !important;
    border-bottom: 0;
  }
  .values-grid .value-card {
    border-bottom: 1px solid var(--line) !important;
    padding: 40px 28px !important;
  }
  .values-grid .value-card:nth-child(2n) { border-right: 0 !important; }
  .values-grid .value-card:nth-last-child(-n+2) { border-bottom: 0 !important; }
}
@media (max-width: 540px) {
  .values-grid { grid-template-columns: 1fr !important; }
  .values-grid .value-card {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .values-grid .value-card:last-child { border-bottom: 0 !important; }
}

/* ============================================
   BIGNUMS — same clean style as values
   ============================================ */
.bignums-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  border-top: 1px solid rgba(255, 252, 245, 0.22);
  border-bottom: 1px solid rgba(255, 252, 245, 0.22);
}

.bignum {
  padding: 54px 36px !important;
  border-top: 0 !important;
  border-right: 1px solid rgba(255, 252, 245, 0.18) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  transition: background 0.4s ease;
}
.bignum:last-child { border-right: 0 !important; }
.bignum:hover { background: rgba(255, 252, 245, 0.05); }

.bignum-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, color 0.3s ease;
}
.bignum:hover .bignum-icon {
  transform: rotate(-10deg) scale(1.06);
  background: var(--ivory);
  color: var(--terra);
}
.bignum-icon svg { width: 28px; height: 28px; }

.bignum h3 {
  font-family: var(--display);
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: var(--ivory) !important;
  margin: 0 0 14px 0 !important;
  letter-spacing: -0.02em;
  line-height: 1;
}
.bignum h3 .acc { color: var(--terra-soft) !important; }
.bignum p {
  font-size: 0.9375rem !important;
  color: rgba(255, 252, 245, 0.8) !important;
  line-height: 1.6;
  margin: 0 !important;
}

.bignum > .num, .bignum > h4 { display: none !important; }

@media (max-width: 900px) {
  .bignums-grid { grid-template-columns: 1fr 1fr !important; border-bottom: 0; }
  .bignum {
    border-bottom: 1px solid rgba(255, 252, 245, 0.18) !important;
    padding: 40px 28px !important;
  }
  .bignum:nth-child(2n) { border-right: 0 !important; }
  .bignum:nth-last-child(-n+2) { border-bottom: 0 !important; }
}
@media (max-width: 540px) {
  .bignums-grid { grid-template-columns: 1fr !important; }
  .bignum { border-right: 0 !important; }
  .bignum:last-child { border-bottom: 0 !important; }
}

/* ============================================
   BIGNUMS — typography-led (distinct from values)
   ============================================ */
.bignum-icon { display: none !important; }

.bignum h3 {
  font-family: var(--display);
  font-size: clamp(2.75rem, 4.5vw, 4rem) !important;
  font-weight: 800 !important;
  color: var(--ivory) !important;
  margin: 0 0 24px 0 !important;
  letter-spacing: -0.04em;
  line-height: 1;
  position: relative;
  padding-bottom: 22px;
}
.bignum h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--terra-soft);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.bignum:hover h3::after { width: 80px; }

.bignum-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-soft);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.bignum:hover { background: transparent !important; }

/* ============================================
   ABOUT INTRO — pro/corporate layout (replaces manifesto)
   ============================================ */
.manifesto { padding: 130px 0; }
.manifesto-inner { max-width: 100% !important; }
.manifesto-eyebrow, .manifesto-heading, .manifesto-body { display: none !important; }

.about-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
}

.about-left { position: sticky; top: 110px; }
.about-left .eyebrow { margin-bottom: 28px; }
.about-left h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem) !important;
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-weight: 700;
  margin: 0;
}
.about-left h2 .italic { color: var(--terra); font-weight: 700; }

.about-right .lead {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 720px;
  font-weight: 500;
}
.about-right p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-muted);
  margin-bottom: 20px;
  max-width: 720px;
}
.about-right p:last-child { margin-bottom: 0; }

.about-pillars {
  margin-top: 40px;
  display: grid;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about-pillar h4 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.about-pillar p {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 720px;
}

@media (max-width: 900px) {
  .manifesto { padding: 80px 0; }
  .about-row { grid-template-columns: 1fr; gap: 36px; }
  .about-left { position: static; }
}

/* ============================================
   PAGE HEAD — harmonious light version
   ============================================ */
.page-head {
  background: var(--cream-deep) !important;
  color: var(--ink) !important;
  padding: 180px 0 90px !important;
  border-bottom: 1px solid var(--line);
}
.page-head::after { display: none !important; }

.page-head-inner {
  display: block !important;
  text-align: left;
}

.page-head .eyebrow {
  color: var(--terra) !important;
  margin-bottom: 28px;
  opacity: 1 !important;
}

.page-head h1 {
  color: var(--ink) !important;
  font-size: clamp(2.5rem, 4.5vw, 4rem) !important;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 900px;
  margin: 0 0 36px;
}

.page-head h1 .italic { color: var(--terra) !important; font-weight: 800; }

.page-head .lead {
  color: var(--ink-muted) !important;
  border-left: 0 !important;
  padding-left: 0 !important;
  font-size: 1.125rem;
  max-width: 680px;
  line-height: 1.65;
  margin: 0;
  border-top: 0;
  padding-top: 0;
}

@media (max-width: 900px) {
  .page-head { padding: 130px 0 60px !important; }
}

/* ============================================
   RAISON D'ÊTRE — centered + 3 pillars
   ============================================ */
.raison-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}
.raison-intro .eyebrow { margin-bottom: 24px; display: inline-block; }
.raison-intro h2 {
  font-size: clamp(2.25rem, 3.6vw, 3.25rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 28px;
  font-weight: 800;
}
.raison-intro h2 .italic { color: var(--terra); font-weight: 800; }
.raison-intro .lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 720px;
  margin: 0 auto;
}

.raison-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
  max-width: 1100px;
  margin: 0 auto;
}
.raison-pillar h4 {
  font-family: var(--display);
  font-size: 1.1875rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--ink);
  letter-spacing: -0.015em;
  position: relative;
  padding-bottom: 14px;
}
.raison-pillar h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--terra);
}
.raison-pillar p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0;
}

@media (max-width: 800px) {
  .raison-pillars { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================
   RAISON D'ÊTRE — neutral with subtle touches
   ============================================ */
.manifesto { background: var(--cream-deep) !important; }

.raison-intro { position: relative; }
.raison-intro::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--terra);
  margin: 0 auto 32px;
}

.raison-pillar h4 {
  padding-bottom: 0 !important;
  padding-left: 20px;
  position: relative;
}
.raison-pillar h4::after { display: none !important; }
.raison-pillar h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--terra);
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.raison-pillar:hover h4::before {
  transform: scale(1.4);
}

/* ============================================
   RAISON D'ÊTRE — sage green for distinction
   ============================================ */
.manifesto { background: var(--sage) !important; color: var(--cream) !important; }
.raison-intro::before { background: var(--terra-soft) !important; }
.raison-intro .eyebrow { color: var(--terra-soft) !important; }
.raison-intro h2 { color: var(--ivory) !important; }
.raison-intro h2 .italic { color: var(--terra-soft) !important; }
.raison-intro .lead { color: rgba(255, 252, 245, 0.85) !important; }
.raison-pillars { border-top-color: rgba(255, 252, 245, 0.2) !important; }
.raison-pillar h4 { color: var(--ivory) !important; }
.raison-pillar h4::before { background: var(--terra-soft) !important; }
.raison-pillar p { color: rgba(255, 252, 245, 0.72) !important; }

/* RAISON — switch sage to brun for unique color */
.manifesto { background: var(--brun) !important; color: var(--cream) !important; }
.raison-intro::before { background: var(--terra) !important; }
.raison-intro .eyebrow { color: var(--terra) !important; }
.raison-intro h2 { color: var(--ivory) !important; }
.raison-intro h2 .italic { color: var(--terra) !important; }
.raison-intro .lead { color: rgba(255, 252, 245, 0.78) !important; }
.raison-pillars { border-top-color: rgba(255, 252, 245, 0.15) !important; }
.raison-pillar h4 { color: var(--ivory) !important; }
.raison-pillar h4::before { background: var(--terra) !important; }
.raison-pillar p { color: rgba(255, 252, 245, 0.68) !important; }

/* ============================================
   HOME — variations on existing sections
   ============================================ */

/* Hero: swap photo to left, text to right */
.hero {
  grid-template-columns: 1.05fr 1fr !important;
}
.hero-photo {
  grid-column: 1 !important;
  margin-left: -40px !important;
  margin-right: 0 !important;
  border-radius: 0 var(--radius) var(--radius) 0 !important;
}
.hero-text {
  grid-column: 2 !important;
  padding: 40px 40px 40px 0 !important;
}
@media (max-width: 980px) {
  .hero-photo, .hero-text {
    grid-column: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: var(--radius) !important;
    padding: 0 !important;
  }
  .hero-photo { order: -1; }
}

/* Services list: subtler hover (no full color slide) */
.service-row::before { display: none !important; }
.service-row { transition: background 0.3s ease, color 0.3s ease; }
.service-row:hover {
  background: rgba(213, 96, 46, 0.05);
  color: var(--ink);
}
.service-row:hover .srow-content p { color: var(--ink-muted); }
.service-row:hover .srow-arrow {
  background: var(--terra);
  color: var(--ivory);
  border-color: var(--terra);
  transform: translateX(10px) rotate(0deg);
}

/* Editorial about: swap image to right, switch bg to brun */
.editorial {
  background: var(--brun) !important;
  color: var(--cream) !important;
}
.editorial-grid { grid-template-columns: 1fr 1.1fr !important; }
.editorial-text { grid-column: 1 !important; grid-row: 1 !important; }
.editorial-image { grid-column: 2 !important; grid-row: 1 !important; }

.editorial h2 { color: var(--ivory) !important; }
.editorial h2 .italic { color: var(--terra) !important; font-weight: 800; }
.editorial .eyebrow { color: var(--terra) !important; }
.editorial p { color: rgba(255, 252, 245, 0.75) !important; }
.editorial .lead { color: var(--ivory) !important; }
.editorial .link-arrow { color: var(--ivory) !important; border-color: var(--ivory) !important; }
.editorial .link-arrow:hover { color: var(--terra) !important; border-color: var(--terra) !important; }
.editorial-image .caption { background: var(--ivory) !important; color: var(--ink) !important; }

@media (max-width: 900px) {
  .editorial-grid { grid-template-columns: 1fr !important; }
  .editorial-text, .editorial-image {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

/* ============================================
   REVERT services + editorial to original
   ============================================ */
/* services list: restore color slide hover */
.service-row::before { display: block !important; }
.service-row:hover { background: transparent; color: var(--ivory); }
.service-row:hover .srow-content p { color: rgba(255, 252, 245, 0.88); }

/* editorial: restore sage + original positions */
.editorial { background: var(--sage) !important; color: var(--cream) !important; }
.editorial-grid { grid-template-columns: 1fr 1fr !important; }
.editorial-text { grid-column: auto !important; grid-row: auto !important; }
.editorial-image { grid-column: auto !important; grid-row: auto !important; }

/* ============================================
   HERO — photo as full-screen background
   ============================================ */
.hero {
  display: block !important;
  grid-template-columns: none !important;
  min-height: 100vh;
  padding: 0 !important;
  position: relative;
  overflow: hidden;
}

.hero-photo {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  z-index: 0;
}
.hero-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 20, 16, 0.65) 0%, rgba(31, 20, 16, 0.35) 60%, rgba(213, 96, 46, 0.25) 100%);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 1340px;
  margin: 0 auto;
  padding: 240px 40px 120px !important;
  color: var(--ivory) !important;
  grid-column: auto !important;
}

.hero-text .eyebrow {
  color: var(--terra-soft) !important;
  margin-bottom: 28px;
}

.hero h1 {
  color: var(--ivory) !important;
  font-size: clamp(3rem, 7vw, 6rem) !important;
  max-width: 900px;
  margin-bottom: 32px;
  line-height: 0.98;
}
.hero h1 .italic { color: var(--terra-soft) !important; font-weight: 800; }

.hero p {
  color: rgba(255, 252, 245, 0.88) !important;
  max-width: 540px;
  font-size: 1.0625rem;
  margin-bottom: 44px;
}

.hero-actions { display: flex !important; }
.hero-actions .btn-primary {
  background: var(--terra);
  color: var(--ivory);
}
.hero-actions .btn-primary:hover {
  background: var(--ivory);
  color: var(--ink);
}
.hero-actions .link-arrow {
  color: var(--ivory) !important;
  border-color: var(--ivory) !important;
}
.hero-actions .link-arrow:hover {
  color: var(--terra-soft) !important;
  border-color: var(--terra-soft) !important;
}

@media (max-width: 900px) {
  .hero-text { padding: 180px 22px 80px !important; }
}

/* ============================================
   CONTACT — trust strip + next steps
   ============================================ */
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.trust-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--terra-soft);
  color: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item .icon svg { width: 18px; height: 18px; }
.trust-item span {
  font-size: 0.9375rem;
  color: var(--ink);
}
.trust-item strong {
  color: var(--terra);
  font-weight: 700;
  margin-right: 4px;
}
@media (max-width: 700px) {
  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-item { justify-content: flex-start; }
}

.next-steps {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 252, 245, 0.18);
}
.next-steps h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-soft);
  margin-bottom: 22px;
  font-weight: 600;
}
.next-step {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.next-step:last-child { margin-bottom: 0; }
.next-step .step-num {
  font-family: var(--display);
  font-size: 0.875rem;
  color: var(--terra-soft);
  font-weight: 800;
  letter-spacing: 0.05em;
}
.next-step .step-text {
  font-size: 0.9375rem;
  color: rgba(255, 252, 245, 0.82);
  line-height: 1.5;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page { background: var(--cream); padding: 80px 0 130px; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  margin: 48px 0 14px;
  letter-spacing: -0.02em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.legal-content p strong { color: var(--ink); font-weight: 600; }
.legal-content a {
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
  padding-bottom: 1px;
}
.legal-content a:hover { color: var(--terra-deep); border-color: var(--terra-deep); }
.legal-list {
  margin: 8px 0 20px 24px;
  list-style: disc;
}
.legal-list li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

/* Footer legal links */
.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255, 252, 245, 0.5);
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--terra-soft); }
@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ============================================
   POLISH & MOBILE FIXES
   ============================================ */

/* Devis gratuit button — slightly refined, less aggressive */
.btn-terra {
  background: var(--terra);
  color: var(--ivory);
  font-weight: 600;
}
.header .btn-terra {
  padding: 12px 22px;
  font-size: 0.82rem;
}

/* Hero polish */
.hero h1 {
  font-weight: 800;
}

/* Section header — fix sticky overflow on mobile */
@media (max-width: 900px) {
  .section-header { grid-template-columns: 1fr; gap: 24px; }
  .section-header-right { padding-bottom: 0; }
  .about-left { position: static !important; top: auto !important; }
}

/* Service spreads — mobile cleanup */
@media (max-width: 900px) {
  .service-spread { padding: 60px 0; }
  .service-spread-inner { gap: 28px; }
  .service-spread-content h2 { font-size: clamp(1.75rem, 6vw, 2rem); }
  .service-spread-bignum { display: none; }
}

/* Service row (home) — mobile */
@media (max-width: 700px) {
  .service-row { grid-template-columns: auto 1fr; gap: 20px; padding: 28px 12px; }
  .srow-num { font-size: 3.2rem; }
  .srow-content h3 { font-size: 1.25rem; }
  .srow-content p { font-size: 0.875rem; }
  .srow-arrow { width: 40px; height: 40px; font-size: 0.9rem; }
}

/* Hero — mobile photo bg adjustment */
@media (max-width: 900px) {
  .hero { min-height: 90vh; }
  .hero-text { padding: 160px 22px 70px !important; }
  .hero h1 { font-size: clamp(2.5rem, 9vw, 3.5rem) !important; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
}

/* Editorial mobile */
@media (max-width: 900px) {
  .editorial-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .editorial-image { order: -1; aspect-ratio: 4/3; }
}

/* Bento services on home now hidden, but ensure clean */
@media (max-width: 700px) {
  .raison-pillars { grid-template-columns: 1fr !important; gap: 28px; padding-top: 36px; }
  .raison-intro { margin-bottom: 48px; }
  .raison-intro h2 { font-size: clamp(1.75rem, 6vw, 2.25rem) !important; }
}

/* Values clean cols mobile */
@media (max-width: 700px) {
  .values-grid {
    grid-template-columns: 1fr !important;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
  }
  .values-grid .value-card {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    padding: 36px 24px !important;
  }
  .values-grid .value-card:last-child { border-bottom: 0 !important; }
}

/* Bignums mobile */
@media (max-width: 700px) {
  .bignums-grid {
    grid-template-columns: 1fr 1fr !important;
    border-bottom: 0;
  }
  .bignum {
    padding: 32px 18px !important;
    border-bottom: 1px solid rgba(255, 252, 245, 0.18) !important;
  }
  .bignum:nth-child(2n) { border-right: 0 !important; }
  .bignum:nth-last-child(-n+2) { border-bottom: 0 !important; }
  .bignum h3 { font-size: 2rem !important; }
}

/* Contact mobile */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .contact-side { padding: 36px 28px; }
  .next-steps { margin-top: 28px; padding-top: 24px; }
}

/* Footer mobile */
@media (max-width: 700px) {
  .footer { padding: 70px 0 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 36px; }
  .footer-brand h3 { font-size: 1.625rem; }
}

/* Trust strip mobile */
@media (max-width: 700px) {
  .trust-strip { padding: 24px 0; }
  .trust-grid { grid-template-columns: 1fr; gap: 14px; }
  .trust-item { justify-content: flex-start; }
}

/* Manifesto / raison mobile */
@media (max-width: 900px) {
  .raison-intro { max-width: 100%; }
  .manifesto { padding: 80px 0; }
}

/* Hide horizontal overflow safety */
body { max-width: 100vw; overflow-x: hidden; }

/* Header mobile burger refinement */
@media (max-width: 980px) {
  .menu-toggle { display: flex !important; }
}

/* ============================================
   CLIENTS / POUR QUI — section on home
   ============================================ */
.clients-strip {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 70px 0;
}
.clients-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
}
.clients-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.clients-row span {
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  position: relative;
  padding: 0 4px;
  opacity: 0.75;
  transition: opacity 0.25s ease, color 0.25s ease;
}
.clients-row span:hover { opacity: 1; color: var(--terra); }
.clients-row span:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--terra);
  font-weight: 700;
}
@media (max-width: 700px) {
  .clients-strip { padding: 50px 0; }
  .clients-row { gap: 12px 28px; }
  .clients-row span { font-size: 1rem; }
  .clients-row span:not(:last-child)::after { right: -16px; }
}

/* RGPD checkbox in contact form */
.form-rgpd {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--ink-muted);
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 4px;
}
.form-rgpd input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--terra);
  flex-shrink: 0;
  cursor: pointer;
}
.form-rgpd a {
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
  padding-bottom: 1px;
}
.form-rgpd a:hover { color: var(--terra-deep); border-color: var(--terra-deep); }

.form-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 14px;
  text-align: center;
  font-style: normal;
  letter-spacing: 0;
}

/* ============================================
   SERVICES PAGE — tightening & polish
   ============================================ */
.service-spread {
  padding: 100px 0 !important;
}
@media (max-width: 900px) {
  .service-spread { padding: 60px 0 !important; }
}

/* Hide the duplicate "01 / Création" badge on image since eyebrow already says it */
.service-spread-image .badge { display: none !important; }

/* Process section — distinct visual: connecting line + bigger numbered circles */
.process-light .process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 56px;
  padding-top: 0;
}
.process-light .process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--terra);
  opacity: 0.3;
  z-index: 0;
}
.process-light .process-step {
  text-align: center;
  position: relative;
}
.process-light .process-step .dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--terra);
  color: var(--terra);
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.process-light .process-step:hover .dot {
  background: var(--terra);
  color: var(--cream);
  transform: scale(1.06);
}
.process-light .process-step h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.process-light .process-step p {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  max-width: 220px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .process-light .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
  .process-light .process-steps::before { display: none; }
}
@media (max-width: 540px) {
  .process-light .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Services page CTA → brun instead of terra (avoids terra-on-terra with service 03) */
body.services-page .cta-section { background: var(--brun) !important; }
body.services-page .cta-block::before {
  background: linear-gradient(135deg, var(--brun) 0%, var(--brun-warm) 100%) !important;
}
