/* ===================================================
   CLEAN CARTON — Stylesheet partagé
   Fontshare : Tanker · Boska · Cabinet Grotesk
   =================================================== */

:root {
  --forest: #14321E;
  --forest-deep: #0A1F12;
  --sage: #64A078;
  --sage-deep: #3D7A52;
  --sage-light: #96BEA0;
  --cream: #F4EFE4;
  --cream-warm: #ECE3CF;
  --paper: #FAF6EC;
  --kraft: #C8A576;
  --kraft-deep: #3D7A52;
  --ink: #14181A;
  --line: rgba(20,24,26,0.10);
  --shadow-1: 0 2px 8px rgba(20,32,30,0.06);
  --shadow-2: 0 24px 60px rgba(20,32,30,0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}

/* === TYPOGRAPHY === */
.serif {
  font-family: 'Boska', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.9;
}
.serif em {
  font-family: 'Tanker', sans-serif;
  font-style: normal;
  color: var(--sage-deep);
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--sage-deep);
}

.logo {
  background-image: url('/logo.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  aspect-ratio: 1;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 32px;
  background: rgba(250,246,236,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s var(--ease);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand .logo { width: 38px; height: 38px; }
.brand-name {
  font-family: 'Tanker', sans-serif;
  font-size: 24px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--forest);
  transition: width 0.3s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.cta-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--forest);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 100px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.cta-header:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
}
.cta-header .dot {
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .header { padding: 14px 20px; }
}

/* === PAGE HERO (non-home) === */
.page-hero {
  padding: 160px 32px 80px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero-bg-logo {
  position: absolute;
  width: 480px;
  height: 480px;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.05;
  animation: spin 90s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 {
  font-family: 'Boska', serif;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  max-width: 1100px;
  margin-bottom: 32px;
  font-feature-settings: "ss01" on, "ss02" on;
}
.page-hero h1 em {
  font-family: 'Tanker', sans-serif;
  font-style: normal;
  color: var(--sage-deep);
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.page-hero-sub {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.4;
  color: var(--ink);
  opacity: 0.75;
  max-width: 680px;
  font-weight: 300;
}

/* === BREADCRUMB === */
.crumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
  margin-bottom: 32px;
}
.crumb a {
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.3s var(--ease);
}
.crumb a:hover { opacity: 1; color: var(--forest); }
.crumb .sep { margin: 0 10px; opacity: 0.5; }

/* === CONTENT SECTIONS === */
.section {
  padding: 100px 32px;
  position: relative;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section.cream { background: var(--cream); }
.section.dark {
  background: var(--forest);
  color: var(--cream);
}
.section.kraft {
  background: var(--kraft);
  color: var(--forest-deep);
}
.section h2 {
  font-family: 'Boska', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  max-width: 900px;
}
.section h2 em {
  font-family: 'Tanker', sans-serif;
  font-style: normal;
  color: var(--sage-deep);
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.section.dark h2 em { color: var(--sage); }
.section h3 {
  font-family: 'Boska', serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section h3 em {
  font-family: 'Tanker', sans-serif;
  font-style: normal;
  color: var(--sage-deep);
  text-transform: uppercase;
}
.section p {
  font-size: 16px;
  line-height: 1.6;
  color: inherit;
  opacity: 0.85;
  margin-bottom: 18px;
  max-width: 720px;
}
.section.dark p { opacity: 0.8; }

/* === GRID BLOCKS === */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  margin: 32px 0;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin: 32px 0;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  margin: 32px 0;
}
.block {
  background: var(--paper);
  padding: 32px 28px;
  transition: background 0.4s var(--ease);
}
.cream .block, .block.bg-cream { background: var(--cream); }
.block:hover { background: var(--cream-warm); }
.block .block-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 12px;
}
.block h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin-bottom: 10px;
}
.block p {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.8;
  margin-bottom: 0;
}
.block a.link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  transition: letter-spacing 0.3s var(--ease);
}
.block a.link:hover { letter-spacing: 0.22em; }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* === BIG NUMBER === */
.big-num {
  font-family: 'Tanker', sans-serif;
  font-size: clamp(64px, 9vw, 144px);
  line-height: 0.82;
  letter-spacing: -0.005em;
  color: var(--forest);
  text-transform: uppercase;
}
.big-num .suf {
  font-size: 0.4em;
  color: var(--sage-deep);
  font-family: 'Boska', serif;
  font-style: italic;
  text-transform: none;
}

/* === BUTTONS === */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: 100px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s var(--ease);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(20,50,30,0.25);
}
.btn-primary .arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.4s var(--ease);
}
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}
.dark .btn-secondary {
  color: var(--cream);
  border-color: var(--cream);
}
.dark .btn-secondary:hover {
  background: var(--cream);
  color: var(--ink);
}

/* === CTA BOX === */
.cta-box {
  background: var(--forest);
  color: var(--cream);
  padding: 80px 48px;
  border-radius: 4px;
  text-align: center;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}
.cta-box .eyebrow { color: var(--sage); margin-bottom: 24px; }
.cta-box .eyebrow::before { background: var(--sage); }
.cta-box h2 {
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto 32px;
}
.cta-box h2 em { color: var(--sage); }
.cta-box .btns {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* === FAQ === */
.faq-list {
  margin: 32px 0;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 {
  font-family: 'Boska', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.78;
  max-width: 820px;
}

/* === FORM === */
.form {
  background: var(--cream);
  padding: 48px 40px;
  border-radius: 4px;
}
.form-title {
  font-family: 'Boska', serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.form-title em {
  font-family: 'Tanker', sans-serif;
  font-style: normal;
  color: var(--sage-deep);
  text-transform: uppercase;
}
.field { margin-bottom: 24px; }
.field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 15px;
  color: var(--ink);
  transition: all 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: #fff;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.radio-pill {
  padding: 10px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.radio-pill:hover { border-color: var(--forest); }
.radio-pill.selected {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--forest);
  color: var(--cream);
  border: none;
  border-radius: 100px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
}

/* === FOOTER === */
.footer {
  background: var(--forest);
  color: var(--cream);
  padding: 80px 32px 32px;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(244,239,228,0.15);
  margin-bottom: 32px;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand .logo {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  background-image: url('/logo-white.png');
  opacity: 0.95;
}
.footer-brand h4 {
  font-family: 'Tanker', sans-serif;
  font-size: 36px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 13px;
  opacity: 0.6;
  max-width: 240px;
  line-height: 1.55;
}
.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 13px;
  color: var(--cream);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.3s var(--ease);
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 16px;
}

/* === FLOATING MOBILE CTA === */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--forest);
  color: var(--cream);
  padding: 16px;
  border-radius: 100px;
  text-decoration: none;
  z-index: 50;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(20,50,30,0.4);
  letter-spacing: 0.02em;
}
@media (max-width: 860px) { .mobile-call { display: block; } }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === HOME SPECIFIC === */
.hero {
  min-height: 100vh;
  padding: 120px 32px 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-bg .floating-logo {
  position: absolute;
  width: 360px; height: 360px;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  opacity: 0.08;
  animation: spin 60s linear infinite;
}
.hero-bg .floating-logo-2 {
  position: absolute;
  width: 120px; height: 120px;
  left: 8%; bottom: 15%;
  opacity: 0.07;
  animation: spin 90s linear infinite reverse;
}
.hero-top {
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink); opacity: 0.6;
  position: relative; z-index: 2; margin-top: 24px;
}
.hero-main {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 0 40px;
  max-width: 1400px; margin: 0 auto; width: 100%;
}
.hero-eyebrow { margin-bottom: 32px; animation: fadeUp 0.8s var(--ease) both; }
h1.hero-title {
  font-family: 'Boska', serif;
  font-weight: 400;
  font-size: clamp(56px, 13vw, 184px);
  line-height: 0.85;
  letter-spacing: -0.035em;
  max-width: 1200px;
  margin-bottom: 48px;
  animation: fadeUp 1s var(--ease) 0.1s both;
  font-feature-settings: "ss01" on, "ss02" on;
}
h1.hero-title em {
  font-family: 'Tanker', sans-serif;
  font-style: normal;
  color: var(--sage-deep);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-size: 0.92em;
}
h1.hero-title .strike {
  position: relative;
  display: inline-block;
}
h1.hero-title .strike::after {
  content: '';
  position: absolute;
  top: 50%; left: -2%; right: -2%;
  height: 4px;
  background: var(--sage);
  transform: translateY(-50%) rotate(-2deg);
  border-radius: 4px;
}
.hero-sub {
  font-weight: 300;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.35;
  color: var(--ink); opacity: 0.75;
  max-width: 620px;
  margin-bottom: 56px;
  animation: fadeUp 1s var(--ease) 0.2s both;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 1s var(--ease) 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* marquee styles removed - replaced by photo-strip */
  to { transform: translateX(-50%); }
}

.stats {
  padding: 120px 32px;
  background: var(--paper);
}
.stats-inner { max-width: 1400px; margin: 0 auto; }
.stats-eyebrow { margin-bottom: 24px; }
.stats-title {
  font-family: 'Boska', serif;
  font-weight: 400;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  max-width: 960px;
  margin-bottom: 80px;
}
.stats-title em { font-style: italic; color: var(--sage-deep); font-weight: 400; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.stat {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
  transition: background 0.4s var(--ease);
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--cream-warm); }
.stat-num {
  font-family: 'Tanker', 'Boska', serif;
  font-size: clamp(96px, 13vw, 180px);
  line-height: 0.82;
  letter-spacing: -0.005em;
  color: var(--forest);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.stat-num .suf {
  font-size: 0.4em;
  color: var(--sage-deep);
  font-style: italic;
  font-family: 'Boska', serif;
  text-transform: none;
}
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
}

.services {
  padding: 140px 32px;
  background: var(--cream);
}
.services-inner { max-width: 1400px; margin: 0 auto; }
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  gap: 32px;
  flex-wrap: wrap;
}
.services-title {
  font-family: 'Boska', serif;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  max-width: 880px;
  margin-top: 16px;
}
.services-title em {
  font-family: 'Tanker', sans-serif;
  font-style: normal;
  color: var(--sage-deep);
  text-transform: uppercase;
}
.services-intro {
  max-width: 380px;
  font-size: 15px;
  color: var(--ink); opacity: 0.7;
  line-height: 1.6;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}
@media (max-width: 700px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  background: var(--cream);
  padding: 56px 36px;
  position: relative;
  transition: all 0.5s var(--ease);
  cursor: pointer;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.svc::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--forest);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
  z-index: 0;
}
.svc:hover::before { transform: translateY(0); }
.svc:hover .svc-num, .svc:hover .svc-name,
.svc:hover .svc-desc, .svc:hover .svc-list li,
.svc:hover .svc-arrow { color: var(--cream); }
.svc:hover .svc-list li { border-color: rgba(244,239,228,0.15); }
.svc > * { position: relative; z-index: 1; }
.svc.particuliers::before { background: var(--sage-deep); }
.svc.particuliers .svc-num { color: var(--sage); }
.svc.particuliers .svc-name em { color: var(--sage); }
.svc.particuliers:hover .svc-name em,
.svc.particuliers:hover .svc-num { color: var(--sage-light); }
.svc-tag {
  position: absolute;
  top: 36px; right: 36px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid currentColor;
  border-radius: 100px;
  color: var(--sage-deep);
  z-index: 2;
}
.svc.particuliers .svc-tag { color: var(--sage); }
.svc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sage-deep);
  transition: color 0.5s var(--ease);
}
.svc-name {
  font-family: 'Boska', serif;
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 32px 0 20px;
  color: var(--ink);
  transition: color 0.5s var(--ease);
}
.svc-name em {
  font-family: 'Tanker', sans-serif;
  font-style: normal; font-weight: 400;
  color: var(--sage-deep);
  text-transform: uppercase;
  font-size: 0.9em;
}
.svc-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink); opacity: 0.75;
  margin-bottom: 32px;
  transition: color 0.5s var(--ease);
}
.svc-list { list-style: none; margin-bottom: 32px; }
.svc-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink); opacity: 0.85;
  display: flex; align-items: center; gap: 10px;
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease);
}
.svc-list li::before {
  content: '+';
  color: var(--sage-deep);
  font-weight: 600;
}
.svc-arrow {
  display: inline-flex;
  align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  transition: all 0.4s var(--ease);
}
.svc:hover .svc-arrow { letter-spacing: 0.22em; }

.method { padding: 140px 32px; background: var(--paper); }
.method-inner { max-width: 1400px; margin: 0 auto; }
.method-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 900px) { .method-head { grid-template-columns: 1fr; } }
.method-title {
  font-family: 'Boska', serif;
  font-weight: 400;
  font-size: clamp(52px, 9vw, 128px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  margin-top: 16px;
}
.method-title em {
  font-family: 'Tanker', sans-serif;
  font-style: normal;
  color: var(--sage-deep);
  text-transform: uppercase;
}
.method-intro {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink); opacity: 0.75;
  max-width: 460px;
  padding-bottom: 16px;
}
.method-steps { position: relative; }
.method-steps::before {
  content: '';
  position: absolute;
  left: 100px; top: 0; bottom: 0;
  width: 1px;
  background: var(--line);
}
@media (max-width: 720px) { .method-steps::before { left: 32px; } }
.step {
  padding: 32px 0 32px 160px;
  position: relative;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}
.step:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 720px) {
  .step { padding-left: 80px; grid-template-columns: 1fr; }
}
.step-num {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  font-family: 'Tanker', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  color: var(--forest);
  line-height: 1;
}
.step-num em { font-style: normal; }
.step-marker {
  position: absolute;
  left: 100px; top: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  background: var(--paper);
  border: 2px solid var(--forest);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.4s var(--ease);
}
@media (max-width: 720px) { .step-marker { left: 32px; } }
.step:hover .step-marker {
  background: var(--sage);
  transform: translate(-50%, -50%) scale(1.5);
}
.step-content h3 {
  font-family: 'Boska', serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.step-content h3 em {
  font-family: 'Tanker', sans-serif;
  font-style: normal;
  color: var(--sage-deep);
  text-transform: uppercase;
}
.step-content p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink); opacity: 0.7;
  max-width: 580px;
}
.step-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-deep);
  white-space: nowrap;
}

.quote-section {
  padding: 160px 32px;
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.quote-bg-logo {
  position: absolute;
  width: 700px; height: 700px;
  right: -200px; bottom: -200px;
  opacity: 0.04;
  filter: brightness(0) invert(1);
  animation: spin 120s linear infinite;
  pointer-events: none;
}
.quote-inner { max-width: 1400px; margin: 0 auto; position: relative; }
.quote-eyebrow { color: var(--sage); margin-bottom: 40px; }
.quote-eyebrow::before { background: var(--sage); }
.quote-text {
  font-family: 'Boska', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 56px;
  max-width: 1100px;
}
.quote-text .accent { color: var(--sage); font-style: normal; }
.quote-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}
.quote-meta .divider {
  width: 48px; height: 1px;
  background: var(--sage);
}

.offer {
  padding: 100px 32px;
  background: var(--kraft);
  color: var(--forest-deep);
  position: relative;
  overflow: hidden;
}
.offer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .offer-inner { grid-template-columns: 1fr; } }
.offer-title {
  font-family: 'Boska', serif;
  font-weight: 400;
  font-size: clamp(52px, 9vw, 128px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.offer-title em {
  font-family: 'Tanker', sans-serif;
  font-style: normal;
  text-transform: uppercase;
}
.offer-title sup {
  font-size: 0.35em; vertical-align: super;
  color: var(--forest);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 600;
}
.offer-text {
  font-size: 17px;
  line-height: 1.5;
  max-width: 480px;
  opacity: 0.8;
}
.offer-card {
  background: var(--paper);
  padding: 40px 32px;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}
.offer-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 16px;
}
.offer-card-price {
  font-family: 'Tanker', sans-serif;
  font-size: 144px;
  line-height: 0.85;
  color: var(--forest);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.offer-card-price-sub {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 14px;
  color: var(--ink); opacity: 0.7;
  margin-bottom: 32px;
}
.offer-card ul { list-style: none; margin-bottom: 32px; }
.offer-card ul li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  display: flex; align-items: center; gap: 10px;
}
.offer-card ul li::before { content: '✓'; color: var(--sage); font-weight: 700; }
.offer-card ul li:last-child { border-bottom: 1px solid var(--line); }
.offer-cta {
  display: block;
  text-align: center;
  background: var(--forest);
  color: var(--cream);
  padding: 16px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s var(--ease);
}
.offer-cta:hover { background: var(--forest-deep); letter-spacing: 0.02em; }

.contact {
  padding: 140px 32px;
  background: var(--paper);
}
.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; gap: 48px; } }
.contact-title {
  font-family: 'Boska', serif;
  font-weight: 400;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin: 16px 0 32px;
}
.contact-title em {
  font-family: 'Tanker', sans-serif;
  font-style: normal;
  color: var(--sage-deep);
  text-transform: uppercase;
}
.contact-info { margin-top: 32px; }
.contact-info-block {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.contact-info-block:last-child { border-bottom: 1px solid var(--line); }
.contact-info-block .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 6px;
}
.contact-info-block .value {
  font-family: 'Boska', serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.contact-info-block .value a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.contact-info-block .value a:hover { color: var(--sage-deep); }


/* ===================================================
   PHOTO STRIP (remplace marquee sur home)
   =================================================== */
.photo-strip {
  background: var(--forest);
  padding: 32px 32px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--forest-deep);
  border-bottom: 1px solid var(--forest-deep);
}
.photo-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: 32px;
  align-items: center;
}
.photo-strip-text .eyebrow {
  color: var(--sage);
  margin-bottom: 12px;
}
.photo-strip-text .eyebrow::before { background: var(--sage); }
.photo-strip-text h3 {
  font-family: 'Boska', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.photo-strip-text h3 em {
  font-family: 'Tanker', sans-serif;
  font-style: normal;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.photo-strip-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
  transition: letter-spacing 0.3s var(--ease), gap 0.3s var(--ease);
}
.photo-strip-link:hover {
  letter-spacing: 0.22em;
  gap: 14px;
}
.photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.photo-strip-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
  filter: grayscale(0%) brightness(0.9);
}
.photo-strip-grid img:hover {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(1);
}
@media (max-width: 900px) {
  .photo-strip-inner { grid-template-columns: 1fr; }
  .photo-strip-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-strip-grid img { height: 120px; }
}
@media (max-width: 540px) {
  .photo-strip-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================================
   WHATSAPP FAB (bouton flottant)
   =================================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  z-index: 60;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55);
}
.whatsapp-fab svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}
.whatsapp-fab .wa-label {
  position: absolute;
  right: 72px;
  background: var(--ink);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 100px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.whatsapp-fab:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 860px) {
  .whatsapp-fab {
    bottom: 84px;
    right: 16px;
    width: 56px;
    height: 56px;
  }
  .whatsapp-fab svg { width: 28px; height: 28px; }
  .whatsapp-fab .wa-label { display: none; }
}

/* ===================================================
   FOOTER : Signature Brain to Strategy plus visible
   =================================================== */
.footer-signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(244,239,228,0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-signature .sign-label {
  opacity: 0.55;
  color: var(--cream);
}
.footer-signature a {
  color: var(--sage);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.22em;
  padding: 6px 14px;
  border: 1px solid rgba(150,190,160,0.30);
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-signature a:hover {
  background: var(--sage);
  color: var(--forest);
  border-color: var(--sage);
}

/* ===================================================
   GALLERY (page réalisations)
   =================================================== */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 48px 0;
}
@media (max-width: 720px) { .before-after { grid-template-columns: 1fr; } }
.ba-item { position: relative; overflow: hidden; border-radius: 4px; }
.ba-item img { width: 100%; height: 480px; object-fit: cover; display: block; }
.ba-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--forest);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.ba-tag.after { background: var(--sage); color: var(--forest-deep); }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 48px 0;
}
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 4 / 5;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,32,30,0.85));
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.gallery-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: var(--cream);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0.9;
}

/* ===================================================
   CALCULATEUR DE DEVIS
   =================================================== */
.calc-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
  margin: 48px 0;
}
@media (max-width: 900px) { .calc-wrap { grid-template-columns: 1fr; gap: 32px; } }

.calc-controls {
  background: var(--cream);
  padding: 40px 36px;
  border-radius: 4px;
}
.calc-block { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.calc-block:last-child { border-bottom: none; padding-bottom: 0; }
.calc-block label.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 16px;
}
.calc-value {
  font-family: 'Tanker', sans-serif;
  font-size: 32px;
  color: var(--forest);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  opacity: 1;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  outline: none;
  margin: 8px 0;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--forest);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(20,50,30,0.3);
}
.calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--forest);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
.calc-hint {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 8px;
}

.calc-radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.calc-radio {
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
  text-align: center;
}
.calc-radio.selected {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.calc-radio:hover:not(.selected) { border-color: var(--forest); }
.calc-radio .calc-radio-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 4px;
}
.calc-radio.selected .calc-radio-sub { opacity: 0.85; }

.calc-result {
  background: var(--forest);
  color: var(--cream);
  padding: 48px 36px;
  border-radius: 4px;
  position: sticky;
  top: 100px;
}
.calc-result-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.calc-result-price {
  font-family: 'Tanker', sans-serif;
  font-size: clamp(72px, 9vw, 112px);
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: -0.005em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.calc-result-price .currency { color: var(--sage); }
.calc-result-sub {
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 32px;
}
.calc-breakdown {
  margin: 32px 0;
  padding-top: 24px;
  border-top: 1px solid rgba(244,239,228,0.15);
}
.calc-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  opacity: 0.85;
}
.calc-row .calc-row-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.65;
}
.calc-cta {
  display: block;
  text-align: center;
  background: var(--sage);
  color: var(--forest-deep);
  padding: 18px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  margin-top: 24px;
  transition: all 0.3s var(--ease);
}
.calc-cta:hover {
  background: var(--cream);
  letter-spacing: 0.02em;
}
.calc-disclaimer {
  font-size: 11px;
  opacity: 0.55;
  margin-top: 16px;
  text-align: center;
  line-height: 1.5;
}

/* ===================================================
   MOBILE CALL : ajuste pour cohabiter avec WhatsApp
   =================================================== */
@media (max-width: 860px) {
  .mobile-call { right: 84px; }
}





/* Logo footer : version couleur originale dans un cercle blanc — bien visible sur fond vert */
.footer-logo-badge {
  width: 84px;
  height: 84px;
  background: #FAF6EC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.footer-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
